Cloud Delegation
Use this skill when the task is large enough to benefit from multiple Codex runs, worktrees, or specialized passes.
Workflow
- Separate blocking work from parallel sidecar work.
- Assign each delegated task a narrow objective and write scope.
- Require the delegated worker to report changed files and validation run.
- Integrate results quickly instead of waiting on every branch.
- Keep final synthesis centralized.
Good delegated tasks
- isolated test authoring
- docs updates after implementation
- codebase reconnaissance on a bounded topic
- verification passes that can run while implementation continues
Avoid
- delegating the immediate critical path
- overlapping write scopes
- vague asks like "analyze everything"
