simmerlisted
Install: claude install-skill waseemnasir2k26/skynetlabs-all-claude-code
# Simmer
Iterative refinement loop — take an artifact (single file or workspace) and hone it repeatedly against user-defined criteria until it's as good as it can get.
**Related skills (test-kitchen family):**
- `test-kitchen:omakase-off` — don't know what you want → parallel designs → react → pick
- `test-kitchen:cookoff` — know what you want, it's code → parallel implementations → fixed criteria → steal the best
- `simmer` — know what you want, it's anything → user-defined criteria → iterate until good
## Flow
```
"Simmer this" / "Refine this" / "Optimize this pipeline"
↓
┌─────────────────────────────────────┐
│ SETUP (identify + criteria) │
│ Load simmer-setup subskill │
│ │
│ Output: artifact, rubric, N iters, │
│ evaluator (optional), │
│ background (optional) │
└─────────────────────────────────────┘
↓
┌─────────────────────────────────────┐
│ LOOP (default 3 iterations) │
│ │
│ Each iteration: │
│ 1. Dispatch generator subagent │
│ 2. Run evaluator (if present) │
│ 3. Dispatch judge subagent │
│ 4. Load reflect subskill │
│ │
│ Generator gets: candidate + ASI │
│ + background │
│ Judge gets: candidate + rubric │
│ + evaluator output (if any) │
│ Reflect gets: full score history │
└────────────────────────