Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

memory-distiller记忆蒸馏器

Agent Skill

memory-distiller 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 OpenClaw 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

13,830

周安装

588

GitHub Stars

公开资料未说明

下载量

4,845
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:memory-distiller(记忆蒸馏器)
来源仓库:https://github.com/zcyynl/memory-distiller
安装命令:
openclaw skills install memory-distiller
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install memory-distiller

简介

memory-distiller 自动提取对话中的见解、更正与偏好,转化为持久记忆供代理学习。

  • 适用于 OpenClaw 中希望代理持续改进、减少重复错误的长期训练场景。
  • 能从每个交互阶段沉淀经验,形成“潜意识”式知识积累机制。
  • 安装命令为 openclaw skills install memory-distiller,需读取完整对话历史权限。
  • 使用前应设定过滤规则,防止无关噪声进入记忆系统影响决策质量。

SKILL.md

name
memory-distiller
version
1.0.0
description
OpenClaw's subconscious. Automatically distills conversation insights, corrections, and preferences into durable memory. The agent that learns from every session — so you never have to repeat yourself.
author
zcyynl

memory-distiller 🧠

The subconscious of your OpenClaw agent. Automatically distills fleeting conversation moments into permanent wisdom.

Most agents wake up blank. memory-distiller changes that — it automatically identifies what's worth remembering during each conversation, writes it to persistent memory files, and creates a true learning loop. Your agent gets smarter every session.


Why You Need It

OpenClaw natively has MEMORY.md and memory/YYYY-MM-DD.md, but updating them requires manual effort.

The problem: You correct the agent, it says "got it", and makes the same mistake next session.

memory-distiller closes this loop:

  • Automatically scans conversations for "worth remembering" signals
  • Applies a quality gate to filter out one-time, temporary information
  • Writes structured entries to memory files automatically

How It Fits With proactive-agent

SkillRoleResponsibility
proactive-agentButlerReal-time detail capture (WAL), proactive behaviors, Heartbeat
memory-distillerHistorianPost-conversation reflection, distilling lessons into long-term memory

One line: proactive-agent owns the present. memory-distiller owns the future.


Trigger Conditions

Auto-Triggers (scan every user message for these signals)

TypeSignal WordsExample
🔴 Correction"wrong", "not right", "no, I meant", "actually", "stop doing""No, that command is wrong"
💚 Preference"I prefer", "always use", "don't use", "from now on", "by default""Always send reports as attachments"
💡 Insight"the issue was", "turns out", "the key is", "got it", "solved""Turns out Feishu doesn't render Markdown"
📌 Explicit"remember this", "save this", "note that", "write this down""Remember this config"

Manual Trigger

When the user says any of the following, immediately distill the session:

"remember this" / "save this" / "note that"
"write down what we just learned" / "distill this session"

Quality Gate (All 4 Must Pass)

Before writing anything, check these 4 gates:

  1. Durability — Will this still be valuable in 24 hours? (Skip one-time context)
  2. Generality — Is this a reusable rule, or a one-off special case? (Prefer rules)
  3. Novelty — Does MEMORY.md already contain this? (Avoid duplicates; update if stale)
  4. Actionability — Can this guide future behavior? (Skip vague impressions; only concrete rules)

Don't record (examples):

  • "Today we researched LangChain" → one-time, no guidance value
  • "User is in Shanghai" → already in USER.md, duplicate

Do record (examples):

  • "clawhub install only accepts slugs, not GitHub URLs" → actionable rule
  • "Feishu chat does NOT render Markdown — long reports must be sent as attachments or doc links" → prevents repeated mistakes

Memory Write Format

Where to Write

Content TypeTarget File
Today's new discoveries, lessonsmemory/YYYY-MM-DD.md
Important rules, persistent preferencesMEMORY.md (relevant section)
User personal info / preferencesUSER.md

Entry Format

### 🧠 Auto-Learned [YYYY-MM-DD HH:MM]
- **Type:** Correction / Preference / Insight / Explicit
- **Trigger:** One sentence explaining what triggered this
- **Rule:** Specific, actionable rule that can directly guide future behavior

Example:

### 🧠 Auto-Learned [2026-03-02 00:30]
- **Type:** Correction
- **Trigger:** User corrected the install command format
- **Rule:** `clawhub install` only accepts slugs (e.g. claw-multi-agent), not GitHub URLs

Execution Flow

User message arrives
    ↓
Scan for trigger signals (Correction / Preference / Insight / Explicit)
    ↓
Signal detected?
    ├─ No  → Reply normally, no action
    └─ Yes → Apply quality gate
                ↓
            All 4 gates pass?
                ├─ No  → Discard, reply normally
                └─ Yes → Distill into structured memory entry
                            ↓
                        Write to target file
                            ↓
                        Reply normally
                        (silent unless explicitly triggered)

Behavioral Rules

When to Notify the User

  • Auto-triggered → Write silently, do NOT say "I've noted that" — don't interrupt the flow
  • Explicitly triggered → Confirm with one line: "✅ Noted." + brief summary of what was recorded

When NOT to Record

  • User says "suppose...", "hypothetically...", "for example..." → hypothetical, skip
  • System errors, network timeouts → environment issues, not learnable rules
  • Content already fully documented in MEMORY.md → don't duplicate; update if stale

Privacy Filter

Never write the following to any memory file, even if the user asks:

  • Passwords, tokens, API keys
  • Personal identification info (ID numbers, bank accounts, etc.)
  • Sensitive information about third parties

Installation

npx clawhub@latest install memory-distiller

Zero configuration. Restart your OpenClaw session after installation.


Recommended Pairing

SkillPurpose
proactive-agentReal-time WAL protocol + proactive behaviors
memory-distillerPost-conversation automatic experience distillation (this skill)

Together: never lose present details, never repeat past mistakes.


Design Philosophy

Inspired by Claudeception (a Claude Code self-learning plugin), redesigned from scratch for OpenClaw's architecture and memory model.

Core belief:

An agent should never be tripped up by the same problem twice.

Every correction is a learning opportunity. memory-distiller ensures none of them go to waste.

Academic foundation: Voyager (2023), CASCADE (2024), SEAgent (2025), Reflexion (2023) — all point to the same conclusion: agents that persist and reflect on their learning dramatically outperform those that start fresh every time.


*Designed with 🐝 claw-multi-agent — 3 parallel agents, 28s*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

70.3%
按下载量换算3,406

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills