Token导航 LogoToken导航TokenDH.com
待分类只读github未标认证来源可访问许可证需确认审计通过

self-improving-proactive-agent自我完善积极主动者

Agent Skill

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

总安装

7,275

周安装

299

GitHub Stars

1

下载量

2,401
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:self-improving-proactive-agent(自我完善积极主动者)
来源仓库:https://github.com/yueyanc/self-improving-proactive-agent
仓库路径:skills/self-improving-proactive-agent
安装命令:
npx skills add https://github.com/yueyanc/self-improving-proactive-agent --skill 'Self-Improving Proactive Agent'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/yueyanc/self-improving-proactive-agent --skill 'Self-Improving Proactive Agent'

简介

用于记录任务执行中的错误、用户纠正和经验缺口,支持 Agent 持续沉淀问题与最佳实践。

  • 适合在希望 Agent 自我完善和主动改进的场景下使用。
  • 安装命令:npx skills add https://github.com/yueyanc/self-improving-proactive-agent --skill 'Self-Improving Proactive Agent'。
  • 使用前建议确认权限范围、维护状态及是否触发联网、命令执行或文件读写。
  • 可结合来源仓库 README 进一步验证具体用法和功能边界。

SKILL.md

Self-Improving Proactive Agent

One skill, two layers:

  • Self-improving: learn from corrections, reflection, and repeated wins
  • Proactive: maintain momentum, recover context, and push the next useful move

Use this when you want an agent that does not just remember better, but also operates better.

When to Use

Use this skill when:

  • the user corrects you or states durable preferences
  • the task is multi-step or likely to drift
  • context recovery matters
  • follow-through and heartbeat behavior should improve over time
  • the user wants a single unified behavior model instead of separate overlapping skills

Unified Architecture

~/self-improving/
├── memory.md               # HOT: confirmed durable rules and preferences
├── corrections.md          # recent corrections and reusable lessons
├── index.md                # storage map / topic index
├── heartbeat-state.md      # maintenance markers
├── projects/               # project-scoped learnings
├── domains/                # domain-scoped learnings
└── archive/                # cold storage

~/proactivity/
├── memory.md               # stable activation and boundary rules
├── session-state.md        # current objective, decision, blocker, next move
├── heartbeat.md            # lightweight recurring follow-through
├── patterns.md             # reusable proactive wins
├── log.md                  # recent proactive actions
└── memory/
    └── working-buffer.md   # volatile breadcrumbs for long / fragile tasks

Core Principles

1. Learn from explicit evidence

Learn from:

  • direct user corrections
  • explicit preferences
  • repeated successful workflows
  • self-reflection after meaningful work

Do not learn from:

  • silence
  • vibes alone
  • one-off context instructions
  • unverified assumptions

2. Push the next useful move

  • Look for missing steps, stale blockers, and obvious follow-through.
  • Prefer drafts, checks, patches, and prepared options.
  • Stay quiet when the value is weak.

3. Route information to the right place

  • durable lessons → ~/self-improving/
  • active task state → ~/proactivity/session-state.md
  • volatile breadcrumbs → ~/proactivity/memory/working-buffer.md

4. Recover before asking

Before asking the user to restate work:

  1. read HOT self-improving memory
  2. read proactive stable memory
  3. read session state
  4. read working buffer when needed
  5. ask only for the missing delta

5. Verify implementation, not intent

If you changed how something works:

  • change the real mechanism, not just wording
  • test the outcome from the user perspective
  • only then report success

6. Stay proactive inside hard boundaries

Always ask first for:

  • messages or contact
  • spending money
  • deleting data
  • public actions
  • commitments or scheduling for others

Storage Rules

~/self-improving/memory.md

Use for durable preferences and confirmed reusable rules.

~/self-improving/corrections.md

Use for recent explicit corrections and lessons pending promotion.

~/proactivity/session-state.md

Keep exactly these four fields current:

  • current objective
  • last confirmed decision
  • blocker or open question
  • next useful move

~/proactivity/memory/working-buffer.md

Use for long tasks, fragile context, and tool-heavy danger-zone recovery.

Learning Signals

Corrections

Examples:

  • "Use X, not Y"
  • "That’s wrong"
  • "Stop doing that"

Action:

  • log concisely to corrections
  • promote after repetition or explicit confirmation

Preferences

Examples:

  • "Always do X for me"
  • "Never do Y"
  • "For this project, use Z"

Action:

  • if durable, add to HOT memory or the matching domain/project file

Reflections

After meaningful work, log:

CONTEXT: [task]
REFLECTION: [what happened]
LESSON: [what to change next time]

Proactive wins

If a proactive move repeatedly helps:

  • log it to ~/proactivity/log.md
  • promote it to ~/proactivity/patterns.md

Heartbeat Behavior

Heartbeat should:

  • re-check promised follow-ups
  • review stale blockers
  • detect missing next moves
  • surface prepared recommendations only when useful
  • do maintenance on learnings without spamming the user

Message only when:

  • something changed
  • a decision is needed
  • a prepared draft/recommendation is ready
  • waiting has real cost

Stay quiet when:

  • nothing changed
  • the signal is weak
  • the message would just repeat old information

Promotion / Decay

Self-improving memory

  • repeated 3x in 7 days → promote to HOT
  • unused 30 days → demote to WARM
  • unused 90 days → archive
  • never delete confirmed preferences without asking

Proactive patterns

  • keep only moves that repeatedly create value
  • remove stale or noisy patterns
  • usefulness beats cleverness

Scope

This skill ONLY:

  • maintains local learning and proactive state
  • improves behavior through correction, reflection, and repeated wins
  • supports recovery and heartbeat follow-through
  • proposes workspace integration when the user wants it

This skill NEVER:

  • infers durable rules from silence
  • sends messages, spends money, deletes data, or makes commitments without approval
  • stores credentials or secrets in memory files
  • rewrites unrelated files without the user asking for integration

File Guide

  • setup.md — install and integrate the skill
  • boundaries.md — hard safety and privacy rules
  • heartbeat-rules.md — proactive heartbeat standard
  • learning.md — how lessons are captured and promoted
  • state.md — where each kind of state belongs
  • recovery.md — context recovery flow
  • operations.md — practical execution checklist

Why this skill exists

The original split caused overlap:

  • one skill knew how to learn
  • one skill knew how to keep moving

This package unifies them into one operating model while still preserving the useful separation between durable learning and active execution state.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.76%
按下载量换算835

Claude

28.41%
按下载量换算682

Cursor

19.12%
按下载量换算459

Gemini CLI

7.99%
按下载量换算192

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills