Help us improve
Share bugs, ideas, or general feedback.
Scans project structure and generates token-optimized architecture codemaps documenting backend routes, frontend hierarchy, data models, and dependencies with diff detection.
npx claudepluginhub marshall0524/everythingclaudecodeHow this command is triggered — by the user, by Claude, or both
Slash command
/everything-claude-code:update-codemapsThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Update Codemaps Analyze the codebase structure and generate token-lean architecture documentation. ## Step 1: Scan Project Structure 1. Identify the project type (monorepo, single app, library, microservice) 2. Find all source directories (src/, lib/, app/, packages/) 3. Map entry points (main.ts, index.ts, app.py, main.go, etc.) ## Step 2: Generate Codemaps Create or update codemaps in `docs/CODEMAPS/` (or `.reports/codemaps/`): | File | Contents | |------|----------| | `architecture.md` | High-level system diagram, service boundaries, data flow | | `backend.md` | API routes, middl...
/update-codemapsScans project structure and generates token-optimized architecture codemaps documenting backend routes, frontend hierarchy, data models, and dependencies with diff detection.
/update-codemapsScans project structure and generates token-efficient architecture codemaps for system overview, backend, frontend, data, and dependencies. Includes diff detection and change summaries.
/codemapScans project structure, detects tech stack and modules, generates token-optimized architecture docs in docs/CODEMAPS/ with overview.md, frontend/backend.md, and _meta.json. Supports --scope frontend|backend|all and --update for incremental updates.
/update-codemapsAnalyzes codebase structure via imports/exports/dependencies, generates codemaps for architecture/backend/frontend/data, computes diffs from prior versions, updates with approval if >30% changed, and saves diff report.
/update-codemapScans codebase structure, identifies key modules, data flows, and patterns, then updates CLAUDE.md or CODEMAP.md with concise Markdown project codemap including build/test commands.
/generate-mapAnalyzes codebase to generate .claude/project-map.md with tech stack, project structure, API surface, DB schema, frontend architecture, infrastructure, testing, workflow, and features.
Share bugs, ideas, or general feedback.
Analyze the codebase structure and generate token-lean architecture documentation.
Create or update codemaps in docs/CODEMAPS/ (or .reports/codemaps/):
| File | Contents |
|---|---|
architecture.md | High-level system diagram, service boundaries, data flow |
backend.md | API routes, middleware chain, service → repository mapping |
frontend.md | Page tree, component hierarchy, state management flow |
data.md | Database tables, relationships, migration history |
dependencies.md | External services, third-party integrations, shared libraries |
Each codemap should be token-lean — optimized for AI context consumption:
# Backend Architecture
## Routes
POST /api/users → UserController.create → UserService.create → UserRepo.insert
GET /api/users/:id → UserController.get → UserService.findById → UserRepo.findById
## Key Files
src/services/user.ts (business logic, 120 lines)
src/repos/user.ts (database access, 80 lines)
## Dependencies
- PostgreSQL (primary data store)
- Redis (session cache, rate limiting)
- Stripe (payment processing)
Add a freshness header to each codemap:
<!-- Generated: 2026-02-11 | Files scanned: 142 | Token estimate: ~800 -->
Write a summary to .reports/codemap-diff.txt: