원클릭으로
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 직업 분류 기준
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.
| 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.