用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/zeminroot/cheerclaw --skill memory命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
the public skill registry. When I lack a capability (e.g., news, web search), use this to find and install the needed skill from ClawHub.
Use it when the user requests code implementation. Coding workflow with planning, implementation, verification, and testing for clean software development.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
基于 SOC 职业分类
正在显示 SKILL.md
| name | memory |
| description | 双层记忆系统,基于 grep 检索召回记忆信息。 |
| always | true |
origin/origin_qas.jsonl — 最原始完整的交互日志。被截断,仅加载截断点之后的信息到上下文中。memory/HISTORY.md — 仅追加的事件日志。origin_qas.jsonl中截断点之前的事件摘要。不加载到上下文中。在需要历史记忆信息时使用 grep 风格工具搜索 或者 将历史信息加载到内存中过滤搜索。每条记录以 [YYYY-MM-DD HH:MM] 开头。memory/MEMORY.md — 精简的长期重要事实信息(个人信息、偏好、等)。始终加载到你的上下文中。优先使用 exec 工具进行关键字定向搜索memory/HISTORY.md获取大致信息和时间点。
如果搜索到的大致信息已经足够则直接使用。
如果搜索到的大致信息不够则扩大范围继续搜索或加时间点作为关键字搜索origin/origin_qas.jsonl。
在搜索过程中可以渐进式地扩大搜索范围,但禁止一次性读取memory/HISTORY.md或origin/origin_qas.jsonl全部信息到大模型上下文中。
搜索示例:
grep -i "keyword" memory/HISTORY.mdfindstr /i "keyword" memory\HISTORY.mdpython3 -c "from pathlib import Path; text = Path('memory/HISTORY.md').read_text(encoding='utf-8'); print('\n'.join([l for l in text.splitlines() if 'keyword' in l.lower()][-20:]))"使用 edit_file 或 write_file 立即写入重要事实:
当会话变得很大时,截断点之前的旧对话会自动汇总并追加到 HISTORY.md。长期重要事实会被提取到 MEMORY.md。你无需管理此过程。