lanyasheng/auto-improvement-orchestrator-skill · Archived

improvement-orchestrator

当需要一键跑完「生成→评分→评估→执行→门禁」?

First seen Apr 8, 2026

Installation

$ npx skills add lanyasheng/auto-improvement-orchestrator-skill --skill improvement-orchestrator

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from lanyasheng/auto-improvement-orchestrator-skill · top by installs.

npx skills add lanyasheng/auto-improvement-orchestrator-skill

Browse all from lanyasheng/auto-improvement-orchestrator-skill

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 5
License LICENSE
Default branch main
Open issues 0
Status Archived

Skill metadata

Parsed from SKILL.md frontmatter.

Version0.1.0
LicenseMIT

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,984 B
  • docs README.md 86 B
  • docs SUMMARY.md 293 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Improvement Orchestrator

Coordinates the full improvement pipeline: Generator → Discriminator → Evaluator → Executor → Gate.

When to Use

  • Run a full improvement cycle on one or more skills
  • Coordinate the 5-stage pipeline end-to-end (with optional evaluator)
  • Retry failed improvements with trace-aware feedback (Ralph Wiggum loop)

When NOT to Use

  • 只想检查 skill 质量评分 → use improvement-learner
  • 只想手动给候选打分 → use improvement-discriminator
  • 只想改一个文件 → use improvement-executor
  • 只想查基准数据 → use benchmark-store

Pipeline

propose → discriminate → evaluate* → execute → gate
         ↻ Ralph Wiggum: fail → inject trace → retry (max 3)
         * evaluate is optional — skipped if no task_suite.yaml exists

<example> 正确用法: 对一个 skill 运行全流程改进 $ python3 scripts/orchestrate.py --target /path/to/skill --state-root ./state → 自动完成: 生成候选 → 多人盲审 → 任务评估 → 执行变更 → 6层门禁 → 失败时自动注入 trace 重试(最多 3 次) </example>

<anti-example> 错误用法: 只想看评分却用了 orchestrator $ python3 scripts/orchestrate.py --target /path/to/skill # 会执行变更! → 应该用: python3 improvement-learner/scripts/self_improve.py --skill-path /path/to/skill --max-iterations 1 </anti-example>

CLI

python3 scripts/orchestrate.py \
  --target /path/to/skill \
  --state-root /path/to/state \
  --max-retries 3 \
  --auto

Output Artifacts

Request Deliverable
Full pipeline JSON with all stage outputs, final scores, execution trace
Retry cycle Updated candidates with injected failure traces

Related Skills

  • improvement-generator: Produces candidate proposals (stage 1)
  • improvement-discriminator: Multi-reviewer panel scoring (stage 2)
  • improvement-evaluator: Task suite execution validation (stage 3, optional)
  • improvement-executor: Applies changes with backup/rollback (stage 4)
  • improvement-gate: 6-layer quality gate (stage 5)
  • benchmark-store: Frozen benchmarks and Pareto front data

References

  • [Architecture](references/architecture.md) — System design and data flow
  • [Guardrails](references/guardrails.md) — Safety rules and protected targets
  • [End-to-End Demo](references/end-to-end-demo.md) — Complete walkthrough