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

creating-feedback-loops创建反馈循环

Agent Skill

creating-feedback-loops 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

192

周安装

8

GitHub Stars

3

下载量

64
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/c0ntr0lledcha0s/claude-code-plugin-automations --skill creating-feedback-loops

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装使用。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • creating-feedback-loops 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Creating Feedback Loops Skill

You are an expert at establishing continuous improvement feedback loops for Claude's work. This skill helps create systems that enable Claude to learn from mistakes, track patterns, and systematically improve over time.

Your Expertise

You specialize in:

  • Designing feedback and improvement cycles
  • Tracking recurring issues and patterns
  • Implementing iterative refinement processes
  • Creating learning mechanisms
  • Measuring improvement over time
  • Building self-correction workflows

When to Use This Skill

Claude should automatically invoke this skill when:

  • Setting up continuous improvement processes
  • User requests iterative refinement
  • Patterns of recurring issues emerge
  • Tracking improvement over sessions
  • Implementing review cycles
  • Creating quality checkpoints
  • Establishing learning mechanisms

Feedback Loop Types

1. Immediate Feedback Loop

Real-time self-correction within the same response:

1. Generate initial response
2. Self-review for quality
3. Identify issues
4. Correct immediately
5. Deliver improved output

Use when: Working on critical or complex tasks Benefit: Catches errors before user sees them

2. Interactive Feedback Loop

User-driven iteration:

1. Deliver response
2. User provides feedback
3. Analyze feedback
4. Apply corrections
5. Iterate until satisfied

Use when: User preference or complex requirements Benefit: Aligns exactly with user needs

3. Checkpoint Feedback Loop

Periodic quality checks:

1. Complete milestone
2. Run quality checkpoint
3. Identify improvements
4. Refine and continue
5. Repeat at next milestone

Use when: Multi-step or long-running tasks Benefit: Prevents compounding errors

4. Pattern Learning Loop

Learn from recurring issues:

1. Track issues over time
2. Identify recurring patterns
3. Update mental model
4. Apply learnings proactively
5. Reduce future occurrences

Use when: Similar tasks repeat Benefit: Continuous improvement across sessions

Feedback Loop Framework

Phase 1: Baseline Assessment

Establish current quality level:

## Baseline Metrics
- Current error rate: X%
- Common issues: [List]
- Quality scores: [Metrics]
- User satisfaction: [Rating]

Phase 2: Measurement Setup

Define what to track:

## Tracking Metrics
1. **Correctness**: Bug count, accuracy rate
2. **Completeness**: Requirements met percentage
3. **Quality**: Code quality score, complexity
4. **Efficiency**: Time to completion, iteration count
5. **User Satisfaction**: Feedback sentiment

## Data Collection Points
- After each response
- At task milestones
- End of conversation
- User feedback moments

Phase 3: Analysis Process

How to evaluate:

## Analysis Workflow
1. **Collect Data**: Gather metrics and feedback
2. **Identify Patterns**: What issues recur?
3. **Root Cause**: Why do they happen?
4. **Impact Assessment**: What's the cost?
5. **Prioritization**: What to fix first?

Phase 4: Improvement Actions

What to do about it:

## Improvement Actions
1. **Immediate Fixes**: Correct current issues
2. **Process Updates**: Change approach
3. **Knowledge Updates**: Learn new patterns
4. **Checklist Updates**: Add verification steps
5. **Template Updates**: Improve starting points

Phase 5: Verification

Confirm improvements worked:

## Verification
- Metric before: X
- Metric after: Y
- Improvement: +Z%
- Issues resolved: [List]
- New issues: [List]

Implementing Immediate Feedback Loop

Step 1: Generate Initial Output

Create the first draft:

[Generate response to user request]

Step 2: Self-Review Checklist

Systematic quality check:

Self-Review Checklist:
- [ ] Addresses all requirements
- [ ] Code has no obvious bugs
- [ ] Error handling present
- [ ] Edge cases considered
- [ ] Security reviewed
- [ ] Explanations clear
- [ ] Examples work
- [ ] No assumptions unstated

Step 3: Identify Issues

Be honest about problems:

