Memory Retrieve
Purpose / When to Activate
Activate before context-building whenever a task requires historical context.
Never load full memory. Always filter by relevance.
Never substitute summaries for durable memory (decisions, patterns, project).
3-Level Progressive Disclosure
Level 1 — INDEX SCAN (~5 tokens/entry)
Read index.md → Decision Registry table (DEC | Domain | Level | Title)
Agent identifies relevant decision(s) by domain and/or level
Level 2 — INDIVIDUAL ADR FILES (~300 tokens/file)
Load specific decisions/DEC-{ID}.md files for full entry text
Load other relevant category files (patterns, project, ops)
Optionally traverse `related_to` in loaded files to discover adjacent decisions
Or invoke `memory-search` Mode C for systematic cross-reference discovery
Level 3 — CROSS-DOMAIN SCAN (only for Decision Consistency Gate)
Grep frontmatter across all DEC-*.md files for conflicts
Only triggered when recording a new decision (see Decision Consistency Gate in decision-extraction skill)
Process
Read memory index (contexts/memory/index.md). This contains:
- Shared categories table (paths + purpose)
- Decision Registry: one row per DEC-ID with domain, level, and title
If
index.md is absent or empty, fall back to scanning contexts/memory/ directory structure.
Identify relevant decisions for the current task:
- Filter the Decision Registry by domain (e.g.,
billing, matching)
- Filter by level if scope is known (e.g., only
architectural for implementation tasks)
- From story/epic tags or explicit instruction scope
Load memory by durability class:
Durable memory (decisions, patterns, project, ops, contacts, domains):
→ Load individual decisions/DEC-{ID}.md files directly. Full text, never summaries.
→ Summaries exist as INDEX-ONLY aids — they list entries for scanning but MUST NOT substitute for the full decision text.
→ Load only the specific decisions relevant to the task (typically 3-10 files).
Ephemeral memory (sessions):
→ Prefer summaries if available (lower token cost).
For Decision Consistency Gate:
→ Scan the Decision Registry in index.md for ALL entries in the relevant domain
→ Load the specific DEC-{ID}.md files to check for conflicts
→ If uncertain about boundaries, also load decisions from adjacent domains
Freshness Check (Tier 2 files only)
Pre-condition: verify that git is available on the PATH (git --version). If git is unavailable, append the following note to the freshness_warnings section and skip the remainder of this step — proceed to Step 6 normally:
Freshness check skipped: git not available
For each file in the memory_context_bundle:
a. If the file's frontmatter has no refresh_tier field, or refresh_tier ≠ 2 → skip (Tier 1 files are proactively refreshed via the post-delivery hook; Tier 3-4 are not checked at read time).
b. If depends_on is absent or depends_on.code_paths is empty → skip (treat as Tier 4 — no check, no warning).
c. If updated_at is absent or unparseable → append to freshness_warnings:
Freshness check skipped: no valid updated_at — {file_path}
Then skip this file.
d. For each path in depends_on.code_paths:
- If the path does not exist on disk, append to
freshness_warnings:
Freshness check skipped: {path} not found — depends_on may be stale
Then skip this path.
- Run:
git log --oneline --since="{updated_at}" -- "{path}" (where {updated_at} is the file's frontmatter value, quoted exactly as-is).
- Count the lines returned. If the count > 0, the file is
POTENTIALLY_STALE for this path.
e. If any path produced a non-zero commit count for this file, append one freshness_warnings entry per changed path in the format below (AC2):
⚠ FRESHNESS WARNING — {file_path}
refresh_tier: 2
updated_at: {date}
changed_dependency: {code_path} ({N} commits since updated_at)
action: verify content is still accurate before relying on it
If no warnings are produced, the freshness_warnings section is omitted from the output (0 tokens).
Return memory_context_bundle — curated, minimal set of memory files relevant to the current task, plus any freshness_warnings produced in Step 5.
Output
memory_context_bundle — curated set of memory files relevant to the current task, ready for context-building.
Quality Checks
- No full memory injection
- Context is focused on the task
- Agent loads only the specific DEC-{ID}.md files relevant to the task (typically 3-10)
- Summaries are NEVER substituted for durable memory (decisions, patterns, project)
- Decision Registry enables decision identification WITHOUT opening individual files
- Token budget: index (
1,500) + 3-10 individual decision files (300 each) = ~4,500 tokens typical; freshness_warnings section adds ~100-200 tokens when Tier 2 staleness is detected, 0 tokens when all files are clean
- Only memory directly relevant to the task is included
- Freshness warnings are emitted for Tier 2 files with changed code dependencies — never silently suppressed.
Non-Goals
This skill must NOT:
- Load all memory files
- Decide what to do with retrieved memory
- Modify memory files
- Substitute summary one-liners for full decision text
Selective retrieval via progressive disclosure. Memory is never auto-loaded. Durable memory is never summarized away.
1---2name: memory-retrieve3description: Load only the minimum relevant memory for a task using 3-level progressive disclosure. Activate before context-building — never load full memory dumps. Never substitute summaries for durable memory.4license: ELv25---67# Memory Retrieve89## Purpose / When to Activate1011Activate before `context-building` whenever a task requires historical context.1213**Never load full memory. Always filter by relevance.**14**Never substitute summaries for durable memory (decisions, patterns, project).**1516---1718## 3-Level Progressive Disclosure1920```21Level 1 — INDEX SCAN (~5 tokens/entry)22 Read index.md → Decision Registry table (DEC | Domain | Level | Title)23 Agent identifies relevant decision(s) by domain and/or level2425Level 2 — INDIVIDUAL ADR FILES (~300 tokens/file)26 Load specific decisions/DEC-{ID}.md files for full entry text27 Load other relevant category files (patterns, project, ops)28 Optionally traverse `related_to` in loaded files to discover adjacent decisions29 Or invoke `memory-search` Mode C for systematic cross-reference discovery3031Level 3 — CROSS-DOMAIN SCAN (only for Decision Consistency Gate)32 Grep frontmatter across all DEC-*.md files for conflicts33 Only triggered when recording a new decision (see Decision Consistency Gate in decision-extraction skill)34```3536---3738## Process39401. **Read memory index** (`contexts/memory/index.md`). This contains:41 - Shared categories table (paths + purpose)42 - Decision Registry: one row per DEC-ID with domain, level, and title43 If `index.md` is absent or empty, fall back to scanning `contexts/memory/` directory structure.44452. **Identify relevant decisions** for the current task:46 - Filter the Decision Registry by **domain** (e.g., `billing`, `matching`)47 - Filter by **level** if scope is known (e.g., only `architectural` for implementation tasks)48 - From story/epic tags or explicit instruction scope49503. **Load memory by durability class:**5152 **Durable memory** (decisions, patterns, project, ops, contacts, domains):53 → Load individual `decisions/DEC-{ID}.md` files directly. Full text, never summaries.54 → Summaries exist as INDEX-ONLY aids — they list entries for scanning but MUST NOT substitute for the full decision text.55 → Load only the specific decisions relevant to the task (typically 3-10 files).5657 **Ephemeral memory** (sessions):58 → Prefer summaries if available (lower token cost).59604. **For Decision Consistency Gate:**61 → Scan the Decision Registry in index.md for ALL entries in the relevant domain62 → Load the specific `DEC-{ID}.md` files to check for conflicts63 → If uncertain about boundaries, also load decisions from adjacent domains64655. **Freshness Check (Tier 2 files only)**6667 Pre-condition: verify that `git` is available on the PATH (`git --version`). If `git` is unavailable, append the following note to the `freshness_warnings` section and skip the remainder of this step — proceed to Step 6 normally:68 > Freshness check skipped: git not available6970 For each file in the `memory_context_bundle`:7172 a. If the file's frontmatter has no `refresh_tier` field, or `refresh_tier` ≠ 2 → **skip** (Tier 1 files are proactively refreshed via the post-delivery hook; Tier 3-4 are not checked at read time).7374 b. If `depends_on` is absent or `depends_on.code_paths` is empty → **skip** (treat as Tier 4 — no check, no warning).7576 c. If `updated_at` is absent or unparseable → append to `freshness_warnings`:77 > Freshness check skipped: no valid updated_at — {file_path}78 Then **skip** this file.7980 d. For each path in `depends_on.code_paths`:81 - If the path does not exist on disk, append to `freshness_warnings`:82 > Freshness check skipped: {path} not found — depends_on may be stale83 Then skip this path.84 - Run: `git log --oneline --since="{updated_at}" -- "{path}"` (where `{updated_at}` is the file's frontmatter value, quoted exactly as-is).85 - Count the lines returned. If the count > 0, the file is `POTENTIALLY_STALE` for this path.8687 e. If any path produced a non-zero commit count for this file, append one `freshness_warnings` entry per changed path in the format below (AC2):8889 ```90 ⚠ FRESHNESS WARNING — {file_path}91 refresh_tier: 292 updated_at: {date}93 changed_dependency: {code_path} ({N} commits since updated_at)94 action: verify content is still accurate before relying on it95 ```9697 If no warnings are produced, the `freshness_warnings` section is omitted from the output (0 tokens).98996. **Return `memory_context_bundle`** — curated, minimal set of memory files relevant to the current task, plus any `freshness_warnings` produced in Step 5.100101---102103## Output104105**`memory_context_bundle`** — curated set of memory files relevant to the current task, ready for `context-building`.106107---108109## Quality Checks110111- No full memory injection112- Context is focused on the task113- Agent loads only the specific DEC-{ID}.md files relevant to the task (typically 3-10)114- **Summaries are NEVER substituted for durable memory** (decisions, patterns, project)115- Decision Registry enables decision identification WITHOUT opening individual files116- Token budget: index (~1,500) + 3-10 individual decision files (~300 each) = ~4,500 tokens typical; `freshness_warnings` section adds ~100-200 tokens when Tier 2 staleness is detected, 0 tokens when all files are clean117- Only memory directly relevant to the task is included118- Freshness warnings are emitted for Tier 2 files with changed code dependencies — never silently suppressed.119120---121122## Non-Goals123124This skill must NOT:125- Load all memory files126- Decide what to do with retrieved memory127- Modify memory files128- Substitute summary one-liners for full decision text129130**Selective retrieval via progressive disclosure. Memory is never auto-loaded. Durable memory is never summarized away.**