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

self-learning-feedback自学反馈

Agent Skill

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

总安装

724

周安装

29

GitHub Stars

公开资料未说明

下载量

234
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/proftrader/openclaw-self-learning-skill --skill self-learning-feedback

简介

self-learning-feedback 用于记录任务执行中的错误、纠正和经验沉淀。

  • 适合希望 Agent 持续改进问题处理和最佳实践的场景。
  • 通过 npx skills add 命令安装,建议结合原始 README 了解具体用法。
  • 安装前应确认权限范围和维护状态,避免触发文件读写或网络请求。
  • 涉及经验存储时应注意数据边界和隐私保护。

SKILL.md

Self-Learning Feedback

Purpose

Use this skill to create recursive learning after each completed task or cron job without disrupting user flow.

Defaults

  • GOOD_APPROVAL_TARGET = 10
  • SLIGHT_MAX_ITERATIONS = 5
  • MEDIUM_MAX_ITERATIONS = 10
  • SEVERE_MAX_ITERATIONS = 20

If the user explicitly asks for a different threshold (for example 20 good approvals), update only GOOD_APPROVAL_TARGET.

When To Trigger

Trigger after a clear completion point:

  • A discrete task was completed.
  • A cron job execution and response was completed.

Identify task type/context from the request (e.g. cron job name, report type, command, or goal) so that good-approval counters and issue signatures can be scoped correctly.

Do not trigger:

  • Mid-task.
  • During a multi-step process before a natural completion point.
  • More than once for the same completion event.

Non-Intrusive Feedback Prompt

After completion, send one short feedback prompt:

Task completed. Was this good or does it need improvement?

Keep prompt length to 1-3 lines.

Feedback Branches

Branch A: User says "Good"

  1. In the same turn, ask: What was good about this output?
  2. Capture the user's positive signal (quality, format, style, speed, clarity, etc.).
  3. Increment the consecutive good-approval counter for this task type/context (e.g. same cron job, same report type, same command). If the user had said "Needs improvement" on a previous task, the counter for that context was already reset—only consecutive "good" answers count toward the target.
  4. Repeat this learning behavior on every future completion of the same task type until the counter reaches GOOD_APPROVAL_TARGET.
  5. Once target is reached, treat pattern as learned and reduce prompt frequency:

- Ask "what was good" only when task type changes, quality drops, or periodic recalibration is needed.

  1. Counter reset: If the user says "Needs improvement" for this task type/context, reset the good-approval counter to 0 for that context so that the next "good" answers start a new consecutive run toward the target.

Branch B: User says "Needs improvement"

Run a structured learning loop using multiple-choice questions first, then free-text refinement.

  1. Collect improvement intent in three dimensions:

- Why it needs improvement. - How it should be improved. - What context/styling should change.

  1. Ask for examples if possible.
  2. Classify severity and set iteration cap.
  3. Resolve with web research and iterative reasoning.
  4. Apply changes in the next similar output.
  5. Ask feedback again after completion.

Multiple-Choice Collection Template

Use AskQuestion when available.

Why It Needs Improvement

Options:

  • Incorrect or incomplete result
  • Wrong format or structure
  • Too slow or inefficient
  • Wrong tone or style
  • Missing context or assumptions
  • Other (user specifies)

How It Should Improve

Options:

  • More detail/depth
  • Less detail/more concise
  • Different structure/order
  • Different method/tooling
  • Stronger validation or checks
  • Other (user specifies)

What Context/Styling Should Improve

Options:

  • Code style/conventions
  • Output format (markdown, JSON, table, prose)
  • Terminology/domain language
  • Length/scope boundaries
  • Audience/tone expectations
  • Other (user specifies)

Then ask:

If you can share an example of the desired output/style, please provide one.

Severity Metric And Iteration Control

Classify the issue from the user's why/how/what (or ask briefly if unclear):

  • Slight: minor wording/format/style adjustments -> max 5 iterations
  • Medium: structural/depth/method changes -> max 10 iterations
  • Severe: fundamental or repeated failures -> max 20 iterations

Track learning loops per issue signature (why + how + what + context). One iteration = one full cycle: apply the learning → deliver revised output → ask "Good or needs improvement?" again. If the user then says "Good," that improvement issue is closed (and the good-approval path applies for that task). If they say "Needs improvement" again for the same issue, that counts as the next iteration.

  • If under cap: continue iterative refinement (apply → ask feedback again).
  • If cap reached: summarize lessons learned, stop iterating on that issue, and continue normal feedback prompts (still ask "Good or needs improvement?" after subsequent tasks).

Why-How-What Resolution Requirement

When implementing improvements, always state:

  • Why this change is needed.
  • How it will be changed (concrete steps).
  • What context/styling constraints are being applied.

Use web search when external references improve correctness. Use iterative thinking to test and refine assumptions before final output.

UX Safety Rules

  • Never spam feedback prompts.
  • Never interrupt active user workflows for feedback.
  • Keep prompts concise and predictable.
  • Do not require UI or product changes; this is a conversational behavior layer.

Lightweight Output Pattern

After task completion:

  1. Completion line.
  2. Single feedback question.
  3. Optional one follow-up block only if user chooses "Needs improvement."

Additional Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.67%
按下载量换算81

Claude

30.96%
按下载量换算72

Cursor

17.98%
按下载量换算42

Gemini CLI

9.75%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills