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

skill-self-evolution-enhancer技能自我进化强化剂

Agent Skill

skill-self-evolution-enhancer 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

32,926

周安装

1,345

GitHub Stars

公开资料未说明

下载量

10,652
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install skill-self-evolution-enhancer

简介

使任何技能获得自我进化能力,支持从反馈中持续学习优化。

  • 适用于用户要求增强技能自适应性或从历史交互中提炼经验。
  • 通过 clawhub 安装,使用 openclaw skills install skill-self-evolution-enhancer 命令。
  • 需确认权限范围和维护状态,避免触发非预期行为或数据泄露。
  • 建议在可控环境中测试进化逻辑后再投入生产使用。

SKILL.md

name
skill-self-evolution-enhancer
description
Enables any skill to gain self-evolution capabilities. Use when: (1) User asks to add self-evolution to a skill, (2) User wants a skill to learn from feedback and errors, (3) Scaling self-improvement to multiple skills with per-skill evolution logic. Outputs domain-specific .learnings/, EVOLUTION.md, and Review-Apply-Report workflow.
metadata

Skill Self-Evolution Enhancer

This skill enables other skills to gain self-evolution capabilities similar to self-improving-agent. A skill that originally has no self-evolution will, after enhancement, have: logging, learning from user feedback, promotion to rules, and a Review→Apply→Report loop—all tailored to its domain.

Quick Reference

StepAction
User requests evolution for skill XRead target skill's SKILL.md
Deep analysisIdentify capabilities, scenarios, evolution directions
Extract domainName, use cases, triggers, areas, promotion targets
Generate .learnings/Domain-specific LEARNINGS.md, ERRORS.md, FEATURE_REQUESTS.md
Generate EVOLUTION.mdTriggers, Review-Apply-Report, OpenClaw feedback rules
LanguageMatch target skill's user language (infer from SKILL.md)

When to Use

  • User says: "给 skill X 加上自进化能力" / "Add self-evolution to skill X"
  • Scaling self-improvement across many skills (each with its own evolution direction)
  • Target skill is non-coding (e.g., 洗稿能手, 电脑加速) and needs domain-specific triggers

Workflow

Step 1: Read Target Skill

Read(target_skill_path/SKILL.md)

Obtain path from user or infer (e.g., skills/xxx, ~/.cursor/skills/xxx).

Step 2: Deep Capability & Scenario Analysis

Before generating any config, analyze the target skill deeply:

Capabilities (what the skill does):

  • Primary outputs and workflows
  • Secondary or edge capabilities
  • Dependencies (tools, APIs, formats)

Scenarios (when and how it is used):

  • User personas
  • Typical tasks (e.g., 科普改写 vs 汇报改写)
  • Input/output patterns

Evolution directions (what can improve):

  • User feedback patterns (e.g., "改得不通顺" → style)
  • Failure modes (e.g., "优化无效" → strategy)
  • Recurring corrections → domain-specific rules

Use cases → infer from description, Quick Reference, examples

Step 3: Extract Domain Config

When reading the target skill, extract:

FieldWhere to FindExample
Domain namename in frontmatter, title洗稿能手, 电脑加速
Use cases / scenariosDescription, Quick Reference, examples科普、汇报、直播
Learning triggersUser feedback phrases in examples"改得不通顺", "不像口播", "风格不对"
Error triggersFailure modes"优化无效", "某些电脑不适用", "报错"
AreasOutput types, workflow stages文案/口播/短视频脚本, 或 系统优化/卡顿/报错
Promotion targetsSkill-specific rules{skill}-专属进化规则.md, {skill}-最佳实践.md

Language: Infer from SKILL.md content (Chinese vs English). Generate all output files in that language.

Use assets/DOMAIN-CONFIG-TEMPLATE.md to structure the extracted data.

Step 4: Generate .learnings/

Create inside target skill directory: target_skill_path/.learnings/

Structure (same as self-improving-agent):

  • .learnings/LEARNINGS.md
  • .learnings/ERRORS.md
  • .learnings/FEATURE_REQUESTS.md

Use templates from assets/; parameterize with domain areas, categories, promotion targets. Write in the target skill's language.

