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

danxbuidl-memory-distillerdanxbuidl 内存蒸馏器

Agent Skill

danxbuidl-memory-distiller 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,895

周安装

198

GitHub Stars

公开资料未说明

下载量

1,536
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install danxbuidl-memory-distiller

简介

记忆蒸馏器提炼用户偏好和工作规则为可复用提示块,提升交互一致性。

  • 适用于个性化助手、长期记忆维护或习惯优化场景。
  • 自动识别成功模式并编码进上下文,减少重复询问。
  • 需用户授权存储偏好数据,确保隐私和删除权合规。
  • danxbuidl-memory-distiller 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
memory-distiller
description
Distill repeated user preferences, successful patterns, and durable working rules into reusable memory notes or prompt-ready context blocks. Use when a user wants to capture habits, preserve preferences, summarize lessons from prior work, or convert raw conversation/task outcomes into structured memory.

Memory Distiller

Overview

Use this skill when the user wants to turn raw interaction history into stable, reusable memory. The goal is not to summarize everything. The goal is to keep only the parts that are durable enough to improve future work.

Read references/output-format.md when the user wants a structured output template, a prompt-ready context block, or a reusable memory profile format.

Read references/example-prompts.md when the user needs prompt examples, variation ideas, or help choosing the right invocation pattern.

Quick Start

If the user does not specify a format, default to this flow:

  1. extract candidate memories from the source material
  2. keep only durable and evidence-backed items
  3. rewrite them as future-facing rules
  4. return:

- stable preferences - working rules - anti-patterns - one short reusable context block

If the user already has a memory document, switch into review mode instead of rebuilding everything from scratch.

When To Use

Use this skill when the user asks to:

  • capture recurring preferences or habits
  • preserve successful working patterns
  • record constraints, defaults, or anti-patterns
  • turn task outcomes into future-facing rules
  • clean up or refine an existing memory/profile document
  • produce a compact context block for reuse in future prompts

Do not use this skill for:

  • one-off conversational summaries
  • temporary task state that will expire quickly
  • guesses about user preferences that are not supported by evidence
  • hidden or background memory injection into runtime code paths

Output Selection

Choose the narrowest output that matches the user's goal:

  • memory profile

- use when the user wants a compact long-term preference document

  • cleaned memory list

- use when the user already has notes and wants to remove weak items

  • prompt-ready context block

- use when the user wants a short block to reuse in future prompts

  • review and rewrite report

- use when the user wants to know what should be kept, rewritten, or removed

Read references/output-format.md before producing any structured output.

Core Rule

Only preserve information that looks durable.

Good candidates:

  • stable preferences
  • repeated defaults
  • persistent constraints
  • explicit dislikes
  • reusable procedures
  • recurring failure-avoidance rules

Weak candidates:

  • one-off requests
  • temporary deadlines
  • transient debugging state
  • personal guesses not explicitly supported by the source material

When a memory candidate is uncertain, mark it as tentative or exclude it.

Evidence Threshold

Prefer memories that are supported by one of these:

  • an explicit user statement
  • a repeated pattern across multiple examples
  • a successful workflow that clearly generalizes
  • a durable constraint that is unlikely to change soon

Prefer to exclude items that are supported only by:

  • one weak hint
  • a single accidental success
  • a temporary environment detail
  • a guess about personality or intent

Workflow

1. Gather source material

Start from the material the user provides or points to:

  • conversation excerpts
  • task outcomes
  • prior memory notes
  • preference documents
  • review summaries

If the source material is large, first compress it into candidate signals rather than copying everything forward.

2. Extract candidate memories

Look for statements that imply stable behavior, such as:

  • "always"
  • "prefer"
  • "do not"
  • "default to"
  • "use X when Y"
  • repeated successful patterns across multiple examples

Group candidates into a small set of categories:

  • preferences
  • defaults
  • constraints
  • anti-patterns
  • reusable procedures

When possible, tag each candidate mentally as one of:

  • confirmed
  • tentative
  • reject

3. Remove weak or noisy items

Drop any item that is:

  • purely situational
  • contradicted by newer evidence
  • too vague to be useful
  • likely to cause bad prompt injection if reused blindly

Prefer precision over recall. A small memory set with strong signal is better than a large noisy list.

4. Rewrite into future-facing rules

Rewrite valid items as clear, reusable guidance.

Prefer forms like:

  • "Prefer concise technical explanations."
  • "Use JSON output when the user asks for machine-readable results."
  • "Avoid storing one-off operational incidents as durable preferences."

Avoid forms like:

  • "The user once asked..."
  • "Yesterday they said..."
  • "Maybe they prefer..."

5. Produce the requested output

Choose the narrowest useful output for the user:

  • memory profile
  • cleaned memory list
  • prompt-ready context block
  • review of existing memory quality

If the user does not specify a format, default to:

  1. Stable preferences
  2. Working rules
  3. Anti-patterns
  4. A short reusable context block

Examples

Example: conversation to profile

If the source says:

  • "Please keep answers concise."
  • "I prefer JSON when I ask for structured output."
  • "Do not add long background explanations unless I ask."

The distilled result should look like:

  • Prefer concise responses by default.
  • Use JSON when the user explicitly asks for structured output.
  • Avoid long background explanations unless requested.

Example: task outcomes to rules

If repeated successful tasks show:

  • good results when output is checklist-based
  • repeated failures when assumptions are not surfaced

The distilled result should look like:

  • Prefer checklist-style outputs for execution-heavy tasks.
  • Surface assumptions explicitly before committing to a plan.

Example: weak candidate to exclude

If the only evidence is:

  • "Yesterday the user wanted a long poetic answer."

Do not convert that into a durable preference unless there is more support.

Output Guidance

When producing memory content:

  • keep wording concise
  • keep claims evidence-based
  • prefer durable rules over narrative summaries
  • avoid hidden assumptions about the user
  • separate "confirmed" from "tentative" when needed

If a prompt-ready context block is requested, keep it short enough that it can realistically be reused without bloating future prompts.

Safety And Quality

  • Do not invent personal traits or preferences.
  • Do not retain sensitive details unless the user clearly wants them preserved.
  • Do not turn one failure into a permanent rule without evidence that it is recurring.
  • When in doubt, exclude the item or mark it tentative.
  • Prefer omission over noisy memory.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

96.26%
按下载量换算1,479

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills