- Add 9 agent skills (cc-agent-*) - Add 10 command skills (cc-cmd-*) - Add 8 skill files (cc-skill-*) - Add 8 rule skills (cc-rule-*) - Update README.md skill count from 225 to 260 - Add new skills to Full Skill Registry - Add credit to affaan-m in Credits section - Regenerate skills_index.json Source: https://github.com/affaan-m/everything-claude-code Author attribution: affaan-m, version 1.0
25 lines
801 B
Markdown
25 lines
801 B
Markdown
---
|
|
name: cc-cmd-update-codemaps
|
|
description: Update Codemaps
|
|
author: affaan-m
|
|
version: "1.0"
|
|
---
|
|
|
|
# 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.
|