Explore a repo with parallel subagents to understand its structure
Explores repositories with parallel subagents to generate visual architecture diagrams and tech stack summaries.
/plugin marketplace add CaptainCrouton89/crouton-kit/plugin install learn@crouton-kit<repo URL or path>Spin up several explorer subagents to investigate this repo and understand it:
$ARGUMENTS
Summarize with box diagrams showing key components and code:
┌─────────────────────────────────────┐
│ Entry Point (src/index.ts) │
│ │
│ const app = express(); │
│ app.use(authMiddleware); │
│ app.use('/api', apiRouter); │
│ app.listen(3000); │
└──────────────────┬──────────────────┘
│
┌─────────┴─────────┐
│ │
▼ ▼
┌─────────────────┐ ┌─────────────────┐
│ Auth Middleware │ │ API Router │
│ (src/auth.ts) │ │ (src/api.ts) │
│ │ │ │
│ verifyToken() │ │ /users │
│ attachUser() │ │ /posts │
└─────────────────┘ └─────────────────┘
Architecture diagram with boxes, arrows, and key code
Tech stack table:
| Layer | Technology |
|---|---|
| API | Express |
| DB | Prisma + Postgres |
Key patterns observed (state machines, event bus, etc.)
Entry points with file:line references