mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-02-18 12:13:09 +08:00
- Sync 13 agent files with updated descriptions and configurations - Sync 23 command files with latest YAML frontmatter and content - Sync 7 skill SKILL.md files with proper YAML frontmatter quoting - Copy missing cpp-testing and security-scan skills to .cursor/ - Fix integration tests: send matching input to blocking hook test and expect correct exit code 2 (was 1)
18 lines
702 B
Markdown
18 lines
702 B
Markdown
# Update Codemaps
|
|
|
|
Analyze the codebase structure and update architecture documentation:
|
|
|
|
1. Scan all source files for imports, exports, and dependencies
|
|
2. Generate token-lean codemaps in the following format:
|
|
- codemaps/architecture.md - Overall architecture
|
|
- codemaps/backend.md - Backend structure
|
|
- codemaps/frontend.md - Frontend structure
|
|
- codemaps/data.md - Data models and schemas
|
|
|
|
3. Calculate diff percentage from previous version
|
|
4. If changes > 30%, request user approval before updating
|
|
5. Add freshness timestamp to each codemap
|
|
6. Save reports to .reports/codemap-diff.txt
|
|
|
|
Use TypeScript/Node.js for analysis. Focus on high-level structure, not implementation details.
|