Optio — Summary
Optio is a self-hosted Kubernetes-native AI engineering platform that orchestrates agent work through three tiers: Tasks (ticket-to-PR with feedback loop), Jobs (standalone parameterized agent runs), and Persistent Agents (long-lived message-driven services). Built on a Kubernetes-style reconciliation control plane (pure-decision + CAS-executor loop), Optio provisions pod-per-repo isolation with git worktree concurrency, auto-resumes agents on CI failures and review feedback, and squash-merges PRs when all checks pass. The web UI (Next.js, port 3100) provides real-time log streaming, pipeline progress, cost analytics, and cluster health; an API server (Fastify, port 30400) handles all orchestration. Multi-vendor agent support (Claude Code, OpenAI Codex, GitHub Copilot, Google Gemini, OpenCode) is configurable per repo. Persistent Agents communicate via inter-agent HTTP (/api/internal/persistent-agents/*) for direct and broadcast messaging. AES-256-GCM secrets at rest, OIDC/OAuth, Kubernetes RBAC, and audit-friendly task history make it enterprise-grade.
Differs from seeds: Optio is the only framework in the surveyed space that deploys entirely on Kubernetes with a formal reconciliation control plane; all seeds run locally or in CI processes. Unlike taskmaster-ai (which generates task lists) or claude-conductor (which orchestrates Claude sessions), Optio is a full infrastructure platform — closest architectural peer is a self-hosted Devin/Sweep, not a prompt-layer tool. The persistent agent tier with inter-agent messaging is unique among all 11 seeds.