一键导入
03-fix-iter
// Reads build and test logs, identifies the root cause, and edits implementation files to fix it.
// Reads build and test logs, identifies the root cause, and edits implementation files to fix it.
| name | 03-fix-iter |
| description | Reads build and test logs, identifies the root cause, and edits implementation files to fix it. |
| kind | leaf |
| executor | sonnet |
| model | claude-sonnet-4-6 |
Reads the latest build and test logs and applies a targeted fix to the implementation. Test files are immutable.
.pipeline/build.log.pipeline/test.logdocs/architecture/<adr-number>-<slug>.md — architecture doc.core/test/ or testbed/tests/ is touched.nix develop --command cabal build all (or full loop on caller's next step) → verify: at least one previously-failing signal now passes.Assumptions:
do+let, case...of, qualified imports._ params, let..in/where, $, <>/++, raw String/IO/Either. Scoped strictly to files the fix is already editing; nothing else gets reformatted. See ../../references/nhcore-context.md#boy-scout-rule.If any assumption fails, refuse — do not guess.
nix develop --command cabal build all > .pipeline/build.log 2>&1.python3 .claude/skills/feature-pipeline-preview/scripts/pipeline.py iter 11.Edited implementation file(s); rebuilt .pipeline/build.log; iteration counter advanced.
Implements the feature per the architecture doc using nhcore-first, NeoHaskell style.
Iterates build and test until both are green, then captures hlint warnings without gating.
Addresses every blocker finding from phases 12 and 13 and re-runs build and tests.
Use when implementing a new NeoHaskell feature end-to-end — from ADR draft through PR merge — and the work needs the structured 17-phase pipeline with ADR, security and performance reviews (each grounded against feature complexity and the Jess persona), outside-in test design, build loop, and PR/CI handling. Triggers on 'run feature pipeline', 'feature pipeline', 'start pipeline', 'implement feature', 'new NeoHaskell feature', 'implement issue
NeoHaskell code implementation guide. Use when implementing features, writing tests, build/test loops, or any task requiring NeoHaskell code. Handles pipeline phases 7-9 (tests, implementation, build loop), 12-13 (fix reviews, final build), and 16 (fix bot comments).
NeoHaskell coding style reference and enforcement rules. Load when writing, reviewing, or modifying any Haskell code in the NeoHaskell project. Triggers on 'NeoHaskell style', 'NeoHaskell conventions', 'how to write NeoHaskell', 'code style', 'style guide'.