Skip to content
AI & Agents
Command

/cs-forgetting-audit

Run only the blocking forgetting gate on a memory design or store — what leaves, and on what rule.

From plugin
alirezarezvani-claude-skills
26k150 skills116 agents150 commands2 MCP
Install
$ npx -y skills add alirezarezvani/claude-skills --agent claude-code

How it fires

How this command gets triggered: by you, by Claude, or both.

  • Fires itselfClaude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/cs-forgetting-audit

Context preview

What this command does when you run it.

Run only the blocking forgetting gate on a memory design or store — what leaves, and on what rule.

Command definition

cs-forgetting-audit.md
description: Run only the blocking forgetting gate on a memory design or store — what leaves, and on what rule.
argument-hint: "[policy JSON, or a memory directory to audit]"

/cs:forgetting-audit

The short pass. Skip the cost and architecture work; answer one question about `$ARGUMENTS`:

> **What leaves this store, and on what rule?**

Run

If given a policy JSON:

python skills/memory-engineering/scripts/forgetting_policy_linter.py --policy <policy.json>

If given a directory, first show what is actually accumulating, then gate:

python skills/memory-engineering/scripts/memory_density_auditor.py --dir <path>
python skills/memory-engineering/scripts/forgetting_policy_linter.py --policy <policy.json>

If no policy file exists, that is the answer — nothing leaves the store. Show what `--sample-failing` blocks, then help write one from `skills/memory-engineering/assets/forgetting_policy_template.md`.

The two blocking checks

  • **F1 — an explicit forgetting rule** (TTL, capacity bound with a stated

eviction order, or relevance decay). None of the memory systems in the Stanford evaluation prunes or forgets by default: if it was not built, it does not exist.

  • **F4 — contradictions surfaced, never auto-merged.** `newest_wins`,

`auto_merge`, `overwrite` and `last_write_wins` all fail. Two memories that disagree may both have been true in different contexts, and silently resolving them destroys the only evidence the conflict existed.

The other six checks (dedup, consolidation, scope, audit trail, rollback, growth-slope monitoring) degrade the verdict to CONDITIONAL rather than failing it.

Report

1. **Verdict** — PASS (0) / CONDITIONAL (2) / **FAIL (4)** 2. **Every failing check** with its ID, why it matters, and its fix 3. **The one thing to fix first** — F1 or F4 if either failed; otherwise the highest-leverage warning

Do not

  • Do not soften a FAIL into a suggestion. Retrofitting forgetting onto a full

store is a data migration with a judgment call attached to every record — which is exactly why it never happens.

  • Do not accept "we will add pruning later." Later is the failure mode.
  • Do not propose auto-resolution for contradictions, in any form.
Read more
Ships withalirezarezvani-claude-skills

388 production-ready Claude Code skills, plugins, and agent skills for 13 AI coding tools. The most comprehensive open-source library of Claude Code skills and agent plugins — also works with OpenAI Codex, Gemini CLI, Cursor, and 9 more coding agents.

Get the whole plugin

Other commands on alirezarezvani-claude-skills.