Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计异常

self-improvement自我提升

Agent Skill

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

总安装

346

周安装

14

GitHub Stars

7,935

下载量

109
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/basedhardware/omi --skill self-improvement

简介

用于记录任务执行中的错误、用户纠正、经验和能力缺口。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • self-improvement 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Self-Improvement Meta-Skill

This meta-skill enables the Cursor system to learn from GitHub PRs, issues, discussions, and user interactions to continuously improve guidance and prevent common mistakes.

When to Use

Use this skill when:

  • Analyzing closed PRs to extract lessons learned
  • Identifying patterns in rejected vs. accepted contributions
  • Learning from user corrections and feedback
  • Updating rules based on what worked or didn't work
  • Creating new rules when patterns emerge
  • Tracking effectiveness of existing rules

Key Capabilities

1. PR Analysis

Analyze closed PRs to extract patterns:

What to look for:

  • Review comments and rejection reasons
  • Common failure patterns (deprecated functions, architecture misunderstandings, missing context)
  • Success patterns (what made PRs get merged)
  • Code review feedback themes
  • Testing and verification gaps

How to analyze:

  1. Fetch PR details via GitHub API or web fetch
  2. Parse review comments for actionable feedback
  3. Identify recurring themes
  4. Extract specific mistakes (e.g., "used deprecated function X")
  5. Map to existing rules or identify gaps

2. Issue Pattern Extraction

Learn from GitHub issues:

What to track:

  • Common bug patterns
  • Feature requests that reveal gaps
  • User-reported issues that indicate misunderstandings
  • Triage patterns (what gets prioritized)

How to extract:

  1. Analyze issue descriptions and labels
  2. Identify recurring themes
  3. Map to Omi layers (Capture/Understand/Memory/etc.)
  4. Extract lessons about what not to do

3. User Interaction Learning

Learn from direct user feedback:

What to track:

  • User corrections ("No, don't do X")
  • Rejected suggestions ("That's not what I meant")
  • Clarification requests (reveals gaps in understanding)
  • Preference patterns (user's coding style, preferred approaches)
  • Success patterns (what user consistently approves)

How to learn:

  1. Monitor conversation for corrections and feedback
  2. Extract the lesson from each correction
  3. Identify patterns across multiple interactions
  4. Update rules or create new ones based on patterns
  5. Build user preference profile

4. Rule Generation and Updates

Create or update rules based on findings:

Process:

  1. Identify the pattern or mistake
  2. Check if existing rule covers it
  3. If yes, update the rule with new information
  4. If no, create a new rule
  5. Test rule effectiveness

Rule update format:

  • Add to existing rule if it's the same category
  • Create new rule if it's a new category
  • Include specific examples from PRs/issues
  • Reference the source (PR number, issue number)

5. Effectiveness Tracking

Track which rules are most effective:

Metrics:

  • How often a rule prevents mistakes
  • Reduction in PR rejections after rule creation
  • User correction frequency
  • Rule coverage (how many scenarios it covers)

Common Patterns to Extract

From PR #3567 (Rejected):

  • ❌ Used deprecated postprocess_conversation function
  • ❌ Didn't understand current audio storage flow
  • ❌ Didn't provide enough context upfront
  • ❌ Didn't verify end-to-end flow
  • ✅ Good: Provided benchmarks and test results
  • ✅ Good: Addressed code review feedback promptly

From Issues:

  • Language settings not respected (#4394)
  • Features only work when app is open (#4355)
  • Missing conversations/processing issues (#4354, #4353)

From User Interactions:

  • "No, don't use that function, it's deprecated" → Always check for deprecated functions
  • "I need more context before you start coding" → User prefers planning phase
  • "That's not how the system works" → Need to understand architecture better

Implementation Guidelines

Analyzing a PR

  1. Fetch PR data: # Use mcp_web_fetch or GitHub API pr_url = f"https://github.com/BasedHardware/omi/pull/{pr_number}"
  2. Extract key information:

- PR status (merged/rejected) - Review comments - Code changes - Rejection reasons (if rejected)

  1. Identify patterns:

- What mistakes were made? - What feedback was given? - What worked well?

  1. Map to rules:

- Which existing rule should be updated? - Is a new rule needed?

  1. Update/create rules:

- Add examples to existing rules - Create new rules for new patterns

Learning from User Feedback

  1. Detect correction:

- User says "no", "don't", "that's wrong", etc. - User provides different approach

  1. Extract lesson:

- What was wrong? - Why was it wrong? - What should be done instead?

  1. Update guidance:

- Add to relevant rule - Create new rule if needed - Update user preference profile

Creating New Rules

When a new pattern emerges:

  1. Identify the pattern: What mistake or gap does it address?
  2. Find examples: Collect 2-3 examples from PRs/issues/interactions
  3. Write the rule: Follow existing rule format
  4. Add to file structure: Place in appropriate .cursor/rules/ file
  5. Link from related rules: Add references in other relevant rules

Related Cursor Resources

Rules

  • .cursor/rules/common-mistakes.mdc - Common mistakes to avoid
  • .cursor/rules/pre-implementation-checklist.mdc - Pre-implementation verification
  • .cursor/rules/verification.mdc - Self-checking guidelines
  • .cursor/rules/context-communication.mdc - Communication best practices
  • .cursor/rules/user-feedback-integration.mdc - Learning from user interactions

Commands

  • /learn-from-pr - Analyze a specific PR
  • /learn-from-conversation - Learn from current conversation
  • /self-improve - Analyze patterns and update rules

Skills

  • .cursor/skills/rule-updater/SKILL.md - Skill for updating rules programmatically

Best Practices

  1. Be specific: Extract concrete examples, not vague patterns
  2. Reference sources: Always note which PR/issue/interaction the lesson came from
  3. Test updates: Verify rule updates don't break existing guidance
  4. Prioritize: Focus on patterns that cause the most problems
  5. Iterate: Rules should improve over time as more data is collected

Example Usage

Analyzing a rejected PR:

User: "Learn from PR #3567"
Agent: [Uses this skill to]
1. Fetch PR #3567 details
2. Extract rejection reasons
3. Identify patterns (deprecated functions, missing context)
4. Update common-mistakes.mdc rule
5. Report findings

Learning from user correction:

User: "No, don't use postprocess_conversation, it's deprecated"
Agent: [Uses this skill to]
1. Extract lesson: Always check for deprecated functions
2. Update common-mistakes.mdc rule
3. Add to pre-implementation-checklist.mdc
4. Note in user preference profile

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.62%
按下载量换算39

Claude

32.22%
按下载量换算35

Cursor

19.57%
按下载量换算21

Gemini CLI

9.06%
按下载量换算10

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills