First-class delegation skills for the delegate-team supersystem. Each skill lets
an orchestrating agent hand a bounded coding task to a CLI implementer agent
(Grok, Codex, OpenCode, Kimi, AGY), then review the diff and land it itself.
Use when the user says "delegate this to Grok", "have Codex do X", "run it
through opencode", or any phrasing that should drive a background implementer
while the orchestrator stays the reviewer. Composes with `dt delegate` (the CLI
entry point) and the /apeiron router.
Installation
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
First-class delegation skills for the delegate-team supersystem. Each skill lets
an orchestrating agent hand a bounded coding task to a CLI implementer agent
(Grok, Codex, OpenCode, Kimi, AGY), then review the diff and land it itself.
Use when the user says "delegate this to Grok", "have Codex do X", "run it
through opencode", or any phrasing that should drive a background implementer
while the orchestrator stays the reviewer. Composes with `dt delegate` (the CLI
entry point) and the /apeiron router.
license
MIT
compatibility
Requires the matching CLI installed + authenticated (e.g. `grok` for grok-delegate), Node 18+, and git. The orchestrating agent must be able to run shell commands and read files.
metadata
{"version":"1.0.0"}
delegate-skills — delegate to a CLI implementer, review the diff yourself
This component bundles five standalone delegate skills. Each one wraps a
different CLI coding agent behind the same loop:
Write a brief — a self-contained task description the implementer can
execute blind (goal, current state, what to change, what to leave untouched,
the project's real gate commands, and a report contract).
Dispatch — hand the brief to the CLI agent via its scripts/relay.mjs
helper, which captures the run and writes a structured result.json.
Wait — the helper blocks until the run finishes.
Review — re-run the project's gates yourself, read the diff, run guard
skills. Never trust the self-report.
Land — the orchestrator commits the verified work. The relay never commits.
Skills
Skill
CLI agent
dt delegate agent id
grok-delegate
Grok Build (grok)
grok
codex-delegate
Codex (codex)
codex
opencode-delegate
OpenCode
opencode
kimi-delegate
Kimi
kimi
agy-delegate
AGY
agy
CLI entry point
The dt CLI exposes the same loop without loading a skill manually:
dt delegate <agent> --help shows all flags. The command resolves
delegate-skills/<agent>-delegate/scripts/relay.mjs and invokes it — the relay
logic lives in the skill, not duplicated in the CLI.