一键导入
create-tasks
Decomposes a requirement into tasks and inserts them into the DevFlow database, auto-spawning reviews for qualifying task types.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Decomposes a requirement into tasks and inserts them into the DevFlow database, auto-spawning reviews for qualifying task types.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | create-tasks |
| description | Decomposes a requirement into tasks and inserts them into the DevFlow database, auto-spawning reviews for qualifying task types. |
Decomposes a single requirement into discrete tasks and records them in the DevFlow database. Reviews are auto-spawned by the server for plan, build, test, and configure task types.
Run /create-tasks when a requirement is ready to be broken down into actionable units of work.
Identify the requirement — ask the user for a requirement_id, or call read_requirements to list open requirements and let the user choose.
Check existing tasks — call read_tasks filtered by requirement_id to see what already exists. Avoid inserting duplicates.
Decompose — analyse the requirement description and produce a list of tasks. For each task determine:
title: a short, action-oriented label (e.g. "Write init.sql schema")task_type: one of plan, build, test, review, document, configure, researchstatus: always 'pending' for new tasksReview-spawning rule — inform the user which tasks will auto-spawn a review:
plan, build, test, configurereview, document, researchInsert tasks — call insert_task for each task. The server returns review_id alongside each inserted task row:
review_id is not null, a review has been auto-spawnedreview_id is null, no review was spawned (expected for document, research, review types)Report — summarise what was created:
build task and a test task).task_type to a value outside the allowed enum: plan, build, test, review, document, configure, research.insert_review manually — the server handles auto-spawning.Reads a project brief from the workspace and ingests it into the DevFlow database — creating a project row and deriving requirements.
Surfaces all pending reviews and guides the reviewer agent through approving or rejecting each one.