delegating-plan-work
Use when preparing a repo-tracked multi-agent plan phase or todo for handoff to another agent.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when preparing a repo-tracked multi-agent plan phase or todo for handoff to another agent.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when ingesting, refreshing, listing, searching, or deleting a local corpus with Blackbird code search and `gh blackbird search --fileset`.
Use when reaching for `gh blackbird` (Blackbird code search) for cross-repo lexical, symbol, or semantic search on GitHub — finding callers, ownership, or how systems work without cloning.
Use when creating a GitHub pull request, or when updating an existing PR's title or body so it matches what the code actually does.
Use when authoring or substantially editing a design doc, architecture doc, or subsystem explanation — the "here's what's there and why" companion to an ADR's terse decision record.
Use when creating a repo-tracked multi-agent planning PR for a large project, especially when phases, living docs, parallel agent prompts, and cross-PR coordination are needed.
Use when about to call a library, crate, or framework API you haven't verified, when a dependency's behavior is surprising, when training-data memory might be stale, or when investigating how a dependency actually behaves.
| name | delegating-plan-work |
| disabled | true |
| description | Use when preparing a repo-tracked multi-agent plan phase or todo for handoff to another agent. |
Prepare a focused handoff from a durable multi-agent plan without losing context, breaking dependencies, or turning the prompt into a second plan.
This skill covers readiness and scope judgment, not session orchestration. Use the app's native session/worktree tools for the actual handoff when available.
Use this when the user wants an agent to begin, pick up, start, or continue work from a repo-tracked plan created by planning-multi-agent-projects, usually under:
docs/copilot/<date>-<project>/
Do not use this for normal app plan mode, ad hoc implementation plans, simple delegation that does not reference a repo-tracked phase/todo document, or deciding the mechanics of session creation.
Read the plan docs first:
README.md for status, dependencies, parallelism notes, and pre-made agent prompts.context.md for shared architecture, decisions, validation commands, and agent guidelines.phase-{NN}-{name}.md for the specific phase/todos.Then verify:
If dependencies are unclear, stop and ask before handoff.
The app's session model is one worktree per session = one branch = one PR; the create_pull_request tool targets the current session branch. If a phase needs multiple independent PRs (different directories, no semantic dependency), spawn multiple sessions — sequential if they share validation flakiness or compete for review attention, parallel only when the parallelism rules in this skill allow. Never instruct one session to "land PR A then start PR B from main" in the same worktree.
Start from the pre-made prompt in the plan README when one exists. Treat it as the source prompt, then make only the minimal additions needed for the current handoff. If there is no pre-made prompt, keep the brief short and point at the plan docs.
Include:
docs/copilot/<date>-<project>/).git, gh, or GitHub MCP tools — for example gh api repos/<owner>/<repo>/contents/docs/copilot/<dir>/context.md?ref=<plan-branch> -q .content | base64 -d, or git fetch origin <plan-branch> && git show origin/<plan-branch>:docs/copilot/<dir>/context.md. Do not have the child check out, merge, or rebase onto the plan branch.git pull, git merge main, git rebase main, git fetch && git merge origin/main, or git branch -u. The coordinator handles main-syncs at merge time (squash-merge resolves drift). Refactor PRs especially must stay linear — merge-from-main commits balloon the diff and destroy reviewability. Use gh pr view / gh pr checks (read-only) to inspect the session's own PR; never gh pr checkout your own PR (when local has diverged, gh creates a phantom pr/<num>/<branch> local branch that confuses tooling)./review with a different frontier model after implementation and before handing work back.For parallel work, prepare separate handoffs only for todos called out as parallel-safe or that touch disjoint files with no semantic dependency. For serial work, prepare the next handoff only after the previous result is reviewed.
If the phase doc is missing file paths, validation, or dependencies, update the plan before handoff.
Review the result before updating the plan:
/review with a different frontier model, and address or report any high-confidence findings?context.md or the phase doc?Only mark work complete after verification and the independent model review. If work is partial, update status as In progress or leave it unchanged and record the blocker.
docs/copilot/... doesn't exist on its branch and reverse-engineer how to read it.context.md and the phase doc yourself./review step before handing work back.git pull / merge main / branch -u / gh pr checkout self) from the handoff brief — long-running refactor sessions accumulate merge-from-main commits that destroy the PR's reviewability.