Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计提醒

claw-self-improving-plus爪自强加

Agent Skill

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

总安装

10,992

周安装

449

GitHub Stars

公开资料未说明

下载量

3,520
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install claw-self-improving-plus

简介

claw-self-improving-plus 将原始错误转化为结构化学习案例。

  • 适合保守型改进策略,聚焦可验证经验沉淀。
  • 输出晋升候选人列表供人工筛选参考。
  • 安装命令:openclaw skills install claw-self-improving-plus;需分类存储权限。
  • 建议设定阈值过滤低价值反馈。

SKILL.md

name
claw-self-improving-plus
description
Turn raw mistakes, corrections, discoveries, and repeated decisions into structured learnings and promotion candidates. Use when the user wants a conservative self-improvement workflow that captures lessons, scores reuse value, deduplicates similar learnings, drafts anchored candidate patches for SOUL.md, AGENTS.md, TOOLS.md, or MEMORY.md, reviews them through an approval step, and keeps human control before any long-term file edits.

Claw Self Improving Plus

Build a conservative learning pipeline. Optimize for signal, not clutter.

Core stance

Do not auto-rewrite long-term memory or behavior files by default.

Use this flow:

  1. Capture raw learning candidates.
  2. Normalize them into a structured schema.
  3. Score each item for promotion value.
  4. Detect duplicates or merge candidates.
  5. Consolidate repeated learnings into stronger records.
  6. Build a prioritized learning backlog.
  7. Draft anchored candidate patches.
  8. Review patches with human approval.
  9. Apply only approved patches.

Learning types

Use these types:

  • mistake: the agent did something wrong
  • correction: the user corrected a wrong assumption or behavior
  • discovery: a useful fact about environment, tools, preferences, or workflow
  • decision: a durable preference, policy, or chosen design
  • regression: a known failure mode that should not recur

Minimal record schema

Store each learning candidate as JSON with these fields:

  • id: stable slug or timestamped id
  • timestamp
  • source
  • type
  • summary
  • details
  • evidence
  • confidence
  • reuse_value
  • impact_scope
  • promotion_target_candidates
  • status
  • related_ids

Default enums:

  • confidence: low|medium|high
  • reuse_value: low|medium|high
  • impact_scope: single-task|project|workspace|cross-session
  • status: captured|scored|merged|promoted|rejected

Routing rules

Promote by destination, not vibes:

  • SOUL.md: durable style, personality, voice rules
  • AGENTS.md: operating rules, workflows, safety/process lessons
  • TOOLS.md: environment-specific commands, paths, model/tool preferences
  • MEMORY.md: important long-term facts about user, projects, decisions, history
  • daily/raw store only: low-confidence or highly local observations

If a learning does not clearly deserve promotion, keep it in the raw log.

Scoring heuristic

Score each record on five dimensions:

  1. reuse_value: will this help again?
  2. confidence: how well supported is it?
  3. impact_scope: how broadly does it matter?
  4. promotion_worthiness: should it become a lasting rule or memory?
  5. promotion_target_candidates: where should it go if promoted?

Use this practical rubric:

  • High promotion priority: repeated mistake, explicit user preference, environment fact that breaks tasks, regression with real cost
  • Medium priority: useful workflow pattern seen more than once
  • Low priority: one-off trivia, speculative interpretation, emotional noise, temporary state

Anchored patch generation

Prefer anchored insertion or exact replacement over blind append.

Each patch may contain:

  • target_file
  • anchor
  • insert_mode
  • old_text
  • new_text
  • suggested_entry
  • approved
  • review_status

Use exact replacement when the old text is known. Use anchored insertion when the destination section is known. Use append only as fallback.

Learning store layout

Use a stable .learnings/ structure. See references/learning-store-layout.md.

Recommended files:

  • .learnings/inbox.jsonl
  • .learnings/scored.jsonl
  • .learnings/merge.json
  • .learnings/patches.json
  • .learnings/apply-report.json
  • .learnings/archive/

Default workflow

1. Capture

Append raw learnings into .learnings/inbox.jsonl.

Use scripts/capture_learning.py to create normalized records.

2. Score

Run scripts/score_learnings.py on the inbox or a batch export.

3. Review duplicates

Run scripts/merge_candidates.py to group likely duplicates.

4. Draft patches

Run scripts/draft_patches.py to produce anchored reviewable patch candidates.

5. Review

Use scripts/review_patches.py to list, approve, reject, or skip candidates.

Examples:

python scripts/review_patches.py .learnings/patches.json list
python scripts/review_patches.py .learnings/patches.json act --index 1 --action approve
python scripts/review_patches.py .learnings/patches.json act --index 2 --action reject --note "too vague"

6. Apply only after approval

Run scripts/apply_approved_patches.py.

This script only applies entries explicitly approved. It validates allowed targets, supports --dry-run, skips duplicate entries already present, and prefers exact replacement, then anchored insertion, then append fallback.

Output style

When reporting results, use this structure:

  • new_candidates: count
  • high_priority: count
  • merge_groups: count
  • patch_candidates: short bullet list
  • needs_human_review: yes

Resources

References

  • Scoring rubric: see references/scoring-rubric.md
  • Patch target guide: see references/promotion-targets.md
  • Learning store layout: see references/learning-store-layout.md

Scripts

  • scripts/capture_learning.py
  • scripts/score_learnings.py
  • scripts/merge_candidates.py
  • scripts/draft_patches.py
  • scripts/detect_patch_conflicts.py
  • scripts/consolidate_learnings.py
  • scripts/build_backlog.py
  • scripts/age_backlog.py
  • scripts/review_backlog.py
  • scripts/check_existing_promotions.py
  • scripts/review_patches.py
  • scripts/render_review.py
  • scripts/apply_approved_patches.py
  • scripts/archive_batch.py
  • scripts/run_pipeline.py

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

87.4%
按下载量换算3,076

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills