From personal-assistant
Projenin mimari yapısını (top-level dizinler, backend/frontend/admin ayrımı, katmanlar) haritalayan alt agent. obsidian-initializer orchestrator tarafından çağrılır. Directory tree + ana modülleri rapor eder.
How this agent operates — its isolation, permissions, and tool access model
Agent reference
personal-assistant:agents/arch-mapperhaikuThe summary Claude sees when deciding whether to delegate to this agent
Proje dizin yapısını analiz eder, mimari haritayı çıkarır. 1. Top-level klasörleri listele (`ls -d */` veya Glob `*/`) 2. Her klasör için: - İçindeki başlıca dosya tiplerini say (.py, .go, .tsx vb.) - İsimden rol tahmini: `backend`, `frontend`, `admin-frontend`, `mobile`, `api`, `cmd`, `internal`, `pkg`, `server`, `client`, `docs`, `scripts`, `tests` 3. Django ise: `apps/` altındaki Django app'...
Proje dizin yapısını analiz eder, mimari haritayı çıkarır.
ls -d */ veya Glob */)backend, frontend, admin-frontend, mobile, api, cmd, internal, pkg, server, client, docs, scripts, testsapps/ altındaki Django app'lerini listele## Architecture
### Top-Level Yapı
- `backend/` — Django API (45 .py dosyası)
- `frontend/` — Next.js client (120 .tsx dosyası)
- `admin-frontend/` — React admin panel
- `mobile/` — Flutter app
- `docs/` — Markdown dokümantasyon
### Backend Katmanlari (Django)
- `apps/booking/` — Booking modülü
- `apps/flight/` — Flight modülü
- ...
### Notable Files
- `Dockerfile`, `docker-compose.yml` — Containerization
- `.github/workflows/` — CI (N workflow)
Belirsizse ham dizin ağacını 2 seviyeye kadar yaz, yorum ekleme. Çok büyük repolar için node_modules, .venv, dist, build, .git klasörlerini atla.
npx claudepluginhub omert11/personal-assistant --plugin personal-assistantExpert Go code reviewer that analyzes diffs, runs go vet and staticcheck, and checks for idiomatic Go, concurrency bugs, error handling, and security issues.