Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/tomes --skill graphmind명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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.