Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计提醒

auto-skill-distiller自动技能蒸馏器

Agent Skill

auto-skill-distiller 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,791

周安装

114

GitHub Stars

公开资料未说明

下载量

903
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install auto-skill-distiller

简介

auto-skill-distiller 自动将成功的工作流程提炼成可重用的技能。

  • 适合在 OpenClaw 中需要让 Agent 承接开发相关任务,如评估工作流时使用。
  • 可通过三角验证评估是否应将多步骤任务保存为技能,提升开发效率。
  • 安装命令:openclaw skills install auto-skill-distiller;需确认权限范围和维护状态。
  • 注意是否会触发联网、命令执行或文件读写操作,建议结合原始 README 核验具体用法。

SKILL.md

name
skill-distiller
description
Auto-distill successful workflows into reusable skills. Use after completing any multi-step task to evaluate if the workflow should be saved as a skill. Triggers on: 'distill this', 'save as skill', 'make this reusable', or automatically at the end of complex tasks when compound learning is enabled. Evaluates task novelty, success, and reuse potential before generating a standard SKILL.md. Prevents skill bloat through quality gates.

Skill Distiller

Turn successful workflows into reusable skills — automatically.

Inspired by Hermes Agent's learning loop, but with quality gates to prevent skill bloat.

When to Distill

Not every task deserves a skill. Evaluate these three criteria:

All three must be YES to proceed:

  1. Novel? — Did this task require a workflow you haven't done before? (If you already have a skill for this, update it instead of creating a new one)
  2. Successful? — Did the task complete with verified results? (Failed tasks produce lessons, not skills — write to memory/lessons-learned.md instead)
  3. Reusable? — Will this exact workflow likely be needed again? (One-off tasks don't need skills)

Quick scoring:

Novel + Successful + Reusable = CREATE SKILL
Novel + Successful + One-off  = WRITE TO MEMORY (lesson learned, not a skill)
Novel + Failed                = WRITE TO LESSONS-LEARNED
Not Novel                     = UPDATE EXISTING SKILL (or skip)

Distillation Process

Step 1: Extract the Workflow

Look back at what you just did and identify:

  • Trigger: What kind of request started this? (pattern, not specific instance)
  • Steps: What were the key steps, in order?
  • Tools: Which tools were used and how?
  • Decisions: What non-obvious choices were made and why?
  • Gotchas: What almost went wrong or required retry?

Step 2: Generalize

Transform the specific instance into a reusable pattern:

  • Replace specific file names with <input_file>, <output_path> etc.
  • Replace specific content with descriptions of what goes there
  • Extract magic numbers into named parameters
  • Identify which steps are always needed vs. conditional

Bad (too specific):

1. Read ch10-multi-agent-comm-patterns.md
2. Convert markdown to docx using python-docx
3. Upload to feishu folder nodcnxdXVfsiCVDuiigFVpnCPoc

Good (generalized):

1. Read source markdown file(s)
2. Convert to docx using python-docx (see references/docx-patterns.md)
3. Upload to target feishu folder

Step 3: Write SKILL.md

Generate the skill following the standard format:

---
name: <slug>
description: "<when to use this skill — be specific about triggers>"
---

# <Skill Name>

## When to Use
<1-2 sentences on the trigger pattern>

## Workflow
<Numbered steps — the core of the skill>

## Key Decisions
<Non-obvious choices and their rationale>

## Gotchas
<Things that can go wrong and how to handle them>

## References
<Links to detailed docs if needed>

Size target: SKILL.md body should be under 200 lines. If longer, split into SKILL.md (workflow) + references/ (details).

Step 4: Quality Check

Before saving, verify:

  • [ ] Description clearly states when this skill should trigger
  • [ ] Steps are ordered and each has a clear action
  • [ ] No hardcoded values that should be parameters
  • [ ] Gotchas are specific, not generic ("handle errors properly" = useless)
  • [ ] Doesn't duplicate an existing skill (check ls ~/.openclaw/skills/)

Step 5: Save and Register

Save to ~/.openclaw/skills/<slug>/SKILL.md.

If the skill has reference materials, save them to ~/.openclaw/skills/<slug>/references/.

After saving, verify the skill loads:

ls ~/.openclaw/skills/<slug>/SKILL.md

Automatic Distillation Mode

When integrated with trinity-harness's Layer 3 (Compound), distillation happens automatically:

  1. Task completes → Layer 3 Compound phase triggers
  2. Evaluate Novel + Successful + Reusable
  3. If all YES → run distillation process
  4. If NO → write lesson to memory instead
  5. Announce to user: "Distilled skill: <name>. Review with read ~/.openclaw/skills/<slug>/SKILL.md"

Never auto-distill silently. Always announce what was created so the user can review, edit, or delete.

Skill Maintenance

Update vs. Create

Before creating a new skill, check if a related one exists:

ls ~/.openclaw/skills/ | grep -i <keyword>

If a similar skill exists, update it (add the new pattern as a variant) rather than creating a near-duplicate.

Pruning

Periodically (during Dream Task), review skills:

  • Skills unused for 30+ days → candidate for archival
  • Skills with overlapping triggers → merge
  • Skills that have been superseded → mark deprecated

Anti-Patterns

Don'tWhyDo Instead
Distill every taskSkill bloat, noise drowns signalApply the 3-question gate
Include conversation historyWastes tokens, not reusableExtract only the workflow pattern
Write vague gotchas"Be careful" helps no oneSpecific: "API X returns 429 after 3 concurrent requests"
Hardcode paths/namesNot portableUse <parameter> placeholders
Skip quality checkGarbage skills waste future contextAlways verify before saving

Integration with Memory System

Distillation complements, not replaces, the memory system:

OutputGoes toWhen
Reusable workflow~/.openclaw/skills/<slug>/SKILL.mdNovel + Successful + Reusable
Lesson learnedmemory/lessons-learned.mdSuccessful but one-off, or failed
Quick notememory/YYYY-MM-DD.mdRoutine observations
Core insightMEMORY.mdFundamental principle change

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

85.22%
按下载量换算770

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills