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.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
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.