Red Queen: A Deterministic Orchestrator That Runs Claude Code as a Worker Pool

After burning $40 of tokens on AutoGPT-style experiments that produced nothing, Red Queen's author built a deterministic orchestrator that treats Claude Code as a worker pool. The key insight: routing decisions that LLMs make are just switch statements — so they moved those decisions to a state machine.
How it works
Red Queen runs a pipeline defined as a state graph, not a prompt. Each phase (spec, code, review, test) is a separate Claude Code subprocess with a focused, isolated prompt. No shared context bloat, no mega-prompt. The state machine decides which phase to run based on explicit transitions — not LLM heuristics.
Pipeline
- Jira ticket → spec → human approves → code → auto review → auto test → human approves → merged PR
Human gates are built into the state graph, not bolted on. You can't accidentally skip approval and deploy to prod.
Key features
- Zero tokens spent on scheduling — the orchestrator is purely deterministic, written in code, not prompts.
- Self-hosted — BYO Claude Code. MIT licensed.
- Isolated skills — every skill runs with a focused prompt. No shared context.
Who it's for
Developers who've hit the limits of autonomous agents and want a safer, more predictable way to integrate LLMs into CI/CD pipelines without sacrificing control.
Get started
The repo is at github.com/odyth/red-queen. Named after the AI from Resident Evil.
📖 Read the full source: r/ClaudeAI
👀 See Also

NGX-OS: Network OS Built for AI with eBPF and MCP Integration
NGX-OS is a network operating system designed from the ground up for AI integration, using eBPF for real-time telemetry and MCP for direct LLM access to network state data without translation layers.
Hugging Face's physics-intern: Multi-Agent Framework Doubles Gemini on CritPt Benchmark
Hugging Face released physics-intern, a multi-agent framework for theoretical physics research that doubles Gemini models' performance on the CritPt benchmark and sets a new SOTA vs GPT-5.5 Pro at lower cost.

Mouser: Open-source alternative to Logitech Options+ for MX Master 3S
Mouser is a lightweight, open-source tool that remaps buttons on the Logitech MX Master 3S mouse without requiring Logitech's proprietary software. It runs fully locally with no telemetry, supports per-application profiles, and includes DPI control and battery monitoring.

MCP Gateway for Secure Remote Access to Internal Tools
An open-source MCP gateway aggregates multiple MCP tool servers into a single connection, enabling secure access via Claude Desktop without exposing public endpoints. It uses OpenZiti/zrok for zero-trust networking and requires only one configuration entry with a share token.