sd0x-dev-flow — Summary
sd0x-dev-flow is a Claude Code plugin that implements "harness engineering" for AI coding agents — it wraps the LLM with a formal state-machine loop, 8 lifecycle hooks, 96 skills, 15 agents, and 14 rules to enforce quality gates that the AI cannot skip. The core innovation is a sentinel-driven auto-loop: after any code edit, the review command fires in the same reply (hook-enforced), dispatching dual-review (Codex MCP primary + secondary agent in parallel), deduplicating findings, and emitting a ✅ Ready / ⛔ Blocked gate marker that hooks parse to prevent premature Stop events. Context-compaction survival is handled by a SessionStart(compact) hook that re-injects [AUTO_LOOP_RESUME] to restart the review loop. Skills cover 96 workflows from planning (/codex-brainstorm, /tech-spec) through gate-enforced review (/codex-review-fast) to shipping (/push-ci, /create-pr). 15 persona-based agents (architect, simplifier, reviewer, etc.) are spawned as subagents. Version 3.0.12, MIT license.
Differs from seeds: Most similar to superpowers (skills-only, Claude Code primary, behavioral enforcement) but sd0x-dev-flow is architecturally more aggressive — it uses 8 hooks across 5 event types to enforce behavior that superpowers achieves through Iron Law prompts alone. The dual-reviewer pattern (Codex + secondary in parallel) is not present in any seed. The sentinel-driven state machine (✅ Ready/⛔ Blocked stdout markers parsed by hooks) is a novel harness engineering primitive not present in any seed.