memory-discipline

memory-discipline is a skill for Claude Code, Codex from M-T-D-N/agentmemory-codex-windows. It costs 56 tokens per session (650 once invoked), scanned A, a copy of memory-discipline, Apache-2.0.

A workflow for using agent memory during coding work: search relevant past memories before starting, record important decisions when they are made, and capture lessons from corrections or debugging.

In plain words
What is it for?
Use it at the start of a substantial task, after settling a technical decision, or when a debugging discovery should influence future work.
Why use it?
It helps an agent reuse earlier knowledge and preserve the reasoning behind choices, rather than rediscovering the same facts in later sessions.

Skill for Claude CodeCodex

Part of the agentmemory plugin — 17 skills, 2 commands, 12 hooks, 1 MCP server shipped together

Install

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.

agentmods
npx agentmods add skills/m-t-d-n/agentmemory-codex-windows/memory-discipline
Any agent
npx skills add M-T-D-N/agentmemory-codex-windows --skill memory-discipline
Clone the repo
git clone --depth 1 https://github.com/M-T-D-N/agentmemory-codex-windows

Made for: Claude Code, Codex.

Or install agentmemory, the plugin that ships this one along with the rest of its 17 skills, 2 commands, 12 hooks, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for memory-discipline

README.md
[![agentmods](https://agentmods.dev/badge/skills/m-t-d-n/agentmemory-codex-windows/memory-discipline.svg)](https://agentmods.dev/skills/m-t-d-n/agentmemory-codex-windows/memory-discipline)
Your own site
<a href="https://agentmods.dev/skills/m-t-d-n/agentmemory-codex-windows/memory-discipline"><img src="https://agentmods.dev/badge/skills/m-t-d-n/agentmemory-codex-windows/memory-discipline.svg" alt="Measured on agentmods" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 650 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What 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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00056 $0.00650
Opus 5 $0.00028 $0.00325
Sonnet 5 $0.00011 $0.00130
Haiku 4.5 $0.00006 $0.00065

Measured 5d ago against content hash f73a39df254a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

memory-discipline 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 5d 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.

Origin

This is a copy

100% identical to memory-discipline — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

plugin/skills/memory-discipline/SKILL.md · 58 lines

How it starts

The opening of the file, as written. The whole thing — 58 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Memory only pays off when reads happen before the work and writes happen at decision points. This loop is the skill; every tool call in it is mechanical.

Quick start

memory_smart_search { "query": "auth refresh flow", "project": "myrepo", "limit": 5 }

at task start, then at each settled decision:

memory_save { "content": "Chose cursor pagination over offset; offset scans broke past 100k rows in db/list.ts.", "concepts": "cursor-pagination, offset-scan-limit", "files": "src/db/list.ts" }

Why

Hooks capture what happened automatically. What they cannot capture is judgment: which fact mattered, which decision was settled, which correction should change future behavior. That judgment applied at the right moments is this discipline.

Workflow

  1. Task start, before reading code for any nontrivial task: memory_smart_search with the task topic and the project name. Spend the first tool call here; a hit saves rediscovery, a miss costs one call.
  2. Mid-task, the moment a decision settles or a gotcha resolves: memory_save with the decision AND the reason, 2-5 specific concepts, real file paths. Save at the moment of resolution; end-of-session batch saves lose the reasons.
  3. On user correction of your approach: save a lesson instead of a memory (the lesson skill). Lessons carry confidence and resurface before similar work; memories carry facts.
  4. Before repeating a task type you have been corrected on: memory_lesson_recall with the task type as query.
  5. Session end: stop. Hooks summarize and consolidate; a manual recap save duplicates them.

What qualifies

Save: settled decisions with reasons, non-obvious constraints discovered by debugging, environment facts not derivable from the repo. Skip: anything readable from the code, transient state, secrets, and step-by-step narration (hooks already captured it).

Anti-patterns

WRONG: finish implementing, then search memory to double-check, and batch-save a summary of everything done.

Read the full file on GitHub · 58 lines

Changes

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.

  1. 5d ago First seen · 58 lines · 56 tokens per session scan A f73a39df254a

Subscribe to this mod's changes

memory-discipline is a skill published in the GitHub repository M-T-D-N/agentmemory-codex-windows (2 stars, last pushed 5d ago), licensed Apache-2.0. It adds 56 tokens to every session and 650 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to memory-discipline, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

engraphis-memory

Give the agent durable, scoped, explainable memory across sessions and repositories through the Engraphis MCP tools. Use when you learn a convention, decision, bug cause/fix, or user preference worth keeping; when prior context would help before you answer or act (to avoid re-asking or re-deriving); when asked "why is…

Coding-Dev-Tools/engraphis · 134 tokens

slm-recall

Search and retrieve facts, decisions, and past context from SuperLocalMemory. Use when the user asks to recall, find, search, or "what did we decide/say about X". Triggers multi-channel semantic retrieval with reranking; always call before storing anything new.

qualixar/superlocalmemory · 60 tokens

slm-remember

Capture durable facts, decisions, constraints, and gotchas into SuperLocalMemory. Use when the user says "remember that", "save this decision", "note this constraint", or when a session produces a conclusion worth persisting across sessions. Always recall first to avoid duplicates.

qualixar/superlocalmemory · 60 tokens

slm-session

Manage SuperLocalMemory session lifecycle — call sessioninit once at the start of every fresh session to load relevant project context and get a sessionid; call closesession when work is meaningfully complete to commit temporal summaries. Correct lifecycle hygiene is what makes SLM's learning loop work.

qualixar/superlocalmemory · 60 tokens

slm-compress

Compress large text, tool output, or transcripts to reduce context-window usage while keeping the full 1M window intact — call slmcompress(content, mode, reversible, ttlseconds) to shrink content; if the result is lossy a ccrid is returned so you can call slmretrieve(ccrid) later to recover the exact original; always…

qualixar/superlocalmemory · 90 tokens

slm-scope

Controls memory visibility across profiles — personal (private, default), shared (selected profiles), or global (all profiles on this machine). Default is always personal. Only change scope when the user explicitly asks to share a memory across workspaces. Works with both remember (write scope) and recall (read scope…

qualixar/superlocalmemory · 67 tokens