ワンクリックで
codegraph-skill
Use when a coding agent needs symbol relationships, callers, callees, or change impact. Guides Codegraph CLI usage (not MCP).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when a coding agent needs symbol relationships, callers, callees, or change impact. Guides Codegraph CLI usage (not MCP).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when a coding agent needs project knowledge from MindMesh .mind-mesh/ assets. Guides layered reading of context, private knowledge, and repomix index.
Use when an agent needs source code from the local repomix index under .mind-mesh/agent/repomix.md (not committed; regenerate via MindMesh scan).
Use when running shell commands that produce verbose output (git, test, build, lint, package managers, docker). Prefix with rtk to save 60-90% tokens. MindMesh projects use explicit rtk prefix (no global hook).
Pack a local or remote codebase with repomix-rs and analyze the generated output. Invoke for high-level exploration, structure summaries, or pattern discovery when targeted edits are not needed.
| name | codegraph-skill |
| description | Use when a coding agent needs symbol relationships, callers, callees, or change impact. Guides Codegraph CLI usage (not MCP). |
| version | 1.1.0 |
Codegraph provides a pre-indexed AST code graph for this project.
MindMesh uses CLI only — do not run codegraph install (that configures MCP/agent rules separately).
bunx codegraph status # must succeed
If not initialized:
bun add -d @colbymchenry/codegraph
bunx codegraph init -i
Index lives in .codegraph/ (regenerate with bunx codegraph sync after edits).
Always run via bunx codegraph … (or codegraph on PATH):
| Intent | Command |
|---|---|
| Find symbol by name | bunx codegraph query <name> |
| Who calls X | bunx codegraph callers <symbol> |
| What X calls | bunx codegraph callees <symbol> |
| Change blast radius | bunx codegraph impact <symbol> |
| Tests affected by file changes | bunx codegraph affected <files…> |
| Project file tree | bunx codegraph files |
| Index health | bunx codegraph status |
| Refresh after edits | bunx codegraph sync |
.mind-mesh/agent/context.md (mind-mesh-knowledge-skill)bunx codegraph query <SymbolName> to locate definitioncallers / callees / impact for relationship questionsrepomix-context-skill for full source text of a specific filertk-skill for any follow-up shell commands (tests, git)| Use Codegraph | Use instead |
|---|---|
| Symbol lookup, call chains | Architecture → context.md |
| Impact before refactor | Business rules → knowledge/ |
| File/symbol graph | Raw source slice → repomix |
| Verbose test/git output | rtk cargo test, rtk git diff |
codegraph install (MindMesh manages AGENTS.md)grep the whole repo to re-verify Codegraph AST resultsquery + manual file reads when impact answers the questionIf codegraph status shows pending files after your edits:
bunx codegraph sync