بنقرة واحدة
memory
Two-layer memory system with Dream-managed knowledge files.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Two-layer memory system with Dream-managed knowledge files.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Inspect and optionally adjust the agent's runtime state. Use to check the current model or preset, context window, iteration progress and limits, token usage, workspace and tool configuration, subagent status, and request routing metadata such as channel, chat ID, and sender ID; diagnose unavailable capabilities; change allowed runtime settings; or store temporary session scratchpad values.
One-time setup wizard for the nanobot upgrade skill. Triggers: setup update, configure update, 切设置更新, 初始化更新.
Schedule reminders and recurring tasks.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Generate images and iteratively edit saved image artifacts.
Search and install agent skills from ClawHub, the public skill registry.
| name | memory |
| description | Two-layer memory system with Dream-managed knowledge files. |
| always | true |
SOUL.md — Bot personality and communication style. Managed by Dream. Do NOT edit.USER.md — User profile and preferences. Managed by Dream. Do NOT edit.memory/MEMORY.md — Long-term facts (project context, important events). Managed by Dream. Do NOT edit.memory/history.jsonl — append-only JSONL, not loaded into context. Prefer the built-in grep tool to search it.memory/history.jsonl is JSONL format — each line is a JSON object with cursor, timestamp, content.
grep(..., path="memory", glob="*.jsonl", output_mode="count") or the default files_with_matches mode before expanding to full contentoutput_mode="content" plus context_before / context_after when you need the exact matching linesfixed_strings=true for literal timestamps or JSON fragmentshead_limit / offset to page through long historiesexec only as a last-resort fallback when the built-in search cannot express what you needExamples (replace keyword):
grep(pattern="keyword", path="memory/history.jsonl", case_insensitive=true)grep(pattern="2026-04-02 10:00", path="memory/history.jsonl", fixed_strings=true)grep(pattern="keyword", path="memory", glob="*.jsonl", output_mode="count", case_insensitive=true)grep(pattern="oauth|token", path="memory", glob="*.jsonl", output_mode="content", case_insensitive=true)/dream-log command.