speccrew-system-deployer-orchestration
System Deployer 的编排调度技能,负责执行部署工作流:阶段门禁验证、IDE目录检测、准备阶段、技能调度(构建→迁移→启动→冒烟测试)、部署总结确认。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
System Deployer 的编排调度技能,负责执行部署工作流:阶段门禁验证、IDE目录检测、准备阶段、技能调度(构建→迁移→启动→冒烟测试)、部署总结确认。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | speccrew-system-deployer-orchestration |
| version | 1.0.0 |
| description | System Deployer 的编排调度技能,负责执行部署工作流:阶段门禁验证、IDE目录检测、准备阶段、技能调度(构建→迁移→启动→冒烟测试)、部署总结确认。 |
| tools | Read, Write, Glob, Grep, Bash |
⚠️ MANDATORY EXECUTION PROTOCOL — READ BEFORE EXECUTING ANY BLOCK
Step 1: Load XML workflow specification:
speccrew-workspace/docs/rules/agentflow-spec.md— this defines all block types and action-to-tool mappingsStep 2: Execute this SKILL.md's XML workflow block by block in document order. For EVERY block, you MUST follow this 3-step cycle:
📋 Block [ID] (action=[action]) — [desc] 🔧 Tool: [which IDE tool to call] ✅ Result: [output or status]Action-to-tool mapping:
action="run-skill"→ Invoke via Skill tool (pass the<field name="skill">value EXACTLY)action="run-script"→ Execute via Terminal tool (pass the<field name="command">value EXACTLY)action="dispatch-to-worker"→ Create Task via Task tool forspeccrew-task-workeraction="read-file"→ Read via Read toolaction="log"→ Output message directlyaction="confirm"→ Present to user and wait for responseStep 3: Execute ALL blocks sequentially without pausing (only stop at explicit
<event action="confirm">blocks)
System Deployer 的核心编排技能,负责:
CRITICAL: This skill is loaded directly by System Deployer Agent — do NOT invoke via Worker Agent.
<block type="task" action="run-skill" desc="System Deployer orchestration workflow">
<field name="skill">speccrew-system-deployer-orchestration</field>
</block>
| Parameter | Type | Required | Description |
|---|---|---|---|
workspace_path | string | Yes | speccrew-workspace 根目录绝对路径 |
iteration_dir | string | Yes | 当前迭代目录路径 |
update_progress_script | string | Yes | update-progress.js 脚本路径 |
status - Execution status (success / partial / failed)deployed - Boolean indicating deployment successcheckpoints - List of passed checkpointsoutput_files - List of generated/modified filessummary - Execution summarynext_steps - Suggested next actionsThis skill MUST execute tasks continuously without unnecessary interruptions.
System Designer 的核心编排技能,负责读取已确认的 Feature Spec 和 API Contract 文档,加载技术知识库,评估框架需求,调度各平台详细设计技能生成系统设计文档。支持 web、mobile、desktop 平台。
Frontend Development SOP. Guide System Developer Agent to implement frontend code according to system design documents. Reads design blueprints, extracts task checklist, and executes implementation task by task with local quality checks.
Backend Development SOP. Guide System Developer Agent to implement backend code according to system design documents. Reads design blueprints, extracts task checklist, and executes implementation task by task with local quality checks.
SpecCrew Electron Desktop Development Skill. Implements desktop application features using Electron framework based on system design documents. Handles main process (TypeScript/JavaScript), renderer process (React/Vue), IPC channels, and Electron Builder packaging.
SpecCrew Tauri Desktop Development Skill. Implements desktop application features using Tauri framework based on system design documents. Handles Rust backend commands, frontend integration, Tauri Command API, and Tauri Build packaging.
Mobile Development SOP. Guide System Developer Agent to implement mobile app code (Flutter/React Native) according to system design documents. Reads design blueprints, extracts task checklist, and executes implementation task by task with local quality checks.