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/agent-architecturegit 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.00623 | $0.00623 |
| Opus 5 | $0.00311 | $0.00311 |
| Sonnet 5 | $0.00125 | $0.00125 |
| Haiku 4.5 | $0.00062 | $0.00062 |
Grade A, and why
agent-architecture 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.
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.
OpenClaw Agent Architecture
When building or modifying an OpenClaw agent, follow this directory structure and these conventions.
Directory Structure
my-agent/
├── SOUL.md # Agent identity, personality, rules
├── config.json # Agent metadata and heartbeat config
├── MEMORY.md # Persistent memory (agent reads/writes this)
├── tools/ # Tool scripts (Node.js, zero npm deps)
│ ├── ga4-report.cjs
│ ├── stripe-report.cjs
│ └── reddit-scan.cjs
├── secrets/ # API keys and credentials (never commit)
│ ├── ga4-credentials.json
│ └── .env
├── TOOLS.md # Available commands and usage
├── HEARTBEAT.md # Scheduled task definitions
├── USER.md # User preferences and context
└── bot-telegram.cjs # Telegram bot entry point
config.json
{
"name": "AgentName",
"role": "Role Description",
"sessionKey": "agent:name:main",
"heartbeat": { "interval": 0, "offset": 0 },
"capabilities": ["list", "of", "capabilities"],
"personality": {
"tone": "analytical_concise",
"verbosity": "moderate",
"emoji_usage": "none"
},
"systemFiles": ["agents/name/SOUL.md"]
}
heartbeat.interval: 0means Telegram-only (no scheduled tasks via legacy heartbeat)- Use
~/.openclaw/cron/jobs.jsonfor scheduled tasks instead sessionKeyformat:agent:{name}:{scope}
Key Conventions
- Zero npm dependencies for tool scripts. Use Node.js built-in
https,fs,path,crypto. - CommonJS format (
.cjs) for all scripts. OpenClaw runs scripts directly withnode. - Secrets in environment variables or
secrets/directory. Never hardcode API keys. - MEMORY.md is the agent's long-term memory. The agent reads it at session start and writes to it when it learns something important. Keep it under 200 lines.
- TOOLS.md lists available commands. The agent reads this to know what scripts it can run.
- Each agent gets its own directory under
agents/. Never share config files between agents.
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 · 72 lines · 623 tokens per session scan A 308f96b64a42
agent-architecture is a cursor rule published in the GitHub repository mergisi/openclaw-rules (2 stars, last pushed 6mo ago), licensed MIT. It adds 623 tokens to every session, about $0.0031 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.
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.
bash-style
Bash 核心规范:禁止行尾注释、文件写入用 tee、Heredoc 默认禁止变量展开.
angular-20
This rule provides comprehensive best practices and coding standards for Angular development, focusing on modern TypeScript, standalone components, signals, and performance optimizations.
dev-standard
Apache Superset development standards and guidelines for Cursor IDE.