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

self-optimization自我优化

Agent Skill

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

总安装

4,176

周安装

174

GitHub Stars

公开资料未说明

下载量

1,392
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install self-optimization

简介

用于记录任务执行中的错误、用户纠正和经验缺口,实现持续改进。

  • 适合在 OpenClaw 中希望让 Agent 沉淀问题、修正最佳实践时使用。
  • 通过分析失败和纠正,转化为持久的技能优化。
  • 安装命令:openclaw skills install self-optimization。
  • 建议确认权限范围和维护状态,避免触发不必要的联网或文件操作。

SKILL.md

name
self-optimization
description
Turn mistakes, corrections, dead ends, and repeated fixes into durable improvements. Use when work reveals a non-obvious lesson, a recurring failure, a missing capability, or a rule that should be promoted into agent memory, workflow guidance, or a reusable skill.
metadata

Self-Optimization

Use this skill to close the loop after real work. The goal is not just to log what went wrong. The goal is to convert signal from mistakes, corrections, and repeated effort into stronger future behavior.

Core Loop

  1. Detect meaningful signal.
  2. Capture it in .learnings/.
  3. De-duplicate and link related entries.
  4. Promote stable patterns into durable guidance.
  5. Extract reusable skills when the pattern is broad and proven.

Quick Reference

SituationAction
Command, tool, or integration fails unexpectedlyAppend an entry to .learnings/ERRORS.md
User corrects the agent or provides missing factsAppend an entry to .learnings/LEARNINGS.md
A better repeatable approach is discoveredAppend an entry to .learnings/LEARNINGS.md
User asks for a missing capabilityAppend an entry to .learnings/FEATURE_REQUESTS.md
Same issue keeps reappearingLink entries, bump priority, and consider promotion
Pattern is stable across tasksPromote to AGENTS.md, CLAUDE.md, TOOLS.md, SOUL.md, or .github/copilot-instructions.md
Pattern is reusable beyond one repoExtract a new skill scaffold

Detection Triggers

Capture a learning when any of these happen:

  • The first attempt was wrong and needed correction.
  • A tool or command failed in a non-obvious way.
  • The user revealed a project convention that was not documented.
  • The agent discovered a stronger pattern than the one it started with.
  • The same workaround or warning has appeared more than once.
  • The user asked for a capability the current system does not provide.

Skip noisy one-off trivia. Capture things that would realistically save a future session time, confusion, or rework.

Log Files

Create a local .learnings/ directory in the workspace or in the OpenClaw workspace.

.learnings/
├── LEARNINGS.md
├── ERRORS.md
└── FEATURE_REQUESTS.md

LEARNINGS.md

Use for:

  • corrections
  • knowledge gaps
  • best practices
  • project conventions
  • improved workflows

Template:

## [LRN-YYYYMMDD-XXX] category

**Logged**: 2026-04-01T10:00:00Z
**Priority**: low | medium | high | critical
**Status**: pending
**Area**: frontend | backend | infra | tests | docs | config

### Summary
One-line statement of the lesson.

### Details
What was wrong, what changed, and what is now known to be correct.

### Suggested Action
What to do differently next time.

### Metadata
- Source: conversation | debugging | user_feedback | simplify-and-harden
- Related Files: path/to/file
- Tags: tag-a, tag-b
- See Also: LRN-20260401-001
- Pattern-Key: optional.stable.key
- Recurrence-Count: 1
- First-Seen: 2026-04-01
- Last-Seen: 2026-04-01

---

ERRORS.md

Use for:

  • command failures
  • exceptions
  • bad tool assumptions
  • API or integration breakage

Template:

## [ERR-YYYYMMDD-XXX] command_or_tool

**Logged**: 2026-04-01T10:00:00Z
**Priority**: medium
**Status**: pending
**Area**: backend | infra | tests | docs | config

### Summary
Short description of the failure.

### Error

Actual error output goes here.


### Context
- Command or action attempted
- Relevant inputs
- Environment details if useful

### Suggested Fix
What should be tried next or documented.

### Metadata
- Reproducible: yes | no | unknown
- Related Files: path/to/file
- See Also: ERR-20260401-001

---

FEATURE_REQUESTS.md

Use for:

  • missing tooling
  • automation requests
  • product gaps
  • missing agent behaviors

Template:

## [FEAT-YYYYMMDD-XXX] capability_name

**Logged**: 2026-04-01T10:00:00Z
**Priority**: low | medium | high
**Status**: pending
**Area**: frontend | backend | infra | tests | docs | config

