|
|
1 月之前 | |
|---|---|---|
| .. | ||
| scripts | 3 月之前 | |
| README.md | 3 月之前 | |
| SKILL.md | 1 月之前 | |
| codemap.md | 3 月之前 | |
Repository understanding and hierarchical codemap generation.
Codemap helps orchestrators map and understand codebases by:
.slim/codemap.json for change trackingcodemap.md templates for fixers to fill inLegacy .slim/cartography.json state is migrated to .slim/codemap.json automatically.
# Initialize mapping
node codemap.mjs init --root /repo --include "src/**/*.ts" --exclude "node_modules/**"
# Check what changed
node codemap.mjs changes --root /repo
# Update hashes
node codemap.mjs update --root /repo
{
"metadata": {
"version": "1.0.0",
"last_run": "2026-01-25T19:00:00Z",
"include_patterns": ["src/**/*.ts"],
"exclude_patterns": ["node_modules/**"]
},
"file_hashes": {
"src/index.ts": "abc123..."
},
"folder_hashes": {
"src": "def456..."
}
}
Empty templates created in each folder for fixers to fill with:
Installed automatically via oh-my-opencode-slim installer when custom skills are enabled.