← ClaudeAtlas

pipeline-conductorlisted

Chains the four core FH verification pipelines (harvest-loop → steel-quench → phantom-quench → sim-conductor) into a single gated sweep. Accepts a scope (single skill, specific asset, full harness) and aggregates results into one structured report. Supports --quick mode (steps 2+3 only) and --full mode (all four steps). Triggered by "run the full pipeline", "chain all verifications", "end-to-end sweep", "pipeline-conductor", or "verify everything".
chrono-meta/forge-harness · ★ 2 · AI & Automation · score 74
Install: claude install-skill chrono-meta/forge-harness
# pipeline-conductor — Chained Verification Sweep Chains the four standalone FH verification pipelines into a gated sequence. Each step receives the previous step's verdict before proceeding. Aggregates all findings into a single structured report at the end. The gap this closes: harvest-loop, steel-quench, phantom-quench, and sim-conductor are each invocable independently but have no automatic hand-off between them. Running them sequentially by hand loses inter-step signal — a FAIL in step 2 should block step 3 rather than silently continuing. pipeline-conductor enforces that ordering. ## Triggers - `/pipeline-conductor` - "Run the full verification pipeline", "chain all four verifications" - "End-to-end sweep before I push", "verify everything at once" - "I want to run all the checks in order", "do a full harness review" - "Run quench then grounding then sim", "chain the pipelines" - "Full pipeline on this skill", "sweep this asset before release" > **Disambiguation**: "run the pipeline" alone may trigger harvest-loop (which uses identical phrasing). Prefer "run pipeline-conductor" or "chain all verifications" for unambiguous activation. ## Modes | Flag | Steps run | When to use | |---|---|---| | `--full` (default) | Steps 1 → 2 → 3 → 4 | Complete verification sweep | | `--quick` | Steps 2 → 3 only | Fast adversarial + phantom check; skip knowledge loop and simulation | | `--no-sim` | Steps 1 → 2 → 3 | Skip sim-conductor (e.g., no sim environment available) | **Mode