
code-index
by julwrites
Bootstrapping repository for Vibe Coding
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
- Exploration: Use
listto see the structure. - Navigation: Use
searchto find a known symbol. - Understanding: Use
lookupto see where it's defined. - Impact: Use
referencesto see where it's used.
スコア
総合スコア
リポジトリの品質指標に基づく評価
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
レビュー
レビュー機能は近日公開予定です