### Requested Capability
What the user wanted.

### User Context
Why they wanted it.

### Complexity Estimate
simple | medium | complex

### Suggested Implementation
How it might be built or extended.

### Metadata
- Frequency: first_time | recurring
- Related Features: existing_feature

---

ID Format

Use TYPE-YYYYMMDD-XXX.

  • LRN for learning
  • ERR for error
  • FEAT for feature request

Examples:

  • LRN-20260401-001
  • ERR-20260401-002
  • FEAT-20260401-003

Promotion Rules

Promote an entry when it becomes more valuable as guidance than as a historical note.

TargetPromote When
CLAUDE.mdProject facts, conventions, or recurring gotchas
AGENTS.mdWorkflow rules, delegation patterns, automation steps
.github/copilot-instructions.mdRepo guidance that should reach Copilot
TOOLS.mdTool quirks, auth requirements, environment gotchas
SOUL.mdBehavioral or communication rules for OpenClaw sessions

Promotion checklist:

  1. Distill the learning into a short prevention rule.
  2. Add it to the right target file.
  3. Update the original entry status to promoted.
  4. Record where it was promoted.

Recurrence And Dedupe

Before creating a new entry for a familiar issue:

  1. Search .learnings/ for a related keyword or Pattern-Key.
  2. If a related item exists, link it with See Also.
  3. Increase Recurrence-Count and refresh Last-Seen.
  4. Escalate priority if the pattern is recurring and costly.

Recurring issues often mean one of three things:

  • documentation is missing
  • automation is missing
  • the architecture or workflow is inviting the same failure

When To Extract A Skill

Extract a reusable skill when the pattern is:

  • resolved and trustworthy
  • useful across multiple tasks
  • non-obvious enough to justify explicit guidance
  • portable beyond a single private incident

Use the helper:

./skills/self-optimization/scripts/extract-skill.sh my-new-skill --dry-run
./skills/self-optimization/scripts/extract-skill.sh my-new-skill

Then customize the generated SKILL.md and update the original learning entry with:

  • Status: promoted_to_skill
  • Skill-Path: skills/my-new-skill

Review Rhythm

Review .learnings/ at these checkpoints:

  • before major tasks
  • after finishing a feature or bugfix
  • when working in an area with previous failures
  • during periodic maintenance

Useful checks:

grep -h "Status\\*\\*: pending" .learnings/*.md | wc -l
grep -B5 "Priority\\*\\*: high" .learnings/*.md | grep "^## \\["
grep -l "Area\\*\\*: backend" .learnings/*.md

OpenClaw Setup

OpenClaw works especially well with this skill because workspace files and hooks let the improvement loop stay visible between sessions.

Install

clawdhub install self-optimization

Manual install:

git clone <your-fork-or-source-repo> ~/.openclaw/skills/self-optimization

This package is an OpenClaw-oriented evolution of the earlier self-learning workflow.

Hook Setup

Optional bootstrap reminder:

cp -r hooks/openclaw ~/.openclaw/hooks/self-optimization
openclaw hooks enable self-optimization

Workspace Layout

~/.openclaw/workspace/
├── AGENTS.md
├── SOUL.md
├── TOOLS.md
├── MEMORY.md
├── memory/
└── .learnings/
    ├── LEARNINGS.md
    ├── ERRORS.md
    └── FEATURE_REQUESTS.md

Hook Support For Other Agents

Claude Code / Codex

Use hook scripts in settings:

{
  "hooks": {
    "UserPromptSubmit": [{
      "matcher": "",
      "hooks": [{
        "type": "command",
        "command": "./skills/self-optimization/scripts/activator.sh"
      }]
    }],
    "PostToolUse": [{
      "matcher": "Bash",
      "hooks": [{
        "type": "command",
        "command": "./skills/self-optimization/scripts/error-detector.sh"
      }]
    }]
  }
}

GitHub Copilot

Add a reminder to .github/copilot-instructions.md:

## Self-Optimization

After solving non-obvious issues, consider:
1. Logging the lesson to `.learnings/`
2. Linking related recurring entries
3. Promoting stable rules into repo guidance
4. Extracting reusable skills when the pattern is broad

Best Practices

  1. Log signal, not noise.
  2. Prefer prevention rules over postmortems.
  3. Link related incidents instead of duplicating them.
  4. Promote broadly useful guidance quickly.
  5. Treat repeated friction as a systems problem, not just a note-taking problem.
  6. Review learnings before repeating the same class of work.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

84.07%
按下载量换算1,170

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills