
index
by julwrites
Bootstrapping repository for Vibe Coding
SKILL.md
name: index description: Manage and query the documentation dependency index. Use this to identify which documents need to be updated when code changes.
Documentation Index Skill
This skill allows you to track relationships between code and documentation, enabling "Impact Analysis". Before making changes to code, you should check which documents describe that code. After making changes, you should update the relevant documents and the index itself.
Commands
Check Impact
Find out which documents are affected by a change to a specific file.
Command: ./scripts/index impact <filepath> [--format json]
Use this before editing any code.
List Index
View all indexed relationships.
Command: ./scripts/index list [--format json]
Add/Update Entry
Register a relationship between a document and code files, or between documents.
Command: ./scripts/index add <doc_path> [--related "src/file1.py,src/file2.py"] [--depends "docs/other.md"] [--force]
doc_path: The documentation file (e.g.,docs/architecture/auth.md).--related: Comma-separated list of files (code or other) thatdoc_pathdescribes.--depends: Comma-separated list of other documents thatdoc_pathdepends on.
Remove Entry
Remove a document from the index or specific items from it.
Command: ./scripts/index remove <doc_path> [--item "src/file1.py"] [--section related|depends_on]
Check Integrity
Verify that all paths in the index actually exist.
Command: ./scripts/index check [--format json]
Visualize
Generate a Mermaid graph of the documentation topology.
Command: ./scripts/index graph
Workflow
- Before Coding: Run
./scripts/index impact src/target_file.pyto see what docs need attention. - After Coding:
- Update the identified docs.
- If you created new files, add them to the index using
./scripts/index add. - If you deprecated files, remove them using
./scripts/index remove.
- Validation: Run
./scripts/index checkto ensure the index is healthy.
スコア
総合スコア
リポジトリの品質指標に基づく評価
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
レビュー
レビュー機能は近日公開予定です