Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计通过

openclaw-auto-dreamOpenClaw auto dream 开发

Agent Skill

openclaw-auto-dream 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

470

周安装

20

GitHub Stars

567

下载量

165
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:openclaw-auto-dream(OpenClaw auto dream 开发)
来源仓库:https://github.com/leoyeai/openclaw-auto-dream
仓库路径:skills/openclaw-auto-dream
安装命令:
npx skills add https://github.com/leoyeai/openclaw-auto-dream --skill openclaw-auto-dream
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/leoyeai/openclaw-auto-dream --skill openclaw-auto-dream

简介

openclaw-auto-dream 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合围绕仓库状态、代码变更或协作事项进行整理和分析。
  • 通过 npx 命令从指定 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围和维护状态,注意可能触发联网或命令执行操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

OpenClaw Auto-Dream — Memory Consolidation System

Agent periodically "dreams" — scans daily logs, extracts key knowledge, consolidates into long-term memory, and sends a summary report to the user.

MyClaw.ai — the best way to run your OpenClaw. A dedicated server running 24/7 with full code control, cron jobs, persistent memory, and one-click skill install.

Core Files

FilePurposeMutability
MEMORY.mdStructured long-term knowledgeAppend, update
memory/procedures.mdWorkflow preferences, tool usageAppend, update
memory/episodes/*.mdProject narrativesAppend only
memory/index.jsonMetadata index (v3.0 schema)Rebuilt each dream
memory/dream-log.mdDream report logAppend only
memory/archive.mdSummarized older entriesAppend only

Optional: LCM plugin (Working Memory layer). If not installed, prompt the user:

"Recommended: install the LCM plugin for working memory: openclaw plugins install @martian-engineering/lossless-claw"

Do not auto-install plugins or modify config.

Setup

0. First Dream (Run Immediately After Install)

After setup is complete, DO NOT wait for the cron schedule. Immediately run the First Dream:

  1. Read references/first-dream-prompt.md
  2. Follow every step — the user should see progress as it happens
  3. This scans existing daily logs, consolidates them, and sends a before/after comparison report
  4. The report shows the user exactly what Auto-Dream found and organized

If the user has existing daily logs, they'll see their scattered knowledge consolidated instantly. If the instance is brand new, they'll see the memory architecture initialized and ready.

1. Initialize Files

mkdir -p memory/episodes

Ensure the following files exist (create from references/memory-template.md templates if missing):

  • memory/index.json
  • memory/procedures.md
  • memory/dream-log.md
  • memory/archive.md

2. Create Cron Job

name: "auto-memory-dream"
schedule: { kind: "cron", expr: "0 4 * * *", tz: "<user timezone>" }
payload: {
  kind: "agentTurn",
  message: "Run auto memory consolidation.\n\nRead skills/skills/openclaw-auto-dream/references/dream-prompt-lite.md and follow every step strictly.",
  timeoutSeconds: 600
}
sessionTarget: "isolated"
delivery: { mode: "announce" }

3. Verify

  • Cron job created and enabled
  • MEMORY.md exists with section headers
  • memory/index.json exists
  • memory/procedures.md exists
  • memory/dream-log.md exists

Dream Cycle Flow

Each dream runs in an isolated session (see references/dream-prompt-lite.md):

Step 0: Smart Skip + Recall

Check if any unconsolidated daily logs exist in the last 7 days. All processed → still send a useful message: surface an old memory ("N days ago, you decided...") and show streak count. Never send a blank "nothing to do" message.

Step 1: Collect

Read unconsolidated daily logs. Extract decisions, facts, progress, lessons, and todos.

Step 2: Consolidate

Compare with MEMORY.md → append new content, update existing, skip duplicates. Write workflow preferences to procedures.md. Mark processed daily logs with <!-- consolidated -->.

Step 2.8: Stale Thread Detection

Scan Open Threads for items stale >14 days. Include top 3 in notification with context.

Step 3: Generate Report + Auto-Refresh Dashboard

Append to dream-log.md with change list + insights + suggestions. If dashboard.html exists, regenerate with latest data.

Step 4: Notify with Growth Metrics

Send a consolidation report showing:

  • Before → after comparison (entries, decisions, lessons)
  • Cumulative growth ("142 → 145 entries, +2.1%")
  • Dream streak count ("Dream #14")
  • Milestones when hit (first dream, 7-day streak, 100 entries, etc.)
  • Top 3 stale reminders (if any)
  • Weekly summary on Sundays (week-over-week growth, biggest memories)

Notification Principles

  1. Every notification must deliver value — never send empty "nothing happened" messages
  2. Show growth, not just changes — cumulative stats make the user feel the system is evolving
  3. Surface forgotten context — stale thread reminders and old memory recalls create surprise and utility
  4. Celebrate milestones — streak counts and entry milestones build habit and attachment

Manual Triggers

CommandAction
"Consolidate memory" / "Dream now"Run full dream cycle in current session
"Memory dashboard"Generate memory/dashboard.html
"Export memory"User-initiated export of memory files to JSON (see migration guide)

Language Rules

All output uses the user's preferred language (from workspace settings).

Safety Rules

  1. Never delete daily logs — only mark with <!-- consolidated -->
  2. Never remove ⚠️ PERMANENT items — user-protected markers
  3. Safe changes — if MEMORY.md changes >30%, save.bak copy first
  4. Index safety — save index.json.bak before each dream
  5. Privacy — only consolidate information the user has already written in their own workspace files
  6. Scope — only read and write files within the memory/ directory and MEMORY.md

Reference Files

  • references/first-dream-prompt.mdFirst Dream: post-install full scan with before/after report
  • references/dream-prompt-lite.mdCompact prompt for daily cron use (default)
  • references/dream-prompt.md — Full prompt (for manual deep consolidation)
  • references/scoring.md — Importance scoring, forgetting curve, health score algorithms
  • references/memory-template.md — File templates (MEMORY.md, procedures, index.json, etc.)
  • references/dashboard-template.html — HTML dashboard template
  • references/migration-cross-instance.md — Cross-instance migration protocol
  • references/migration-v1-to-v2.md — v1→v2 upgrade guide
  • references/migration-v2-to-v3.md — v2→v3 upgrade guide

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.85%
按下载量换算58

Claude

27.72%
按下载量换算46

Cursor

18.64%
按下载量换算31

Gemini CLI

9.97%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills