Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/soulcodex/agentic/memory-continuitynpx skills add soulcodex/agentic --skill memory-continuitygit clone --depth 1 https://github.com/soulcodex/agenticWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00030 | $0.00967 |
| Opus 5 | $0.00015 | $0.00483 |
| Sonnet 5 | $0.00006 | $0.00193 |
| Haiku 4.5 | $0.00003 | $0.00097 |
Grade A, and why
memory-continuity scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 124 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Memory Continuity Skill
Use this skill to preserve high-value context between clean sessions while avoiding noisy or low-signal carryover.
Storage Layout (Hybrid Contract)
Use this deterministic structure:
.agentic/
memories/
MEMORY.md
index.md
snapshots/
YYYY-MM-DDTHH-MM-SSZ.md
Rules:
- If
.agentic/memories/does not exist, create it and required child paths. MEMORY.mdis the current canonical continuity file.index.mdis a small pointer log to snapshots.snapshots/stores timestamped continuity checkpoints.- Use
memory-current-template.mdforMEMORY.mdinitialization. - Use
index-template.mdforindex.mdinitialization.
First-Run Initialization and Bootstrap Rules
When MEMORY.md and index.md do not exist:
- If there is active iteration context (for example an open issue/PR, active branch work, or already-decided next steps), initialize both files from templates immediately.
- If there is no active iteration context, inspect commit history for signal:
- if history is rich enough to derive meaningful continuity, ask the user before generating a brief bootstrap memory from commits;
- if history is not rich enough, ask the user before leaving memory uninitialized.
- Never invent synthetic history. If signal is insufficient, state that explicitly.
Start-of-Session Retrieval Workflow
- If files are missing, apply First-Run Initialization and Bootstrap Rules.
- Read
.agentic/memories/MEMORY.mdif present. - If
index.mdexists, read only the latest 1 to 3 snapshot pointers. - Extract only high-signal items:
- current objective
- decisions made and rationale
- open risks/questions
- next concrete steps
- Do not import verbose logs, full transcripts, or resolved low-impact details.
End-of-Session Update Workflow
- Create directories/files if missing:
.agentic/memories/.agentic/memories/snapshots/.agentic/memories/MEMORY.md(frommemory-current-template.md).agentic/memories/index.md(fromindex-template.md)
- Build a new memory entry using
memory-template.md. - Update
MEMORY.mdadditively:
- keep existing unresolved items
- append new high-signal updates
- remove or compress resolved/noisy items
- Write a timestamped snapshot:
- filename format:
YYYY-MM-DDTHH-MM-SSZ.md
- Append one row in
index.mdpointing to the snapshot and objective.
What ships with it
3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 124 lines · 30 tokens per session scan A 860def6a9a68
memory-continuity is a skill published in the GitHub repository soulcodex/agentic (10 stars, last pushed 2d ago), licensed MIT. It adds 30 tokens to every session and 967 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
research-repository
Build a repository that makes findings findable, reusable, and cumulative across teams. Use when the same research keeps getting redone. For synthesising one study, use affinity-diagram.
survey-design
Design unbiased survey instruments — question wording, scales, and sampling — to measure attitudes at scale. Use when you need quantitative breadth. For behavioural experiments, use a-b-test-design (prototyping-testing).
localization-design
Design for multiple languages, writing directions, and cultural contexts — text expansion, RTL mirroring, and locale formats. Use when shipping beyond one locale. For the words themselves, use ux-writing (designer-toolkit).
design-negotiation
Advocate for design quality, scope, and timeline with partners and leadership using evidence and shared goals. Use in the conversation itself. For the commercial vocabulary behind it, use business-design (ux-strategy).
design-debt-audit
Inventory and prioritise accumulated design inconsistencies across a product. Use when drift has built up over time. For token coverage specifically use design-token-audit (designer-toolkit); for WCAG gaps use accessibility-audit (design-systems).
design-impact-reporting
Communicate design's contribution to business and user outcomes in stakeholder language. Use when reporting results upward. For choosing the metrics in the first place, use metrics-definition (ux-strategy).