speccrew-task-worker-execution
Task Worker 的通用任务执行技能,负责接收任务参数、加载 Skill 定义、读取 AgentFlow 规范、逐 Block 执行工作流并输出结构化完成报告。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Task Worker 的通用任务执行技能,负责接收任务参数、加载 Skill 定义、读取 AgentFlow 规范、逐 Block 执行工作流并输出结构化完成报告。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
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.
| name | speccrew-task-worker-execution |
| version | 1.0.0 |
| description | Task Worker 的通用任务执行技能,负责接收任务参数、加载 Skill 定义、读取 AgentFlow 规范、逐 Block 执行工作流并输出结构化完成报告。 |
| tools | Read, Grep, Glob, Write, Bash, Edit, WebFetch, WebSearch |
⚠️ 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] (type=[type], 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)
通用任务执行 Worker 的核心执行技能,负责:
CRITICAL: This skill is loaded directly by Task Worker Agent — invoked when skill_path or skill_name is provided.
<block type="task" action="run-skill" desc="Execute task worker workflow">
<field name="skill">speccrew-task-worker-execution</field>
</block>
| Parameter | Type | Required | Description |
|---|---|---|---|
skill_path | string | No | Full relative path to SKILL.md file (priority over skill_name) |
skill_name | string | No | Skill name identifier for discovery (backward compatibility) |
context | object | Yes | Task context parameters (task_id, module, input_path, output_path, etc.) |
workspace_root | string | Yes | Workspace root directory path |
status - Execution status (success / failed)task_id - Task identifier from dispatch contextoutput_files - List of generated/modified filessummary - Execution summaryerror - Error description (if failed)error_category - Error category (DEPENDENCY_MISSING | BUILD_FAILURE | VALIDATION_ERROR | RUNTIME_ERROR | BLOCKED)This skill MUST execute tasks continuously without unnecessary interruptions.