Auto-discovered marketplace from yihan2099/workflow-optimizer
npx claudepluginhub yihan2099/workflow-optimizerClosed-loop workflow optimization — measure, categorize failures, fix, and re-measure until target success rate
A methodology for iteratively measuring and optimizing agent workflows. Defined as markdown skills that any LLM agent can pick up and execute.
The primary skill is optimize — a single, self-contained closed-loop that runs the full cycle:
measure → categorize → fix → remeasure → compare → repeat
Individual skills (measure, categorize, compare, baseline) work standalone for one-off tasks but do NOT call each other. The optimize skill has all logic inline — no skill-to-skill invocation required.
/plugin marketplace add yihan2099/workflow-optimizer
/plugin install workflow-optimizer@workflow-optimizer
| Skill | Purpose | Standalone? |
|---|---|---|
| optimize | Full loop: measure → fix → remeasure until target met | Yes — primary entry point |
| measure | Run a workflow N times, collect metrics | Yes |
| categorize | Bucket failures into actionable categories | Yes |
| compare | Diff two metric snapshots | Yes |
| baseline | Persist and load metric snapshots | Yes |
/workflow-optimizer:optimize path/to/workflow.md --runs 5 --target-rate 0.8
/workflow-optimizer:optimize path/to/workflow.md --runs 5 --baseline-only
/workflow-optimizer:measure path/to/workflow.md --runs 10
Each workflow needs a directory with at minimum a workflow.md:
my-workflow/
workflow.md # Run command, success criteria, fixtures, constraints
fixer.md # (Optional) How to fix each failure category
See workflow-definition.md for the full spec.
All optimization data is stored in .workflow-optimizer/ relative to where the skill is invoked:
.workflow-optimizer/
{workflow-id}/
baseline.md # Latest aggregate metrics
snapshots/
{date}.md # Historical snapshots
iterations/
iter-1.md # Per-iteration changes + results
failure-catalog.md # Accumulated failure patterns + fixes
.workflow-optimizer/ as markdown filesDevelopment marketplace for Superpowers core skills library
Harness-native ECC skills, hooks, rules, MCP conventions, and operator workflows
Open Design — local-first design app exposed to coding agents over MCP. Install once with your agent's plugin command and projects/files/skills are reachable through stdio.