スキル一覧に戻る
julwrites

index

by julwrites

Bootstrapping repository for Vibe Coding

0🍴 0📅 2026年1月21日
GitHubで見るManusで実行

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) that doc_path describes.
  • --depends: Comma-separated list of other documents that doc_path depends 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

  1. Before Coding: Run ./scripts/index impact src/target_file.py to see what docs need attention.
  2. 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.
  3. Validation: Run ./scripts/index check to ensure the index is healthy.

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です