understand-codebase
Codebase'i derinlemesine anla. Onboarding, architecture discovery, dependency mapping.
npx skills add vibeeval/vibecosystem --skill understand-codebase --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Understand Codebase ## Onboarding Workflow (Yeni Developer) ### Hizli Baslangic (5 Dakika) ``` 1. Tech stack tespit: ls package.json go.mod pyproject.toml tsconfig.json Cargo.toml manage.py 2. Proje yapisi: tldr tree . --depth 2 3. Entry point'leri bul: tldr structure . --lang <detected-lang> 4. README/docs oku: cat README.md CONTRIBUTING.md docs/ 5. CI/CD kontrol: ls .github/workflows/ .gitlab-ci.yml Jenkinsfile Dockerfile ``` ### Detayli Kesif (30 Dakika) ``` 1. Architecture overview: tldr arch src/ 2. Import/dependency graph: tldr calls src/ 3. Test yapisi: tldr tree . --ext .test.ts,.spec.ts,.test.py,_test.go 4. Config dosyalari: ls *.config.* .env.example docker-compose.yml 5. Data modelleri: Grep "interface|type|class|struct|model" --type ts/py/go ``` ## Codebase Overview Olusturma ### Otomatik Overview ```bash # 1. Dosya dagilimi tldr tree . | wc -l # toplam dosya tldr tree . --ext .ts,.tsx # TypeScript dosyalari tldr tree . --ext .test.ts # Test dosyalari # 2. Kod yapisi tldr structure src/ --lang typescript # Fonksiyonlar, class'lar, export'lar # 3. Mimari katmanlar tldr arch src/ # Entry (controller/handler) > Middle (service) > Leaf (util) # 4. Dead code tldr dead src/
- Onboarding Workflow (Yeni Developer)
- Hizli Baslangic (5 Dakika)
- Detayli Kesif (30 Dakika)
- Codebase Overview Olusturma
- Otomatik Overview
- Overview Template
- Architecture Dokumentasyonu
- Katman Tespiti
- Mimari Patern Tespiti
- Architectural Decision Records (ADR)
- Key File Identification
- Otomatik Tespit
- Kritik Dosya Kategorileri
- Dependency Mapping
tldr tree . | wc -l # toplam dosya tldr tree . --ext .ts,.tsx # TypeScript dosyalari tldr tree . --ext .test.ts # Test dosyalari tldr structure src/ --lang typescript tldr arch src/ Entry (controller/handler) > Middle (service) > Leaf (util) tldr dead src/ --entry main,test_ tldr arch ile otomatik tespit Manuel tespit: import yonlerini takip et tldr calls src/ --depth 3
What does the understand-codebase skill do?
Codebase'i derinlemesine anla. Onboarding, architecture discovery, dependency mapping.
How do I install it?
Run `npx skills add vibeeval/vibecosystem --skill understand-codebase --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From vibeeval/vibecosystem, a repository with 521 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
