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。你无需管理此过程。