用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/az9713/pilot-in-command-workflow --skill pic-handoff命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Pre-flight dependency risk assessment for the planning phase. Use BEFORE writing code when choosing libraries, designing architecture, or setting up a new project. Prevents dependency hell, version conflicts, and abandoned-library traps. Especially critical for ML/AI projects with heavy dependencies.
View detailed audit log for workflow - shows agent executions, tool usage, and decision trail
Escalate a conflict between PICs to the user for resolution
正在显示 SKILL.md
基于 SOC 职业分类
| name | pic-handoff |
| description | Execute a phase transition from current PIC to next PIC |
| args | [handoff notes] |
You are executing a phase transition in the PIC workflow. Follow this protocol exactly.
Handoff notes provided: $ARGS
Read .pic/state.json to get current workflow state.
If no workflow:
No active workflow. Use `/pic-start [problem]` first.
And stop.
If workflow is complete:
Workflow [id] is already complete. All phases have finished.
And stop.
Read .pic/config.json to get:
Determine the current phase and PIC. Validate that:
in_progressLook up the next phase in the configured order.
If current phase is 'review' (final phase):
Write to .pic/handoffs/[workflow]-[from]-to-[to].md:
# Handoff: [From Phase] → [To Phase]
**Workflow**: [workflow id]
**Timestamp**: [ISO timestamp]
**From PIC**: [from agent]
**To PIC**: [to agent]
## Phase Summary
### Completed Work
[Summary of what the outgoing PIC accomplished]
### Deliverables
- [List of artifacts produced]
### Handoff Notes
[User-provided notes: $ARGS]
## Context for Next Phase
### Key Findings
[Important information for the next PIC]
### Open Questions
[Unresolved items the next PIC should address]
### Risks/Concerns
[Issues to be aware of]
## Exit Criteria Verification
| Criterion | Status |
|-----------|--------|
| [Expected deliverable] | [Met/Not Met] |
Update .pic/state.json:
completed with timestampin_progress with timestampcurrentPhase and currentPIChandoffs arrayAppend to .pic/status-log.jsonl:
{"timestamp": "[ISO]", "event": "phase_handoff", "from": "[from phase]", "to": "[to phase]", "notes": "[notes]"}
## Phase Transition Complete
**From**: [From Phase] ([from PIC])
**To**: [To Phase] ([to PIC])
### [From Phase] Summary
[Brief summary of completed work]
### [To Phase] Objectives
[What the next PIC should focus on]
### Handoff Record
Saved to: .pic/handoffs/[filename]
The [To Phase] PIC is now active.
Read .pic/config.json to get the taskAgentType for the next phase.
Read the corresponding instructions file from .claude/agents/pic-[phase].md.
Use the Task tool with:
taskAgentType from config (e.g., planner, builder, reviewer)| Phase | taskAgentType |
|---|---|
| research | Explore |
| planning | planner |
| design | planner |
| implementation | builder |
| testing | test-writer |
| review | reviewer |
If transitioning from Review (final phase):
## Workflow Complete
**Workflow ID**: [id]
**Problem**: [problem]
**Duration**: [time from start to finish]
### Phase Summary
| Phase | Duration | Decisions |
|-------|----------|-----------|
| [phase] | [duration] | [count] |
...
### Deliverables
[List of all artifacts produced]
### Final Status
All phases completed successfully.
Use `/pic-start` to begin a new workflow.
Before executing handoff:
requireHandoffApproval is true in config, ask user to confirm