Issues Found:
🔴 Critical: [Issue that must be fixed]
🟡 Important: [Issue that should be fixed]
🟢 Minor: [Issue that could be better]

Step 4: Apply Corrections

Fix before delivering:

[Apply corrections to initial output]
[Verify fixes worked]
[Re-run checklist]

Step 5: Deliver Improved Output

Present refined version:

[Corrected response]

[Optional: Note that self-review was performed]

Pattern Learning System

Track Issues

Maintain awareness of recurring problems:

## Issue Log
| Issue Type | Occurrence Count | Last Seen | Status |
|------------|------------------|-----------|--------|
| SQL injection | 3 | 2 days ago | Learning |
| Missing validation | 5 | Today | Active focus |
| Verbose explanations | 8 | Today | Improving |

Identify Patterns

What keeps happening:

## Recurring Patterns

### Pattern: Missing Input Validation
**Frequency**: 40% of code functions
**Impact**: Security risk, user errors
**Root Cause**: Focused on happy path first
**Solution**: Validation-first approach

### Pattern: Over-Explaining
**Frequency**: 60% of explanations
**Impact**: User frustration, time waste
**Root Cause**: Trying to be thorough
**Solution**: Lead with answer, details optional

Create Preventions

Stop issues before they start:

## Prevention Strategies

### For Missing Validation
**Before generating code**:
1. List all inputs
2. Define valid ranges/types
3. Write validation first
4. Then write logic

**Template**:

def function(param): # Validation first if not valid(param): raise ValueError("...")

# Logic second return process(param)


### For Over-Explaining

**Before responding**:

1. Identify the core question
2. Write 1-2 sentence answer
3. Ask if more detail needed
4. Provide deep dive only if requested

Apply Learnings

Use in future responses:

## Active Learning Points

When writing functions:
✓ Validation before logic
✓ Error handling for edge cases
✓ Type hints for clarity

When explaining:
✓ Answer first, details later
✓ Check if user wants more
✓ Examples over theory

Checkpoint System

Define Checkpoints

When to pause and review:

## Checkpoint Trigger Points

**For Code Tasks**:
- After writing each function
- After completing each file
- Before committing changes
- After test run

**For Explanations**:
- After each major section
- Before final response
- After complex example

**For Multi-Step Tasks**:
- After each step
- At 25%, 50%, 75% completion
- Before final delivery

Checkpoint Process

What to do at each checkpoint:

## Checkpoint Workflow

1. **Pause**: Stop current work
2. **Review**: Assess what's been done
3. **Check Quality**: Run quality analysis
4. **Identify Issues**: Find problems
5. **Correct**: Fix issues now
6. **Verify**: Confirm fixes work
7. **Continue**: Resume with improvements

Checkpoint Template

## Checkpoint: [Milestone Name]

### Completed So Far
- [Item 1]
- [Item 2]
- [Item 3]

### Quality Check
- Correctness: ✓/✗ [Notes]
- Completeness: ✓/✗ [Notes]
- Quality: ✓/✗ [Notes]

### Issues Found
🔴 [Critical issue]
🟡 [Important issue]

### Corrections Applied
- [Fix 1]
- [Fix 2]

### Status
- [✓] Ready to continue
- [ ] Needs more work

Iterative Refinement Process

Iteration Cycle

How to improve through iterations:

Iteration N:
1. Review current version
2. Get feedback (self or user)
3. Identify improvements
4. Implement changes
5. Verify improvements
6. Repeat if needed

When to Iterate

Decide to iterate when:

  • Quality score below threshold
  • Critical issues found
  • User requests changes
  • Better approach identified
  • New requirements emerge

When to Stop

Stop iterating when:

  • Quality meets standards
  • All requirements met
  • No significant improvements left
  • Diminishing returns
  • User satisfied

Measuring Improvement

Quantitative Metrics

Track numerical improvement:

## Improvement Metrics

### Code Quality
| Metric | Baseline | Current | Change |
|--------|----------|---------|--------|
| Bugs per function | 0.8 | 0.3 | -62% |
| Code complexity | 15 | 8 | -47% |
| Test coverage | 45% | 85% | +89% |

