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

iterative-refinement迭代细化

Agent Skill

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

总安装

259

周安装

11

GitHub Stars

公开资料未说明

下载量

91
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/d-oit/do-novelist-ai --skill iterative-refinement

简介

用于查找、检索和筛选相关信息,快速定位候选结果。

  • 适合在关键词、任务场景或来源线索明确时使用。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态,以及是否会触发联网或命令执行。
  • 注意检查是否会触发文件读写或高风险操作。iterative-refinement 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Iterative Refinement

Execute workflows iteratively with systematic validation, progress tracking, and intelligent termination.

When to Use

Use for tasks requiring iterative refinement:

  • Test-fix-validate cycles: Fix failures → retest → repeat until passing
  • Code quality improvement: Review → fix → review until standards met
  • Performance optimization: Profile → optimize → measure until targets achieved
  • Progressive enhancement: Iterative improvements until diminishing returns

Don't use for single-pass tasks, purely parallel work, or simple linear workflows.

Pre-Usage Research (Optional)

Before starting iterations, consider researching:

  • Current best practices for your validation tools (search "[tool] best practices 2025")
  • Known issues with your tech stack (search "[language] [tool] common issues")
  • Optimal configuration for your validators (search "[tool] configuration production")
  • Recent improvements or alternatives (search "[tool] vs alternatives 2025")

Benefits:

  • Better validators from the start
  • Avoid known issues
  • Use current best practices
  • Save iteration cycles

When to research first:

  • Unfamiliar validation tools
  • New tech stack
  • Complex quality criteria
  • High-stakes optimization

Core Loop Pattern

Every iteration follows:

  1. Execute action (fix, optimize, improve)
  2. Validate result (test, measure, check)
  3. Assess progress (compare to criteria)
  4. Decide (continue or stop)

Instructions

Step 1: Define Configuration

Establish before starting:

Success Criteria (specific and measurable):

  • Criterion 1: [Example: "All 50 tests passing"]
  • Criterion 2: [Example: "Zero linter warnings"]
  • Criterion 3: [Example: "Response time < 100ms"]

Loop Limits:

  • Max iterations: 5-15 (justify if >20)
  • Min iterations: (optional)

Termination Mode:

  • Fixed: Run exactly N iterations
  • Criteria: Stop when success criteria met
  • Convergence: Stop when improvements < threshold (e.g., <10% over 3 iterations)
  • Hybrid: Combine multiple conditions

Step 2: Execute Iteration

For each iteration:

  1. Take action - Apply fixes or implement changes
  2. Run validator - Execute tests, linters, or measurements
  3. Record progress: Iteration N: - Action: [what was done] - Results: [metrics/outcomes] - Issues remaining: [count/description] - Decision: [Continue/Success/Stop]
  4. Assess termination:

- All criteria met? → SUCCESS - Improvement < threshold? → CONVERGED - Reached max iterations? → STOP - Otherwise → CONTINUE

Step 3: Pass Context Between Iterations

Each iteration needs:

  • Previous results
  • Current metrics
  • Remaining issues
  • Progress trend

This prevents repeating failed approaches.

Step 4: Handle Stuck States

If no progress for 2-3 iterations:

  1. Analyze why progress stopped
  2. Try different approach
  3. Consider manual intervention
  4. Stop if truly stuck

Step 5: Report Results

Loop Summary:
- Iterations: N
- Termination: [Success/Converged/Max/Stuck]
- Initial state: [metrics]
- Final state: [metrics]
- Improvement: [percentage/delta]
- Remaining issues: [list if any]

Validation Best Practices

Make Validators Specific

Bad: "Check if code is better" Good: "Run linter and count warnings"

Bad: "See if it's faster" Good: "Run benchmark: average response time over 100 requests"

Use Automated Validation

Prefer scripts/tools over manual inspection:

  • Test frameworks over reading test code
  • Linters over manual code review
  • Benchmarks over estimated performance
  • Coverage tools over counting tests

Capture Concrete Metrics

Track measurable progress:

  • Test pass rate: 42/50 → 48/50 → 50/50
  • Warning count: 23 → 8 → 2 → 0
  • Response time: 320ms → 180ms → 95ms → 48ms
  • Code coverage: 65% → 78% → 85% → 92%

Examples

Example 1: Test Fixing

Task: Fix all failing tests

Configuration:

  • Success: 100% tests passing
  • Max iterations: 8

Execution:

I1: 42/50 → Fix 8 failures → Continue
I2: 48/50 → Fix 2 failures → Continue
I3: 50/50 → SUCCESS ✓

Example 2: Linter Cleanup

Task: Remove all linter warnings

Configuration:

  • Success: 0 warnings
  • Max iterations: 5

Execution:

I1: 15 warnings → Fix → 6 warnings
I2: 6 warnings → Fix → 1 warning
I3: 1 warning → Fix → 0 warnings ✓

Example 3: Performance Loop

Task: Optimize response time

Configuration:

  • Success: <50ms OR converged
  • Max iterations: 15
  • Convergence: <10% over 3 iterations

Execution:

I1: 320ms → Optimize → 180ms (44%)
I2: 180ms → Optimize → 95ms (47%)
I3: 95ms → Optimize → 48ms (49%)
SUCCESS (target met)

Example 4: Coverage Improvement

Task: Increase test coverage to 90%

Configuration:

  • Success: Coverage ≥ 90%
  • Max iterations: 12

Execution:

I1: 65% → Write tests → 72%
I2: 72% → Write tests → 81%
I3: 81% → Write tests → 88%
I4: 88% → Write tests → 91% ✓

Language-Specific Tools

For validation tools and commands for your language:

  • Python: See tools/python.md
  • JavaScript/TypeScript: See tools/javascript.md
  • Rust: See tools/rust.md
  • Java: See tools/java.md
  • Go: See tools/go.md
  • C/C++: See tools/cpp.md
  • Ruby: See tools/ruby.md
  • PHP: See tools/php.md
  • C#/.NET: See tools/dotnet.md

Advanced Usage

For complex workflows, convergence detection, and advanced patterns: See patterns.md

Best Practices

DO:

✓ Define clear, measurable success criteria ✓ Set reasonable max limits (5-15) ✓ Use automated validators ✓ Pass context between iterations ✓ Track concrete metrics ✓ Stop early when criteria met ✓ Detect convergence ✓ Document changes

DON'T:

✗ Use loops for single-pass tasks ✗ Set high limits (>20) without justification ✗ Skip validation between iterations ✗ Lose context between iterations ✗ Continue after success/convergence ✗ Ignore stuck signals ✗ Use vague criteria ✗ Miss early termination

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.38%
按下载量换算30

Claude

29.89%
按下载量换算27

Cursor

18.92%
按下载量换算17

Gemini CLI

9.22%
按下载量换算8

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills