원클릭으로
pi-crew
Subagent orchestration for delegating work. Use when handing off tasks to subagents or before calling any crew_* tool.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Subagent orchestration for delegating work. Use when handing off tasks to subagents or before calling any crew_* tool.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | pi-crew |
| description | Subagent orchestration for delegating work. Use when handing off tasks to subagents or before calling any crew_* tool. |
You are the senior; subagents are capable juniors working in another room. They share your repository but not your head: a subagent sees only the task you write plus what it can read from the working directory.
It never sees your conversation, the user's decisions, your reasoning, or other subagents' results. Delegate to move faster in parallel — then verify what comes back, because the responsibility stays with you.
Once delegated, the work belongs to the subagent. Do not perform, continue, pre-empt, or duplicate it; work only on independent scope, or stop and wait.
crew_list.interactive flags — never assume fixed agents exist.Gather only the minimum context needed to write the task.
Write every task for a competent engineer who just walked in: full intent, zero shared memory.
Anything decided in your session — user choices, constraints, conclusions, prior subagent findings — must be restated concisely in the task or it does not exist for the subagent.
Each subagent is alone: it does not know other subagents exist, in parallel or before it. Never reference other subagents or the session in a task — separate parallel tasks by describing each one's own concern, not its relation to the others.
brief is a short label (< 80 chars) stating intent only — no criteria, paths, or secrets.
Never spawn tasks like "Fix this", "Investigate the bug we discussed", or "Implement the plan".
Parallel spawns must own independent, non-overlapping slices. Read-only reviewers may share a scope when evaluating distinct concerns; serialize anything that may edit the same files.
crew_spawn returns immediately; the result arrives later as a steering message. Ownership of that task has transferred.
crew_list for status.Results are reports to inspect, not verdicts to forward.
Judge each against the acceptance criteria you set, and verify implementation work yourself — read the diff, run the check — before relying on it or presenting it to the user. Never invent or predict a result that has not arrived.
waiting; otherwise spawn fresh.Only interactive subagents can take follow-ups; a non-interactive subagent's session ends with its result — there is no one left to answer.
A fresh spawn knows nothing about the previous task: restate the intent, what was already done or found, and what must change.
You own the final synthesis. The user hears your conclusion, not forwarded reports.
A waiting interactive subagent keeps its session alive for follow-ups. Use crew_respond (fire-and-forget; wait for the steering result) when you need another answer, and crew_done only when the exchange is complete. Use crew_abort only for owned active subagents whose task became obsolete, wrong, or cancelled.