一键导入
architecture
Create high-level product architecture — system design, tech stack, structural decisions. Stage 1 only. For phase specs use /spec.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create high-level product architecture — system design, tech stack, structural decisions. Stage 1 only. For phase specs use /spec.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Enforces staged execution discipline on large tasks: a written stage plan, parallel delegation where the runtime supports it, a failable verification check at each stage, and a skeptical self-review before delivery. Trigger when the user explicitly asks ("do this thoroughly", "be systematic", "deep work mode") OR when the task objectively spans multiple files, multiple sources, or multiple sessions. Do NOT trigger on ordinary multi-step requests that a direct attempt handles fine.
Bootstrap project orchestration with beads task tracking.
Core engineering principles for implementation tasks
Create beads from a spec (full decomposition) or from user input (ad-hoc issues). Single entry point for all bead creation.
Dispatch the implementation supervisor for a bead task. Resolves the correct supervisor from the assignee field, checks branch state, and dispatches with full context.
QA finalization gate — validates spec conformity, runs tests/build/lint, produces a structured QA report. Auto-dispatches the supervisor for rework on FAIL. Last gate before human merge.
| name | architecture |
| description | Create high-level product architecture — system design, tech stack, structural decisions. Stage 1 only. For phase specs use /spec. |
| user_invocable | true |
Create high-level product architecture and system design from an approved PRD.
docs/prd/PRD-{name}.md)Dispatch using exactly these parameters — no more, no less:
Agent(
subagent_type="architect",
prompt="Create high-level product architecture for the requested solution. Read the PRD at {prd_path} as your input requirements. This is a Stage 1 architecture document — focus on system design, tech stack, crate/package structure, and key design decisions. Do NOT write phase-level implementation specs (that's /spec). Save the architecture document to {arch_path} with status DRAFT. Iterate with the user until APPROVED."
)
Do NOT add extra parameters unless the user explicitly requests it.