Route tasks to Claude, Codex, or Cursor—then review and commit
One orchestrator, many AI agents, and you keep the commit keys.

What it does
This skills package turns a shelf of incompatible AI coding CLIs—Claude Code, OpenAI Codex, Cursor, Aider, Grok, and nine others—into uniform subcontractors for an orchestrating agent. You dispatch a self-contained task to a specific implementer (or to a named lane like feature or tests), the relay runs it in a separate process, and you get back a diff and a structured report. You review, rerun the gates, and commit yourself; the relay is physically incapable of landing code.
The interesting bit
The entire trust model is built on deliberate boredom. Every relay is a single Node script using only built-ins—zero dependencies, zero network calls, zero telemetry—so the only thing it can leak is the command it forwards. By refusing to abstract away the implementer’s own flags and permission modes, it keeps the weirdness visible instead of pretending all agents behave alike.
Key highlights
- Supports 14 implementer CLIs, from mainstream tools like
codexandclaudeto newer entrants likegrok,kimi, andvibe - Fleet lanes let you bind kinds of work to specific agents—
uito Cursor,teststo Codex—without hard-coding flags in every prompt - Relays speak a common
delegate-relay.result.v1contract (status,exitCode,touchedFiles, session ID) so swapping agents doesn’t change your review loop - Project-level fleet config is content-bound to explicit approval; clone or edit a lane and it fails closed until you re-approve
- The setup skill discovers what is already installed on your machine rather than pulling down new binaries
Caveats
- Several agents lack reliable read-only headless modes; Grok in particular cannot be prevented from writing, so the relay only reports a
readOnlyViolationtripwire after the fact - Cline does not support headless JSON resume through the relay, and some agents (Kimi, Pi, Warp) offer no CLI-enforced read-only mode at all
- Aider’s upstream defaults auto-commit and dirty-commit, which the relay has to forcibly disable on every run
Verdict
Worth installing if you already use multiple AI coding agents and want an orchestrator to route tasks without surrendering git. Skip it if you live inside one IDE with one agent, or if you expect the abstraction to sand off every implementer’s sharp edges.
Frequently asked
- What is amElnagdy/delegate-skills?
- One orchestrator, many AI agents, and you keep the commit keys.
- Is delegate-skills open source?
- Yes — amElnagdy/delegate-skills is open source, released under the MIT license.
- What language is delegate-skills written in?
- amElnagdy/delegate-skills is primarily written in JavaScript.
- How popular is delegate-skills?
- amElnagdy/delegate-skills has 1.2k stars on GitHub.
- Where can I find delegate-skills?
- amElnagdy/delegate-skills is on GitHub at https://github.com/amElnagdy/delegate-skills.