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 rules/mergisi/openclaw-rules/memory-systemgit clone --depth 1 https://github.com/mergisi/openclaw-rulesWhat 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.00480 | $0.00480 |
| Opus 5 | $0.00240 | $0.00240 |
| Sonnet 5 | $0.00096 | $0.00096 |
| Haiku 4.5 | $0.00048 | $0.00048 |
Grade A, and why
memory-system 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 yesterday.
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.
How it starts
The opening of the file, as written. The whole thing — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent Memory System
When working with OpenClaw agent memory and context management.
MEMORY.md
Every agent has a MEMORY.md file that persists across sessions. The agent reads it at startup and updates it when it learns something important.
Structure
# {Agent Name} — Memory
## About Me
- **Role:** {role}
- **Created:** {date}
## Key Decisions
- {Important decision and why it was made}
## Preferences
- {User preferences discovered over time}
## Context
- {Project-specific context}
## Notes
- MEMORY.md is loaded at session start.
- Update this file when you learn something important.
- Keep it concise — this is your long-term memory.
Rules
- Max 200 lines. Beyond 200, the context becomes too large and the agent starts ignoring older entries.
- Semantic organization. Group by topic, not chronologically. "User Preferences" not "Feb 23 Notes."
- Update, don't append. When information changes, update the existing entry. Don't add a new line saying "actually, the previous thing was wrong."
- Delete stale info. If a decision was reversed or context is no longer relevant, remove it.
USER.md
Optional file for user-specific context that the agent should always know:
# User Context
## Products
- AI2SQL (ai2sql.io) — Text-to-SQL tool
- CrewClaw (crewclaw.com) — Agent deploy platform
## Preferences
- Never auto-commit or push without asking
- Respond in English only
- Keep responses concise
Context Loading Order
When an agent starts a session, it loads context in this order:
- SOUL.md (identity and rules)
- MEMORY.md (persistent memory)
- USER.md (user context, if exists)
- TOOLS.md (available commands, if exists)
- HEARTBEAT.md (scheduled tasks, if exists)
Tips
- If the agent keeps forgetting something, add it to MEMORY.md or USER.md.
- If the agent is too slow to start, MEMORY.md is probably too long. Trim it.
- Use MEMORY.md for things the agent learned. Use USER.md for things you want to tell the agent.
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.
- yesterday First seen · 72 lines · 480 tokens per session scan A ea307473f647
memory-system is a cursor rule published in the GitHub repository mergisi/openclaw-rules (2 stars, last pushed 6mo ago), licensed MIT. It adds 480 tokens to every session, about $0.0024 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-31.
Other cursor rules, from other repositories
050-plan
When the user types /plan or asks to create a project plan, feature PRD, or retrospective.
002-verify-before-act
Requires Claude to read before writing, verify before installing, and confirm before destructive operations.
pre-flight-check
Mandatory fail-fast quality gate — run Typecheck, Lint, Test, and Security Audit sequentially before declaring any task done or committing code.
graphql
GraphQL: schema design, resolvers, performance.
infra-devops
Infrastructure, Cloud, Terraform, Docker & CI/CD Agent.
context-routing
System, platform, and developer instructions take precedence; then repository-specific rules; then this framework. Before work, read .ai/bootstrap/boot.md and .ai/rules/00-master-rules.md. Load focused rules and skills only when triggered.