OpenClaw Master Skills is a curated, regularly updated collection of skills that extends an AI personal assistant platform with capabilities such as research, browser automation, presentation creation, and prompt work. It is intended for people using OpenClaw or MyClaw.ai to give their agents additional tasks and workflows. The catalogue contains many skills and agents from this collection.
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 skills add LeoYeAI/openclaw-master-skills --skill agent-memory-system-guidegit clone --depth 1 https://github.com/LeoYeAI/openclaw-master-skillsWrote 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/skills/leoyeai/openclaw-master-skills/agent-memory-system-guide)<a href="https://agentmods.dev/skills/leoyeai/openclaw-master-skills/agent-memory-system-guide"><img src="https://agentmods.dev/badge/skills/leoyeai/openclaw-master-skills/agent-memory-system-guide/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/leoyeai/openclaw-master-skills/agent-memory-system-guide"><img src="https://agentmods.dev/badge/skills/leoyeai/openclaw-master-skills/agent-memory-system-guide.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.1 | $0.00044 | $0.05594 |
| Opus 5 | $0.00022 | $0.02797 |
| Sonnet 5 | $0.00009 | $0.01119 |
| Haiku 4.5 | $0.00004 | $0.00559 |
Grade A, and why
Agent Memory System Guide 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 9d 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 — 569 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent 记忆系统搭建指南 Skill
🧠 从零搭建 Agent 长期记忆系统。基于 OpenClaw 实战,覆盖本地优先的
MEMORY.md、每日笔记、SESSION-STATE.md、working-buffer.md、Obsidian 原生笔记与可选召回后端全流程。
触发词
记忆系统、memory-setup、搭建记忆、记忆架构
⚡ 5 分钟快速上手
如果你赶时间,只需做这几步:
第一步:创建 MEMORY.md
# MEMORY.md
> 长期记忆。只保留会持续影响协作的事实、偏好和决策。
## User
- Preferred name: K
- Timezone: Asia/Shanghai
## 当前任务
- [ ] 正在做的事
## 决策记录
- YYYY-MM-DD: 决策内容 + 原因
## 踩坑记录
- 问题 → 解决方案
第二步:创建每日笔记
# memory/2026-03-20.md
## 完成
- 分析了网宿科技
## 决策
- 暂不加仓
## 踩坑
- (无)
## 待办
- [ ] 明天要做什么
第三步:从模板创建 SESSION-STATE.md 和 working-buffer.md
# SESSION-STATE.md
## 当前任务
- 任务名称
## 已完成
- ...
## 卡点
- ...
## 下一步
- ...
## 恢复信息
- 最近一次有效上下文:...
# working-buffer.md
## 进行中
- ...
## 临时决策
- ...
## 未完成
- ...
模板来源:
templates/SESSION-STATE.mdtemplates/working-buffer.md
恢复层契约先写死
SESSION-STATE.md只使用仓库模板提供的简洁结构:当前任务、已完成、卡点、下一步、恢复信息- 不要写入
Task、Status、Owner、Last Updated、Cleanup Rule这类另一套 schema 字段 - 如果外部 skill 产出的是详细版字段:
Current Task合并到当前任务Status合并到已完成、卡点或下一步Owner、Last Updated、Cleanup Rule只在条目文本里按需保留,不扩展新标题
working-buffer.md是唯一的短期毛坯区- 其他 skill 如果也有 working buffer 概念,应复用这个文件
- 不要再创建第二份并行写入的 WAL / buffer 文件
MEMORY.md用于启动时快速参考memory/用于每日笔记和深度归档- 两者允许主题重叠,但检索顺序不同:先
SESSION-STATE.md,再 recent notes,再MEMORY.md/memory_search,最后再查归档
第四步:使用 Obsidian 原生笔记模板
# templates/OBSIDIAN-NOTE.md
---
title: ""
aliases: []
tags: []
type: memory
status: draft
source: ""
source_url: ""
created: 2026-03-21
updated: 2026-03-21
related: []
---
## Summary
- 一句话摘要
## Key Points
- ...
## Evidence
> ...
## Related Notes
- [[SESSION-STATE]]
- [[working-buffer]]
## Attachments / Embeds
- `![[image.png]]`
- `![[note#^block-id]]`
第五步:每次对话开始时
先读 SESSION-STATE.md,再读最近 1-3 天 daily notes,最后才做 memory_search。
memory_search(query="相关关键词")
就这么简单。后续优化可以慢慢加。
What ships with it
38 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- _meta.json 833 B
- docs/superpowers/plans/2026-03-21-agent-memory-system-guide-obsidian-native.md 5.3 KB
- docs/superpowers/plans/2026-03-25-memory-backup-import-export.md 3.9 KB
- docs/superpowers/plans/2026-03-25-memory-examples-maintenance.md 3.2 KB
- docs/superpowers/plans/2026-03-25-report-warning-example.md 1.9 KB
- docs/superpowers/plans/2026-03-26-import-clean-mode.md 8.6 KB
- docs/superpowers/plans/2026-03-26-metadata-bootstrap-safety.md 5.4 KB
- docs/superpowers/plans/2026-03-27-memory-positioning.md 2.6 KB
- docs/superpowers/plans/2026-03-27-report-json.md 5.5 KB
- docs/superpowers/specs/2026-03-21-agent-memory-system-guide-obsidian-design.md 5.1 KB
- docs/superpowers/specs/2026-03-25-memory-backup-import-export-design.md 3.1 KB
- docs/superpowers/specs/2026-03-25-memory-examples-maintenance-design.md 2.8 KB
- docs/superpowers/specs/2026-03-26-import-clean-mode-design.md 5.6 KB
- docs/superpowers/specs/2026-03-26-metadata-bootstrap-safety-design.md 5.0 KB
- docs/superpowers/specs/2026-03-27-memory-positioning-design.md 4.4 KB
- docs/superpowers/specs/2026-03-27-report-json-design.md 4.0 KB
- INSTALL.md 1.1 KB
- manifest.toml 944 B
- README_CN.md 12 KB
- README_EN.md 12 KB
- README.md 12 KB
- scripts/memory_capture.py 17 KB runs code
- templates/memory-capture.md 385 B
- templates/OBSIDIAN-NOTE.md 530 B
- templates/SESSION-STATE.md 137 B
- templates/working-buffer.md 105 B
- tests/test_gitignore_publish_artifacts.py 514 B runs code
- tests/test_install_contract.py 384 B runs code
- tests/test_memory_capture_contract.py 6.9 KB runs code
- tests/test_memory_capture_script.py 17 KB runs code
- tests/test_memory_recovery_contract.py 1.5 KB runs code
- tests/test_obsidian_contract.py 503 B runs code
- tests/test_obsidian_template_contract.py 183 B runs code
- tests/test_openclaw_memory_search_contract.py 366 B runs code
- tests/test_openviking_optional_contract.py 371 B runs code
- tests/test_readme_openviking_optional.py 383 B runs code
- tests/test_release_manifest_contract.py 1.3 KB runs code
- tests/test_skill_positioning_contract.py 849 B runs code
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.
- 9d ago First seen · 569 lines · 44 tokens per session scan A 95b379597ac8
Agent Memory System Guide is a skill published in the GitHub repository LeoYeAI/openclaw-master-skills (2,141 stars, last pushed 1mo ago), licensed MIT. It adds 44 tokens to every session and 5,594 once invoked, about $0.0002 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-09-03.
Other skills, from other repositories
openclaw-auto-dream
Cognitive memory architecture for OpenClaw agents — periodic dream cycles that consolidate daily logs into structured long-term memory with importance scoring, insights, and push notifications. Use when: user asks for 'auto memory', 'dream', 'auto-dream', 'memory consolidation', 'memory dashboard'. Powered by…
myclaw-backup
Backup and restore all OpenClaw configuration, agent memory, skills, and workspace data. Part of the MyClaw.ai (https://myclaw.ai) open skills ecosystem — the AI personal assistant platform that gives every user a full server with complete code control. Use when the user wants to create a snapshot of their OpenClaw…
memory
Search past conversations in the agent's history log.
cocoscout
Relevance-ranked context loading — Tier 2 async subagent (Haiku, <5s) that fires after Tier 1 deterministic checks in UserPromptSubmit. Injects ranked context from CocoGrove, CocoContext, Environment Inspector, Prompt Studio, and CocoDream.
cocohealth
Context utilization monitor — background monitor that samples context window utilization via PostToolUse hook, surfaces advisory at 60% and critical warning with recovery decision matrix at 70%.
pull-search
CocoPull session archive search — full-text search across past sessions. Handles $pull search " " with --since and --feature filters, and $pull index rebuild.