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 instructions/awrshift/claude-memory-kit/claude-mdgit clone --depth 1 https://github.com/awrshift/claude-memory-kitWrote 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.
[](https://agentmods.dev/instructions/awrshift/claude-memory-kit/claude-md)<a href="https://agentmods.dev/instructions/awrshift/claude-memory-kit/claude-md"><img src="https://agentmods.dev/badge/instructions/awrshift/claude-memory-kit/claude-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00594 | $0.00594 |
| Opus 5 | $0.00297 | $0.00297 |
| Sonnet 5 | $0.00119 | $0.00119 |
| Haiku 4.5 | $0.00059 | $0.00059 |
Grade A, and why
claude-memory-kit CLAUDE.md 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 3d 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.
Copies of this mod
1 near-identical copy found in the catalogue:
- agent-memory-kit CLAUDE.md — 100% identical, 0 lines differ
How it starts
The opening of the file, as written. The whole thing — 45 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Working on Memory Kit
This repo is a Claude Code plugin marketplace, not a memory workspace. The plugin lives in
plugins/memory-kit/; .claude-plugin/marketplace.json is the catalog. Users install it into
their repositories — nothing here should assume it runs at the project root.
Rules that are easy to get wrong
- Paths. Anything the plugin ships resolves from
${CLAUDE_PLUGIN_ROOT}; anything about the user's repo resolves fromCLAUDE_PROJECT_DIR. Never derive a project root from__file__— the plugin runs from a cache directory. - Never write into a repo that didn't ask. The plugin can be installed user-wide. Scaffolding
happens only inside
/memory-kit:setup, after a yes. - What a plugin cannot ship:
CLAUDE.md,.claude/rules/, and anysettings.jsonkey other thanagent/subagentStatusLine. Context therefore travels via hooks, skills and agents — the working agreement isplugins/memory-kit/context/identity.md, injected at SessionStart. - Always-loaded vs on-invoke. A skill body loads only when invoked; a rule without
paths:loads every session forever. Put weight in skills andreference/, never in rules. - Verify injection by looking at the context, not the code. v5 claimed for a year that the hot cache was always loaded while the hook only measured it. Run the hook and read its output.
Before committing a change to hooks or skills
claude plugin validate ./plugins/memory-kit
CLAUDE_PROJECT_DIR=<test-repo> CLAUDE_PLUGIN_ROOT=$PWD/plugins/memory-kit \
python3 plugins/memory-kit/hooks/session-start.py <<< '{"source":"startup"}'
Exercise every SessionStart source (startup · resume · compact · fork · clear) and both hook
outcomes for protect-tests.py — the profiles are the whole design, and a broken one fails
silently.
Docs that must stay true in the same commit
A behaviour change touches docs/CHANGELOG.md; a layer change also touches docs/ARCHITECTURE.md
and BOTH readmes — the root README.md (the pitch) and plugins/memory-kit/README.md (the skill
table). A change to what a diagram asserts touches docs/ASSETS.md, even when the PNG is not
regenerated in the same commit — a stale panel is a lie in the most-read file. VERSION,
plugin.json and marketplace.json carry the same version — they have drifted before.
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.
- 3d ago First seen · 45 lines · 594 tokens per session scan A 1b0ea90728d9
claude-memory-kit CLAUDE.md is an instructions file published in the GitHub repository awrshift/claude-memory-kit (31 stars, last pushed 7d ago), licensed MIT. It adds 594 tokens to every session, about $0.0030 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-30.
Other instructions, from other repositories
claude-persistent-memory CLAUDE.md
Instructions for MIMI180306/claude-persistent-memory, covering claude.md, what this is, commands, architecture and internal service communication.
claude-code-pack CLAUDE.md
Claude Code instructions for SatymSingh01/claude-code-pack, covering rules, output, code and session hygiene.
ai-workflow AGENTS.md
Instructions for cunhaax/ai-workflow, covering ai workflow template, rules — non-negotiable, project overview, commands and architecture.
vibetags com-example-config-AsyncTestConfig.instructions.md
Instructions for PIsberg/vibetags, covering copilot instructions for asynctestconfig and immutable type.
pupila CLAUDE.md
Instructions for FranRom/pupila, covering claude.md, where things live, stack, run locally and repo layout.
McpServer AGENTS.md
AGENTS.md instructions for sharpninja/McpServer, covering agent instructions, session start, rules, byrd test gate and where things live.