memory-first · git:20260922.8fd811c · 2026-09-22 · sha256 aab5cfe38163b036
memory-first git:20260922.8fd811cA
Immutable. This exact content is served forever at /api/v1/blob/aab5cfe38163b036.
--- name: memory-first description: "Lookup chain enforced before any file read or search: project memory, code graph, grep/glob, Explore sub-agent, targeted read — stop at the first step that answers" type: skill --- # Memory-First Protocol Follow this lookup chain in strict order before reading any file, running any search, or spawning any tool. Stop at the first step that answers the question. ## Chain ### 1. Project Memory Check `.claude/memory/project.md`. Use the Grep tool to check project.md first: ``` Grep pattern="<keyword>" path=".claude/memory/project.md" ``` If Grep returns matches, use that information and stop. If no matches, proceed to step 2. ### 2. Graphify Graph For structural or relational questions, query the code graph. **Use when asking:** - "What calls function X?" - "What does module Y depend on?" - "Where is interface Z implemented?" - "What is the path between component A and B?" ```bash graphify query "<your question>" ``` Skip this step if `graphify` is not installed or the command returns no results. Proceed to step 3. **Do not use for:** literal string patterns, variable names, import statements. ### 3. Grep / Glob For pattern searches, use the `Grep` or `Glob` tools inline. Never read a full file to find a pattern. ### 4. Targeted Read Last resort. Only when steps 1–3 cannot answer. - Always specify `offset` and `limit`. - Max 150 lines per call. - Know approximately which lines to read before calling. The `pre-tool-use` hook blocks `Read` calls on files >150 lines with no explicit `limit`. If blocked, return to step 1.