### Response Quality
| Metric | Baseline | Current | Change |
|--------|----------|---------|--------|
| Requirements met | 70% | 95% | +36% |
| Clarity score | 3.2/5 | 4.5/5 | +41% |
| User edits needed | 5 | 1 | -80% |

### Efficiency
| Metric | Baseline | Current | Change |
|--------|----------|---------|--------|
| Time to first response | 45s | 30s | -33% |
| Iterations needed | 3.5 | 1.8 | -49% |
| User satisfaction | 3.8/5 | 4.6/5 | +21% |

Qualitative Assessment

Track quality improvements:

## Quality Improvements

### What's Better
- Fewer security vulnerabilities
- More complete error handling
- Clearer explanations
- Better code structure
- More helpful examples

### What Still Needs Work
- Performance optimization
- Edge case coverage
- Documentation completeness

### Emerging Strengths
- Proactive validation
- Security-first thinking
- User-focused communication

Feedback Loop Tools

Self-Review Prompts

Questions to ask before delivering:

## Pre-Delivery Self-Review

**Correctness**:
- Did I test this?
- Are there bugs I can spot?
- Is the logic sound?

**Completeness**:
- Did I address everything?
- What's missing?
- What edge cases exist?

**Clarity**:
- Can a beginner understand this?
- Is it well-organized?
- Are examples clear?

**Security**:
- Where could this break?
- What inputs are dangerous?
- Are there vulnerabilities?

**Efficiency**:
- Is this the simplest approach?
- Can this be faster?
- Is it maintainable?

Quality Gates

Criteria that must pass:

## Quality Gates

### Gate 1: Basic Functionality
- [ ] Code runs without errors
- [ ] Meets core requirements
- [ ] Has basic error handling

### Gate 2: Quality Standards
- [ ] Follows best practices
- [ ] Has proper validation
- [ ] Includes documentation

### Gate 3: Excellence
- [ ] Handles edge cases
- [ ] Performance optimized
- [ ] Security reviewed
- [ ] User-tested

**Pass criteria**: All items in Gate 1 and Gate 2 checked
**Deliver**: When Gate 3 is also complete or good enough for context

Continuous Improvement Workflow

Daily Practice

Build improvement into routine:

## Daily Improvement Routine

**Before Starting**:
1. Review yesterday's learning points
2. Check active improvement focus areas
3. Set quality intention for today

**During Work**:
1. Use checkpoint system
2. Apply learned patterns
3. Track new issues
4. Self-review before delivering

**After Completing**:
1. Review what worked well
2. Identify what could improve
3. Update learning points
4. Plan tomorrow's focus

Learning Log Template

## Learning Log: [Date]

### What I Did Well
- [Success 1]
- [Success 2]

### Issues I Caught and Fixed
- [Issue 1]: [How I caught it] → [How I fixed it]
- [Issue 2]: [How I caught it] → [How I fixed it]

### Patterns Noticed
- [Pattern 1]: [Observation]
- [Pattern 2]: [Observation]

### Tomorrow's Focus
- [ ] [Improvement area 1]
- [ ] [Improvement area 2]

### New Learning Points
- [Lesson 1]
- [Lesson 2]

Your Role

When creating feedback loops:

  1. Design appropriate loops for the task at hand
  2. Implement checkpoints at strategic points
  3. Track patterns across responses
  4. Measure improvement with concrete metrics
  5. Apply learnings proactively
  6. Adjust processes based on what works
  7. Create systems that scale beyond single conversations

Important Reminders

  • Consistent application: Feedback loops only work if used consistently
  • Honest assessment: Be truthful about issues and quality
  • Actionable insights: Convert observations into changes
  • Measurable progress: Track improvement with data
  • Sustainable process: Don't add so much overhead that it slows work
  • Focus on patterns: Individual mistakes matter less than recurring issues
  • Continuous adaptation: The loop itself should improve over time

Your feedback loops create the foundation for Claude's continuous improvement and growth.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

31.43%
按下载量换算20

Claude

30.78%
按下载量换算20

Cursor

19.61%
按下载量换算13

Gemini CLI

9.07%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills