スキル一覧に戻る
julwrites

code-index

by julwrites

Bootstrapping repository for Vibe Coding

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

SKILL.md


name: code-index description: Index and query the code structure and symbols. Use this to find where symbols are defined and referenced.

Code Index Skill

This skill allows you to explore the codebase structure and symbols without relying on external tools or heavy indexing. It maintains a lightweight index of files, classes, functions, and global variables.

Commands

Initialize

Set up the code index by defining source roots. Command: python3 scripts/code_index.py init (Interactive)

Refresh Index

Re-scan the source roots and update the index. Command: python3 scripts/code_index.py index Run this after significant code changes.

List Files

View the file structure and symbol counts. Command: python3 scripts/code_index.py list [--format json]

Statistics

View codebase statistics (files, symbols, test coverage ratio). Command: python3 scripts/code_index.py stats [--format json]

Search Symbols

Fuzzy search for symbols (classes, functions, etc.). Command: python3 scripts/code_index.py search <query> [--format json]

Lookup

Get exact definition location of a symbol or list symbols in a file. Command: python3 scripts/code_index.py lookup <symbol_or_filepath> [--format json]

Find References

Find text references to a symbol across the codebase. Command: python3 scripts/code_index.py references <symbol> [--format json]

Workflow

  1. Exploration: Use list to see the structure.
  2. Navigation: Use search to find a known symbol.
  3. Understanding: Use lookup to see where it's defined.
  4. Impact: Use references to see where it's used.

スコア

総合スコア

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

レビュー

💬

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