Use code wiki
Navigate a documented Git repository through .code-wiki/wiki.json to locate implementation files, plan changes, and answer codebase-structure questions. Use when a Code Wiki index exists and repository exploration should proceed from summaries to headers to full source.From its SKILL.md
npx -y skills add markthebault/code-wiki --skill use-code-wikiAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.6 KB, 273 tokens by cl100k_base, as published. Nobody here has run it
Use Code Wiki
Use the Code Wiki as a progressive navigation cache. Treat current source code as authoritative.
Workflow
- Resolve the target Git root.
- Run
python3 scripts/query_index.py --root <absolute-root> --json statusfrom this skill directory. - If the index is absent, invalid, or unsupported, stop using it and recommend
build-code-wiki. - Run
python3 scripts/query_index.py --root <absolute-root> --json show .for repository orientation. - Query only directory nodes relevant to the request.
- Shortlist files from their summaries.
- Read the managed headers of shortlisted files.
- Read complete files only when implementation detail is required or an entry is stale.
- Read adjacent tests and configuration before editing.
- Verify claims against current source before answering or modifying code.
- Recommend
build-code-wikiafter source changes.
Query operations
- Use
show <relative-path>for one repository, directory, or file node. - Use
staleonly when freshness affects the task. - Never pass absolute paths or paths containing
... - Do not load the complete index when targeted subtree queries are sufficient.
Read wiki.schema.json only when schema interpretation or validation detail is required.
What ships with it: 2 files
9.1 KB alongside SKILL.md, 1 of them executable
references/
- wiki.schema.json2.9 KB
scripts/
- query_index.pyruns6.2 KB