ソース情報
- リポジトリ
- tomevault-io/tomes
- ソースの最終更新活動
- 2026年7月23日 21:48
- 検出された SKILL.md の言語
- 英語
- スター
- 1
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/tomevault-io/tomes --skill graphmindコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
> Use when this capability is needed.
Use when writing kernel, account, or note MASM code that reads from or writes to the advice provider (advice stack / advice map) — validate advice data.
Use when writing a Rust test that exercises a failure path or a MASM test that expects a `panic` / `assert` — assert on the specific expected error variant or error code.
SOC 職業分類に基づく
SKILL.md を表示中
| name | graphmind |
| description | > Use when this capability is needed. |
Before using Grep, find, rg, ag, or reading files to understand code: You MUST query graphmind first. Only fall back to grep/find if graphmind cannot answer (e.g., string literals, config values, non-code patterns).
| Need | Command | MCP tool |
|---|---|---|
| Find a symbol | graphmind fn <symbol> | gm_fn |
| Search by intent | graphmind search "<query>" | gm_search |
| File dependencies | graphmind deps <file> | gm_deps |
| Who calls X | graphmind query <symbol> | gm_query |
| Blast radius | graphmind fn-impact <symbol> | gm_fn_impact |
| Git change impact | graphmind diff-impact | gm_diff_impact |
| Project overview | graphmind map | gm_map |
| File outline | graphmind outline <file> | gm_outline |
| Raw file content | graphmind file <file> | gm_file |
| Who calls chain | — | gm_who_calls_chain |
| Dead code | — | gm_dead_code |
| Cross-project | graphmind cross query <symbol> | gm_cross_query |
| Memory search | graphmind memory search "<query>" | gm_memory_search |
Check: graphmind status
Register if not: graphmind register .
Query before touching any code:
graphmind fn <symbol> or MCP gm_fngraphmind deps <file> or MCP gm_depsgraphmind fn-impact <symbol> --no-testsgraphmind diff-impactgraphmind mapgraphmind outline <file> or MCP gm_outlinegm_who_calls_chainQuery for context, decisions, conventions:
graphmind memory search "<query>" or MCP gm_memory_searchAUTO-RECALL: The hook automatically searches memory on each prompt. Use gm_memory_search for deeper/targeted recall.
AUTO-SAVE: When the conversation reveals any of the following, immediately save via gm_memory_add:
Save rules:
project=<slug> for project-specific factsglobal=true for user preferences, team conventions, cross-project knowledgeRead source files only when editing or when the graph doesn't have the answer.
When a symbol or pattern might exist in another project:
graphmind cross query <symbol> or MCP gm_cross_query
Start of session: run graphmind session start → loads graph summary + recent memory
End of session: run graphmind session save → saves decisions and progress to memory
git merge with structural changesgraphmind build (fast, SHA256-cached)~/.graphmind/Source: aouicher/graphmind — distributed by TomeVault.