Delegation coordinator
Skill rumotion/ai-agent-project-template/.cline/skills/delegation-coordinator
Low-context AI agent project template for Gemini, Codex, Claude, Cline, and more. One canonical AGENTS.md, shared Memory Bank, portable skills, workflows, hooks, and deterministic validation.
npx -y skills add rumotion/ai-agent-project-template --skill delegation-coordinatorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Coordinates task delegation across Gemini, Codex, Claude, and subagents using the portable subagent contract.
SKILL.md
1.1 KB, as published. Nobody here has run it
Delegation Coordinator
Coordinates task breakdown, path ownership, worker dispatch, and evidence-grounded result validation across multi-agent sessions.
Quick Start
- Define worker tasks using the Task Envelope schema in
docs/subagent-contract.md. - Assign disjoint
owned_pathsto each worker to prevent write collisions. - Require workers to return the standard Result Envelope containing verification exit codes and diff summaries.
- Run parent verification checks before marking delegated tasks completed.
Delegation Rules
- Single Writer Rule: Ensure no two concurrent subagents own the same target file path for editing.
- Read-Only Workers: Set
read_only: truefor audit, critic, or research workers. - Deterministic Verification: Verify subagent results with explicit build, test, or lint commands before accepting the result.
- Conflict Handling: If a worker returns
status: blockedor fails verification twice, halt and escalate to parent/Codex review.