Memory Ingest
Purpose / When to Activate
Activate after:
- Bootstrap scan produces architecture insights
- Discovery produces validated artefacts or decisions
- New validated project knowledge needs to be persisted
Only ingest validated knowledge — never raw session output.
Process
CRITICAL — Anti-Collision Guard (MUST execute before writing any memory file):
Before writing any file under contexts/memory/**, check if the target file already exists on disk:
- If it does NOT exist → proceed normally.
- If it DOES exist → read the existing file first. Then decide:
- If the existing content covers a different topic or entity than what you are about to write → STOP immediately, surface the collision to the human, do not proceed.
- If the existing content covers the same topic and an update is warranted → proceed, but preserve any human edits or prior knowledge that remains valid. Treat this as an update, not a replacement.
- If the existing content is identical or still valid → skip writing, report "no changes needed".
This guard prevents the silent data loss incident of 2026-03-17 where concurrent sessions overwrote memory files.
- Read new validated knowledge (discovery results, decisions, architecture insights, validated hypotheses, GTM decisions)
- Read
contexts/memory/index.md to discover available categories (shared and domain). Classify knowledge into the most appropriate existing category. If no existing category fits, create a new one — name it clearly, create the directory, and register it in index.md before writing any file.
- Create or update corresponding memory files using standard templates
- Register all new or modified entries in
contexts/memory/index.md — this is mandatory, not optional. Any file not in the index is invisible to all other memory skills.
- Domain dual-index rule: When ingesting into a domain category (
domains/{domain}/), also update the domain's own index.md (e.g., domains/content-production/index.md). Both the master index AND the domain index must reflect the new entry. Failure to update both causes silent drift — the domain sub-agent won't see entries missing from its domain index.
- Impact Scan (post-write) (informational — does not block ingestion). After writing new memory
files and updating all indexes (steps 3–5):
- Re-read
contexts/memory/index.md and collect all entries whose tags overlap with the tags
of the ingested content.
- For each matching entry, check whether the ingested content changes or invalidates assumptions
described in that file (load the file, compare topic overlap).
- List any potentially stale entries in the session output: entry path, reason suspected stale.
- If
index.md is missing or a referenced file is unreadable: skip the Impact Scan and note
"Impact Scan skipped: {reason}" in session output — do not fail the ingestion.
6b. Architecture file gate (applies ONLY to writes under contexts/memory/architecture/).
Before writing or updating any file in that folder:
- Read
contexts/rules/memory-architecture.rules.md in full
- Apply the Content Principle (§1) — if the content is a code snapshot rather than a conceptual invariant, STOP and reclassify (either rewrite at the invariant level or discard — do not weaken the rule)
- Apply the Verify-Before-Update Protocol (§2) — load each path in
depends_on.code_paths, confirm every claim in the content still matches current code; on divergence, escalate (never silent-rewrite)
- Populate the attestation fields in frontmatter:
verified_against_commit_sha: <40-char sha> and verified_at: <ISO 8601 timestamp>
- Writing an architecture file without running this gate, or writing content copied from a memory-delta without independent code verification, is forbidden
- Freshness metadata governance (Tier 1–2 files) After writing any memory file under
architecture/, patterns/conventions.md, or project/context.md, verify that both depends_on and refresh_tier are present in the file's YAML frontmatter before proceeding.
- Ensure memory files remain structured and minimal
Outputs
Memory files created at any registered category path (see contexts/memory/index.md). Current categories as of last update:
contexts/memory/project/ — project-level facts, architecture, constraints
contexts/memory/decisions/ — governance decisions
contexts/memory/patterns/ — coding conventions, procedural knowledge
contexts/memory/ops/ — platform operations, DNS, providers, infra procedures
contexts/memory/contacts/ — experts and leads identified during Discovery
contexts/memory/domains/content-production/ — domain-scoped: research AKUs, sources, voice guide, gap analysis for content blueprint
contexts/memory/index.md — updated (always, mandatory)
- Domain
index.md — updated when ingesting into a domain (mandatory, see Process step 5)
Governance rule: Any new category must be registered in index.md before use. Never write a memory file to an unregistered path.
Quality Checks
- Knowledge is stored in correct memory category
- Memory files remain structured and minimal
- Index reflects all active memory
- No duplication or raw session data
- Only validated knowledge enters long-term memory
Non-Goals
This skill must NOT:
- Store raw session conversations
- Ingest speculative or unvalidated information
- Duplicate existing memory entries
No knowledge enters memory without explicit validation. Raw exploration belongs to session memory only.
1---2name: memory-ingest3description: Transform validated knowledge into structured long-term memory. Activate after Bootstrap scan, after Discovery produces validated artefacts, or after architecture insights are available.4license: ELv25---67# Memory Ingest89## Purpose / When to Activate1011Activate after:12- Bootstrap scan produces architecture insights13- Discovery produces validated artefacts or decisions14- New validated project knowledge needs to be persisted1516**Only ingest validated knowledge — never raw session output.**1718---1920## Process2122**CRITICAL — Anti-Collision Guard (MUST execute before writing any memory file):**23Before writing any file under `contexts/memory/**`, check if the target file already exists on disk:24- If it does NOT exist → proceed normally.25- If it DOES exist → **read the existing file first**. Then decide:26 - If the existing content covers a **different topic or entity** than what you are about to write → **STOP immediately**, surface the collision to the human, do not proceed.27 - If the existing content covers the **same topic** and an update is warranted → proceed, but preserve any human edits or prior knowledge that remains valid. Treat this as an **update**, not a replacement.28 - If the existing content is identical or still valid → skip writing, report "no changes needed".29This guard prevents the silent data loss incident of 2026-03-17 where concurrent sessions overwrote memory files.30311. Read new validated knowledge (discovery results, decisions, architecture insights, validated hypotheses, GTM decisions)322. Read `contexts/memory/index.md` to discover available categories (shared and domain). Classify knowledge into the most appropriate existing category. If no existing category fits, create a new one — name it clearly, create the directory, and register it in `index.md` before writing any file.333. Create or update corresponding memory files using standard templates344. Register all new or modified entries in `contexts/memory/index.md` — this is mandatory, not optional. Any file not in the index is invisible to all other memory skills.355. **Domain dual-index rule:** When ingesting into a domain category (`domains/{domain}/`), also update the domain's own `index.md` (e.g., `domains/content-production/index.md`). Both the master index AND the domain index must reflect the new entry. Failure to update both causes silent drift — the domain sub-agent won't see entries missing from its domain index.36<!-- Impact Scan added to surface drift risk after ingest. Addresses the gap where ingested37 content can silently invalidate assumptions in related memory files. Provides informational38 ripple-effect visibility for OSS Discovery Agent (Cloud enforcement not required). -->396. **Impact Scan (post-write) (informational — does not block ingestion).** After writing new memory40 files and updating all indexes (steps 3–5):41 - Re-read `contexts/memory/index.md` and collect all entries whose `tags` overlap with the tags42 of the ingested content.43 - For each matching entry, check whether the ingested content changes or invalidates assumptions44 described in that file (load the file, compare topic overlap).45 - List any potentially stale entries in the session output: entry path, reason suspected stale.46 - **If `index.md` is missing or a referenced file is unreadable:** skip the Impact Scan and note47 `"Impact Scan skipped: {reason}"` in session output — do not fail the ingestion.486b. **Architecture file gate (applies ONLY to writes under `contexts/memory/architecture/`).**49 Before writing or updating any file in that folder:50 - Read `contexts/rules/memory-architecture.rules.md` in full51 - Apply the **Content Principle** (§1) — if the content is a code snapshot rather than a conceptual invariant, STOP and reclassify (either rewrite at the invariant level or discard — do not weaken the rule)52 - Apply the **Verify-Before-Update Protocol** (§2) — load each path in `depends_on.code_paths`, confirm every claim in the content still matches current code; on divergence, escalate (never silent-rewrite)53 - Populate the attestation fields in frontmatter: `verified_against_commit_sha: <40-char sha>` and `verified_at: <ISO 8601 timestamp>`54 - Writing an architecture file without running this gate, or writing content copied from a memory-delta without independent code verification, is forbidden557. **Freshness metadata governance (Tier 1–2 files)** After writing any memory file under `architecture/`, `patterns/conventions.md`, or `project/context.md`, verify that both `depends_on` and `refresh_tier` are present in the file's YAML frontmatter before proceeding.56 - If both are present → continue.57 - If either is absent → **add them before this step completes**. Do not exit the skill without freshness metadata on a Tier 1–2 file.58 - If the code paths are unknown, use the safe fallback:59 ```yaml60 depends_on:61 code_paths: []62 decisions: []63 epics: []64 refresh_tier: 265 ```66 Then add a session note: `"[FRESHNESS TODO] {file_path}: depends_on.code_paths not populated — manual enrichment required."`67 - **All other memory files** (outside the three paths above): `depends_on` is optional. If present, validate that `refresh_tier` is also declared and is a value 1–4. If `refresh_tier` is absent but `depends_on` is present, default to `refresh_tier: 2` and note for review.68 - Rule reference: `contexts/rules/memory-freshness.rules.md` §3 (which files must declare) and §4 (graceful degradation).698. Ensure memory files remain structured and minimal7071---7273## Outputs7475Memory files created at any registered category path (see `contexts/memory/index.md`). Current categories as of last update:76- `contexts/memory/project/` — project-level facts, architecture, constraints77- `contexts/memory/decisions/` — governance decisions78- `contexts/memory/patterns/` — coding conventions, procedural knowledge79- `contexts/memory/ops/` — platform operations, DNS, providers, infra procedures80- `contexts/memory/contacts/` — experts and leads identified during Discovery81- `contexts/memory/domains/content-production/` — domain-scoped: research AKUs, sources, voice guide, gap analysis for content blueprint82- `contexts/memory/index.md` — updated (always, mandatory)83- Domain `index.md` — updated when ingesting into a domain (mandatory, see Process step 5)8485> **Governance rule:** Any new category must be registered in `index.md` before use. Never write a memory file to an unregistered path.8687---8889## Quality Checks9091- Knowledge is stored in correct memory category92- Memory files remain structured and minimal93- Index reflects all active memory94- No duplication or raw session data95- Only validated knowledge enters long-term memory9697---9899## Non-Goals100101This skill must NOT:102- Store raw session conversations103- Ingest speculative or unvalidated information104- Duplicate existing memory entries105106**No knowledge enters memory without explicit validation. Raw exploration belongs to session memory only.**