Code Conductor (ryanmac) — Summary
Code Conductor by Ryan Mac is a Python-based GitHub-native multi-agent orchestration system that enables multiple Claude Code agents to work on parallel tasks simultaneously without conflicts, using GitHub Issues as the task queue and git worktrees for isolation. Unlike the CDD conductor variants (which prescribe a development methodology), Code Conductor is a coordination infrastructure: it provides a conductor bash script, 15+ Python scripts, 10 role markdown files, GitHub Actions workflows, and a .conductor/ configuration system that enables autonomous agent task claiming, isolated worktree execution, heartbeat monitoring, and stale work cleanup. The key innovation is using GitHub's atomic issue-assignment API as a task coordination primitive — no central coordinator, no race conditions, no custom locking mechanism. At 101 stars with MIT license, it is more mature than the CDD variants (active development until 2026-03-30), has a proper uninstaller, and targets teams wanting to "ship 10x faster by running multiple Claude Code sub-agents in parallel." Compared to Conductor.build (which provides similar parallel-worktree functionality via a macOS UI), Code Conductor is the open-source CLI alternative that works across platforms and requires no subscription.