Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Memory Design

ASecurity

Decide what an agent should remember, which layer holds it, who it is scoped to, and how a stale or contradicted memory is detected and retired. Use when an agent forgets something across sessions, when a memory or persistent-context feature is being designed, or when stored memories have grown noisy, wrong, or are leaking between users. Not for retrieval over a document corpus, not for prompt or context-window packing, and not for conversation transcript storage.

46 stars
0 votes
0 copies
0 views
Added 9/22/2026
ai-agentsgo

Security Analysis

A100/100

Scanned 9/22/2026

Install to Claude Code

$npx -y skills add nahid-sparktales/agent-dispatcher --skill memory-design --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Memory Design?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Memory Design
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/nahid-sparktales-memory-design/badge)](https://www.skillsdirectory.com/skills/nahid-sparktales-memory-design)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: memory-design
description: Decide what an agent should remember, which layer holds it, who it is scoped to, and how a stale or contradicted memory is detected and retired. Use when an agent forgets something across sessions, when a memory or persistent-context feature is being designed, or when stored memories have grown noisy, wrong, or are leaking between users. Not for retrieval over a document corpus, not for prompt or context-window packing, and not for conversation transcript storage.
---

# Memory design

Memory is the only part of an agent that keeps being wrong after you stop looking. A retrieval bug
shows up in the next answer; a stale memory sits there being quietly confident for months. Design
the retirement path before the write path.

## When this fires

An agent needs a fact to survive past the current context — across turns, tasks or sessions — or
an existing memory store has grown noisy, contradictory, or is surfacing one subject's data to
another. It does not fire for retrieval over a document corpus (that is retrieval-rag), and not
for keeping a transcript: a transcript is a log, not memory.

## Procedure

1. **Name the repeat failure first.** What did the agent forget, how often, and what did it cost —
   a re-asked question, a redone decision, a wrong assumption. Memory added without a named repeat
   failure is speculative storage, and storage you cannot justify is storage you will not prune.
2. **Classify what is actually worth keeping**, because the class decides everything after it:
   - *stable facts and preferences* — this user's stack, conventions, how they want to be addressed
   - *decisions and their rationale* — true until explicitly reversed, and the rationale is the
     part that matters later
   - *working state* — what this task is mid-way through; it dies with the task
   - *derived summaries* — regenerable from the source; store only when regeneration is expensive
   Everything else is a log. Do not promote a log to memory.
3. **Put each class in the shallowest layer that holds it.** Working state belongs in a task file
   or thread state, not a long-term store. Stable facts and decisions belong in a durable record.
   If the store is a vector index, it is a retrieval system and inherits the retrieval-rag
   procedure, including the requirement to measure recall — unevaluated vector memory is a wish.
4. **Scope every record explicitly** at write time: the subject it is about (this user, this
   project, this repository, this organization) and who may read it. Default to the narrowest
   scope. Widening a memory's scope so it crosses users or tenants is a data boundary change —
   raise it and get an explicit decision, do not infer permission from convenience.
5. **Write memories as assertions with provenance**, not as free prose: the claim, when it was
   learned, what it was learned from (session, message, file, commit), and what would make it
   false. A memory with no source cannot be retired safely, because nothing can be checked against
   the thing it came from.
6. **Choose the write trigger deliberately.** Writing on every turn produces noise that buries the
   few records that matter. The triggers that earn a write: the user says to remember, a decision
   is settled, a correction is issued, or a fact was expensively discovered. A user correcting the
   agent is the highest-value write there is — never drop one.
7. **Refuse to store secrets and sensitive personal data.** Credentials, tokens, keys, payment and
   identity data do not go into memory, even when they appeared in the conversation. If one is
   already stored, stop and tell the user rather than quietly acting on it.
8. **Check for staleness at read time, not only on a schedule.** Three detectors, cheapest first:
   *contradiction* — a new statement conflicts with a stored one; *expiry* — the record was
   time-boxed at write (current sprint, active branch, "for now"); *reference decay* — it names a
   file, person, project or setting that no longer exists. Verify a load-bearing memory against
   the live source before acting on it.
9. **Supersede rather than silently overwrite.** The replacing record points at what it replaced
   and says why. History of a reversed decision is often more useful than the decision.
10. **Treat deletion as destructive.** Retiring or clearing memory the user gave you removes
    something they may be relying on. Propose the retirement with the list of what would go, and
    ask. Never bulk-delete a memory store to fix a formatting problem.
11. **Bound the store and measure usefulness.** Set a cap and an eviction rule based on when a
    record was last *read*, not when it was written. Track what fraction of stored memories have
    been read at all in the last N sessions; a large unread tail is cost with no return, and it is
    the signal to tighten the write trigger from step 6.
12. **Exercise the full loop before calling it done**: write a memory, start a genuinely fresh
    session, confirm it is retrieved and used. Then change the underlying fact and confirm the old
    record is superseded rather than duplicated, and that the new answer reflects the new fact.

## Checklist

- [ ] The repeat failure this memory exists to fix is named
- [ ] Each stored class mapped to a layer, with working state kept out of the durable store
- [ ] Every record carries subject scope and read visibility
- [ ] Every record carries source, timestamp, and a falsification condition
- [ ] Write triggers are explicit; corrections are always captured
- [ ] Secrets and sensitive personal data excluded at the write path
- [ ] Contradiction, expiry and reference-decay checks run before a memory is acted on
- [ ] Supersession preserves what was replaced and why
- [ ] Deletion is proposed to the user, never performed silently
- [ ] Cross-session round trip exercised, including the changed-fact case

## Failure handling

- **Two memories contradict each other** — do not pick by recency alone. Check both against the
  live source; if it cannot be resolved, surface the conflict to the user rather than acting on a
  coin flip.
- **The agent recalls a fact that is no longer true** — the defect is in the retirement path, not
  in retrieval. Fix the expiry or contradiction detector; deleting the one bad record leaves the
  next one to be found by the user.
- **A memory from one subject surfaced under another** — stop, treat it as a data exposure, report
  it with the scope that was wrong. Do not continue the feature work first.
- **The store is large and nothing is measurably better** — that is a result. Report the unread
  fraction and propose narrowing the write trigger.
- **No durable store is available in this environment** — say so, keep the fact in the task's own
  working state, and do not describe behaviour as persistent when it is not.

## Evidence to report

The classes stored and the layer each lives in; a sample record showing scope, source, timestamp
and falsification condition; the write triggers as implemented; the staleness checks that run and
where they run; the cross-session round trip actually performed, including the changed-fact case,
with what was recalled; and the read-rate of the store if it has been running long enough to have
one. "It remembers now" without a fresh-session round trip is a claim, not evidence.

Attribution

nahid-sparktalesnahid-sparktales
View sourceMore from nahid-sparktales →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1066601 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

686011 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

651 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →