원클릭으로
memory
Layered workspace memory — facts, structured event/focus, and grepable history.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Layered workspace memory — facts, structured event/focus, and grepable history.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
A-share (沪深) investment assistance using akshare_stock and akshare_stock_technical — fundamentals, technicals, sector context, and decision framing (not financial advice).
Use the browser to search the web, log into websites, or extract live page content using spawn_browser_interactive_task.
Search and install agent skills from ClawHub, the public skill registry.
Retrieve current user's friends and assistant profiles (friend name/signature/preferences + assistant nickname/intro/baseUrl) from customer_service APIs. Use when user asks to inspect or export social/contact profile data.
Unified group creation skill supporting multiple friends and assistants, with optional first message sending.
Schedule reminders and recurring tasks.
| name | memory |
| description | Layered workspace memory — facts, structured event/focus, and grepable history. |
| always | true |
| File | Role | In system prompt |
|---|---|---|
memory/MEMORY.md | Long-term facts (preferences, project context, relationships). | Yes — always loaded when non-empty. |
memory/EVENT_MEMORY.md | Structured event / focus memory (显性/隐性关注点、时间线、演化). | Yes — always loaded when non-empty (same pipeline as MEMORY.md). |
memory/HISTORY.md | Append-only event/decision log. | No — search on demand (grep / exec). Each entry should start with [YYYY-MM-DD HH:MM]. |
templates/memory/EVENT_MEMORY.md into memory/EVENT_MEMORY.md when the user (or you) wants structured tracking of what the user is focused on across sessions — not only raw facts in MEMORY.md.Follow the template sections:
CF-*).compress_session tool: summarizes the unconsolidated chat tail and replaces it in the session JSONL only — it does not write MEMORY.md or HISTORY.md.save_memory pipeline. It does not fill EVENT_MEMORY.md. You maintain EVENT_MEMORY.md with edit_file / write_file when the skill applies.HISTORY.md is not injected into the prompt; use search when it grows.
Choose the method by file size:
read_file, then filter in memory.HISTORY.md: use exec for targeted search.Examples:
grep -i "keyword" memory/HISTORY.mdfindstr /i "keyword" memory\HISTORY.mdpython -c "from pathlib import Path; p=Path('memory/HISTORY.md'); ..."Prefer targeted CLI search for large logs. For EVENT_MEMORY.md, the model usually already sees it in context; use grep only if you must search a copy or an archived export.
MEMORY.md — Important durable facts as soon as they are stable:
HISTORY.md — Session archival and grep-friendly narrative (often filled by consolidation). You normally do not hand-edit unless adding a manual note.
EVENT_MEMORY.md — When you need a focus-centric view (topic shifts, multi-session threads, explicit vs inferred intent):
When the session grows large, token-based archival writes to HISTORY.md and MEMORY.md. The compress_session tool only trims the session log; use memory_update or edit_file if you want those files updated manually. You do not need to duplicate archival into EVENT_MEMORY.md unless you are maintaining the structured focus model.