spec_driven_dev_tasks_start
Initiate task planning by generating actionable tasks for a specified feature, guiding developers from requirements to execution with structured workflows.
Instructions
Start the task planning phase and provide guidance for creating the task list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
feature_name | Yes | Feature name | |
session_id | Yes | Session identifier |
Input Schema (JSON Schema)
{
"properties": {
"feature_name": {
"description": "Feature name",
"type": "string"
},
"session_id": {
"description": "Session identifier",
"type": "string"
}
},
"required": [
"session_id",
"feature_name"
],
"type": "object"
}