Step 5: Generate EVOLUTION.md

Create target_skill_path/EVOLUTION.md using assets/EVOLUTION-RULES-TEMPLATE.md.

Must include:

  • Quick Reference: domain triggers → actions
  • Review→Apply→Report loop (see below)
  • Detection triggers (when to log)
  • Promotion decision tree
  • Area tags
  • Domain-specific activation conditions (for hooks)
  • Experience invalidation / update rules (when user corrects again)

Step 6: Optional – Activator Script

If target skill has scripts/, add scripts/activator.sh with domain-specific reminder text. Adapt from self-improving-agent; replace generic prompts with domain triggers.

Review → Apply → Report Loop

The enhanced skill must use learnings, not only log them. Include this in EVOLUTION.md or the enhanced skill's instructions:

Before Task

  • Load relevant entries from .learnings/LEARNINGS.md (and ERRORS.md if applicable)
  • Filter by area, tags, or keywords
  • Note which entries apply to the current task

During Task

  • Apply learnings when relevant
  • Optionally annotate output: "本次参考了 [LRN-xxx]: ..." (or equivalent in target language)

After Task

  • Summarize for user: which learnings were used, what evolution result, what improvement
  • Let OpenClaw decide: per-use mention vs end-of-task summary

Example (Chinese): "本次改写了口播稿,参考了经验 [LRN-20250115-001](科普场景应避免过于书面),相比之前更口语化。"

Example (English): "Used learning [LRN-20250115-001] (avoid formal tone for科普) in this rewrite; output is more conversational than before."

User Preference vs Domain Best Practice

TypeStorageExample
User preferenceMEMORY.md (user-level)"This user prefers shorter sentences"
Domain best practice.learnings/LEARNINGS.md"科普场景应避免过于书面"

Evolution is driven by user feedback; log and promote based on user corrections and recurring patterns.

OpenClaw Active Feedback

Add to the enhanced skill or SOUL.md/AGENTS.md:

  • When using experience from .learnings/, briefly tell the user
  • At end of task, optionally summarize: evolution used, improvements
  • Let OpenClaw decide when to surface (per-use vs summary)

See references/openclaw-feedback.md for SOUL.md and AGENTS.md snippets.

Experience Invalidation & Update

When user corrects again after a learning was applied:

  • Add Contradicted-By: LRN-YYYYMMDD-XXX to the original entry
  • Mark Last-Valid or Status: superseded if the learning is no longer valid
  • Increment Recurrence-Count if the pattern recurs but the fix is different

Include in LEARNINGS template: Recurrence-Count, Last-Valid, Contradicted-By.

Domain Extraction Framework

Trigger Extraction

Learning triggers (user feedback → log to LEARNINGS.md):

  • Look for: "用户说", "when user says", example dialogs
  • Infer: common corrections, style mismatches, scene-specific preferences
  • Add generic fallbacks: "不对", "不是这样", "改一下"

Error triggers (failures → log to ERRORS.md):

  • Look for: "失败", "报错", "不适用", "when X fails"
  • Infer: environment-specific failures, edge cases
  • Add generic fallbacks: "操作失败", "未达到预期"

Area Mapping

Define 3–6 areas that partition the skill's scope. Use domain-specific areas, not coding areas.

Promotion Target Naming

  • {skill-name}-专属进化规则.md — evolution rules, style preferences
  • {skill-name}-最佳实践.md — best practices
  • {skill-name}-安全规范.md — safety constraints (e.g., 电脑加速)

Use kebab-case for skill name in filenames.

Logging Format (Reuse from Self-Improving-Agent)

ID format: LRN-YYYYMMDD-XXX, ERR-YYYYMMDD-XXX, FEAT-YYYYMMDD-XXX

Statuses: pending | in_progress | resolved | wont_fix | promoted | promoted_to_skill

For full entry formats, see the self-improving-agent skill's Logging Format section.

References

Source

  • Based on: self-improving-agent 3.0.1
  • Purpose: Enable any skill to gain self-evolution capabilities similar to self-improving-agent

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

87.84%
按下载量换算9,357

安全审计

VirusTotal

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills