crew-plan
Create a new change proposal and enter the Plan phase of the PDEVI workflow. Supports Standard, Express, and Prototype modes.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a new change proposal and enter the Plan phase of the PDEVI workflow. Supports Standard, Express, and Prototype modes.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
List available domain specialists that can be activated for the DevCrew team — covering game dev, security, DevOps, AI/ML, and more.
Run a phase audit and consistency check on the current change. Validates all checklist items before advancing to the next PDEVI phase.
Initialize a DevCrew workspace and activate the full AI team orchestration protocol — PDEVI workflow, persistent memory, checkpoint-based quality control.
Archive completed changes and consolidate agent memory. Moves change artifacts to archive and updates each agent's long-term knowledge base.
View current DevCrew workspace status — active changes, current phase, progress, and open blockers.
| name | crew.plan |
| user-invocable | true |
| description | Create a new change proposal and enter the Plan phase of the PDEVI workflow. Supports Standard, Express, and Prototype modes. |
| metadata | {"author":"lordmos","version":"0.5.1"} |
Run the check.sh script in this skill's directory:
STATUS: NOT_INITIALIZED → Stop. Tell the user: "DevCrew 工作区尚未初始化,请先运行 /crew.init"STATUS: INITIALIZED → Use the output as workspace context. Proceed below.创建一个新的变更(change),自动推断工作模式,进入 PDEVI 工作流的 Plan 阶段。
npx @lordmos/dev-crew plan <name> [options]
参数:
| 选项 | 说明 | 示例 |
|---|---|---|
<name> | 变更名称(kebab-case) | add-auth-middleware |
-d, --description | 变更描述 | -d "为 API 添加 JWT 认证" |
-m, --mode | 工作模式 | -m express |
crew_plan(cwd: string, name: string, description?: string, mode?: "standard" | "express" | "prototype")
未显式指定模式时,自动推断:
| 信号 | 推断模式 |
|---|---|
| 描述含 fix / bug / hotfix / patch | Express(P → E → V) |
| 描述含 spike / prototype / poc | Prototype(P → D → E) |
| 其他 | Standard(P → D → E → V → I) |
dev-crew/changes/<name>/
├── proposal.md ← PdM 需求文档(含验收标准)
└── design.md ← Architect 技术方案(Express 模式不创建)
Plan 创建后,PdM 填写 proposal.md 的需求和验收标准,等待用户确认后进入下一阶段。