Goal
Audit Codex memories as user-owned durable state: expose stale, unsafe, duplicated, or misplaced entries; propose better destinations; add a structured cleanup plan when approval needs precision; and apply cleanup only after a report, backup, and explicit user approval.
Core principle
Memory is context, not truth. The latest user request, current repo files, AGENTS.md, package files, ADRs, and live evidence override stored memories.
When to use
- The user asks to review, audit, clean up, prune, rewrite, or remove Codex memories.
- The user mentions
~/.codex/memories, stale memories, memory pollution, or memories making Codex worse. - The user wants to decide whether an entry belongs in memory,
AGENTS.md, repo docs, a skill, config, or deletion. - The user wants to disable, tune, or audit Codex memory behavior.
When not to use
- Do not use for ordinary repo documentation cleanup unless Codex memories are part of the task.
- Do not use for generic prompt engineering that does not inspect memory files or memory config.
- Do not modify memories when the user only asked for review.
- Do not inspect unrelated personal files outside Codex memory/config paths and the current repo files needed to verify conflicts.
Inputs to inspect
- Codex home:
${CODEX_HOME:-$HOME/.codex}or the user-provided Codex home path. - Memory files under
<codex-home>/memories. - Memory config at
<codex-home>/config.tomlwhen present. - The current user request and current repo instructions/docs only when needed to verify conflicts.
references/classification-rubric.mdwhen a classification is not obvious.references/conflict-resolution.mdwhen memory may conflict with current prompt,AGENTS.md, repo docs, package scripts, ADRs, source, or config.references/config-modes.mdwhen recommending memory config changes.references/memory-store-anatomy.mdwhen the memory directory contains multiple generated-state file types.references/safe-editing-procedure.mdbefore modifying memory files.assets/review-report-template.mdwhen report shape is unclear.assets/cleanup-plan-template.mdwhen a structured cleanup plan artifact is useful or requested.
Safety rules
Never silently delete, rewrite, truncate, or move memory files.
Ask exactly this before content-changing cleanup:
Do you want me to apply the safe cleanup now? I will back up the memory directory first.Do not edit unless the user clearly approves that cleanup.
Back up the memory directory before approved edits and report the backup path.
Do not print full secrets, tokens, credentials, customer data, private identifiers, or sensitive personal data.
If secret-like data is found, redact values in output, identify file and line when possible, recommend removal, and recommend rotation for real credentials.
If the memory schema is unclear, do not edit the original file. Write a sibling
.proposed.mdcleanup plan instead.Treat memory files as generated state unless local instructions prove otherwise. Do not rewrite append-only evidence to fix a stale curated claim.
Do not apply repo-specific assumptions globally. Prefer
AGENTS.mdor repo docs for repo rules.Do not run broad destructive commands.
Workflow
Discover Codex home:
Use
${CODEX_HOME}when set; otherwise use the user's home directory plus.codex.Inventory memory files without dumping contents:
node scripts/inventory-memories.mjsRun the redacted risk scanner when looking for sensitive, stale, broad, local, repo-specific, or config-like entries:
node scripts/scan-memory-risks.mjs --jsonExit code
1means findings were found, not that the scan failed. The scanner caps returned findings and skips generated evidence by default; raise--max-findingsor add--include-generated-evidenceonly when needed. Use scanner JSON as evidence; report counts and the highest-signal redacted findings instead of pasting the full payload.Inspect
<codex-home>/config.tomlwhen present; read no more than the first 220 lines.Classify memory mode as disabled, enabled but not injected, enabled and injected, external-context generation disabled, or unknown. Load
references/config-modes.mdfor exact mode signals.If multiple memory file types are present, load
references/memory-store-anatomy.mdbefore deciding what is safe to edit.Read memory files in small chunks; avoid huge dumps and redact sensitive values.
Extract one atomic claim per row. Split compound entries before classification.
Verify conflicts against only the current repo files needed for the disputed claim. Load
references/conflict-resolution.mdwhen precedence is unclear.Assign exactly one primary classification per atomic claim:
KEEP,KEEP BUT REWRITE,MOVE TO AGENTS.md,MOVE TO REPO DOCS,MOVE TO SKILL,MOVE TO CONFIG,DELETE, orASK USER.Tag high-risk entries as useful context only:
stale,duplicated,too-broad,too-specific,repo-specific,workflow,config,sensitive,conflicting, oruseful.Add confidence (
high,medium, orlow) and a proposed action to every entry.Produce the review report before editing. Add a structured cleanup plan only when the user wants ID-by-ID approval, the schema is unknown, sensitive cleanup is proposed, or the edit set is large enough that a table is hard to approve safely.
If cleanup is approved, load
references/safe-editing-procedure.md, runnode scripts/backup-memories.mjs, apply only approved minimal edits by memory ID, re-read changed sections, and show a trimmed diff summary.
Classification checks
For each atomic claim, ask:
- Is this stable for months?
- Is this a personal preference or a repo rule?
- Could this mislead Codex in another repository?
- Is it phrased too strongly with
always,never, ormust? - Is it duplicated, stale, one-off, or conflicting?
- Does it contain sensitive data?
- Does a higher-precedence source contradict it?
- Would this be more precise as
AGENTS.md, repo docs, a skill, config, or deletion? - Is it short enough to stay in memory?
Load references/classification-rubric.md for examples and detailed decision rules.
References
Read only when needed:
references/classification-rubric.mdfor detailed classification rules and rewrite examples.references/conflict-resolution.mdfor precedence rules when memory conflicts with current repo evidence.references/config-modes.mdfor memory config mode signals and TOML snippets.references/example-review-report.mdfor report shape examples.references/memory-store-anatomy.mdfor generated-state boundaries and common memory file buckets.references/safe-editing-procedure.mdbefore modifying memory files.assets/review-report-template.mdwhen a concise report template is useful.assets/cleanup-plan-template.mdwhen a structured cleanup plan is needed.
Scripts
Use only when needed. All scripts are non-interactive, use Node.js stdlib only, and accept --help.
node scripts/inventory-memories.mjs [--codex-home PATH] [--json]
node scripts/scan-memory-risks.mjs [--codex-home PATH] [--json] [--max-findings N] [--include-generated-evidence]
node scripts/backup-memories.mjs [--codex-home PATH]
inventory-memories.mjsis read-only and lists memory files with size/date metadata plus a best-effort file kind.scan-memory-risks.mjsis read-only, redacts matching lines by default, labels risk categories, limits returned findings, skips generated evidence unless requested, and exits1when findings exist.backup-memories.mjscreates a timestamped backup copy under Codex home; it does not edit or delete memory files.
Output format
Before edits, lead with this report shape:
# Codex Memory Review
## Top Decisions
1.
2.
3.
## Summary
- Memory files inspected:
- Entries extracted:
- Keep:
- Rewrite:
- Move to AGENTS.md:
- Move to repo docs:
- Move to skill:
- Move to config:
- Delete:
- Ask user:
## Highest-Risk Memories
| ID | Entry | Risk | Recommendation |
| --- | ----- | ---- | -------------- |
## Proposed Cleanup Table
| ID | Current memory | Classification | Risk tags | Confidence | Reason | Proposed action |
| --- | -------------- | -------------- | --------- | ---------- | ------ | --------------- |
## Conflict Notes
| ID | Higher source | Conflict | Recommendation |
| --- | ------------- | -------- | -------------- |
## Optional Cleanup Plan Artifact
- Plan path:
- Plan format: `assets/cleanup-plan-template.md`
- Omit this section for simple review-only work unless the user needs ID-by-ID approval.
## Config Recommendation
## Recommended Next Action
After approved edits, also include backup path, files changed, trimmed diff summary, and residual risks.
Completion criteria
- Relevant memory files and config were inventoried, or a missing-path message was reported.
- Entries were extracted as atomic claims.
- Each entry has exactly one primary classification.
- Each entry has risk tags, confidence, and a proposed action.
- The report distinguishes memory,
AGENTS.md, repo docs, skills, config, deletion, and ask-user cases. - Conflicts cite the higher-precedence source that makes the memory stale or misplaced.
- Generated evidence files are treated as evidence unless approved sensitive-data cleanup requires changing them.
- A structured cleanup plan is provided when the user wants ID-by-ID approval, the schema is unknown, sensitive cleanup is proposed, or the edit set is large.
- No memory edit happened before explicit approval.
- Any approved edit has a backup path and verification diff summary.
Failure modes
- No memory directory: report that no local memories directory was found and suggest checking whether memories are enabled or
CODEX_HOMEpoints elsewhere. - Config missing: report that memory behavior may be controlled by app settings or defaults.
- Memory schema unknown: write proposed replacements to a sibling
.proposed.mdfile instead of editing the original. - Sensitive data found: redact the value, identify file and line when possible, recommend removal, require backup before edits, and recommend rotation for real credentials.
- Conflicting rules: cite the conflict, prefer current prompt and repo instructions, then classify as rewrite, move, or delete.
- Backup failure: do not edit memory files.
Final output instruction
Stay skeptical and concise. Lead with top decisions and the cleanup report, not a long explanation. Give one concrete next action when action is needed.