Mandeep15686

AI Dev Orchestrator Complete — AI skill for Claude Code

AI community

A local-first, multi-agent software development operating layer that routes work across Codex, Claude Code, Cursor, and Gemini — preserving context, checkpointing state with Git, and verifying eve.

How to install AI Dev Orchestrator Complete

This entry records only its repository, not the path inside it, so there is no exact command to give. Open Mandeep15686/AI-dev-orchestrator-complete and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What AI Dev Orchestrator Complete does

A local-first, multi-agent software development operating layer that routes work across **Codex, Claude Code, Cursor, and Gemini** — preserving context, checkpointing state with Git, and verifying every change before the next agent continues.

Alternatives in AI

  • LongHorizon Harness — The long-horizon computer-use harness 1.3k ★
  • Claudekit — by Carl Rannaberg - Impressive CLI toolkit providing auto-save checkpointing, code quality hooks, specificatio 633 ★
  • OpenSwarm — OpenSwarm — Autonomous AI dev team orchestrator powered by Claude Code CLI 589 ★

README

AI Dev Orchestrator

A local-first, multi-agent software development operating layer that routes work across **Codex, Claude Code, Cursor, and Gemini** — preserving context, checkpointing state with Git, and verifying every change before the next agent continues.


Architecture at a Glance

UI (Tauri/React) → IPC Bridge → Orchestration Core (TypeScript)
                                       ↓
                              Agent Adapter Layer
                        ┌─────┬──────┬───────┬──────┐
                      Codex  Claude  Cursor  Gemini
                        └─────┴──────┴───────┴──────┘
                                       ↓
                          Git Repository (source of truth)
                          SQLite (orchestration metadata)
                          CodeGraph (local AST index)

Monorepo Structure

ai-dev-orchestrator/
├── src-tauri/              # Rust: process mgmt, git, keychain, SQLite
├── packages/
│   ├── protocol/           # Shared TypeScript types + event catalog
│   ├── core/               # Orchestration logic (all 10 subsystems)
│   ├── agents/
│   │   ├── shared/         # AgentAdapter interface + BaseAgentAdapter
│   │   ├── claude/         # Claude Code adapter (CLI + SDK)
│   │   ├── codex/          # OpenAI Codex adapter (CLI + ACP)
│   │   ├── cursor/         # Cursor adapter (CLI + ACP)
│   │   └── gemini/         # Gemini adapter (REST API)
│   ├── git/                # GitEngine (TypeScript wrapper)
│   ├── storage/            # Database (SQLite via better-sqlite3)
│   ├── security/           # PermissionManager
│   ├── codegraph/          # CodeGraphProxy (MCP wrapper)
│   └── testing/            # VerificationEngine
└── apps/
    └── desktop/            # React + Tauri UI

Key Subsystems

Subsystem File Responsibility
OrchestratorCore core/OrchestratorCore.ts Main loop — coordinates all subsystems
TaskPlanner core/TaskPlanner.ts Decomposes goal