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 ページを確認してインストールできます。
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.
SOC 職業分類に基づく
| 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 的需求和验收标准,等待用户确认后进入下一阶段。