spec_driven_dev_execute_start
Initiate task execution based on specified requirements, guiding users through predefined workflows for structured development. Supports feature-specific tasks and session tracking.
Instructions
Start the task execution phase and provide guidance for task execution
Input Schema
Name | Required | Description | Default |
---|---|---|---|
feature_name | Yes | Feature name | |
session_id | Yes | Session identifier | |
task_id | No | Optional: Specify the task ID to execute; if not specified, the next unfinished task will be executed |
Input Schema (JSON Schema)
{
"properties": {
"feature_name": {
"description": "Feature name",
"type": "string"
},
"session_id": {
"description": "Session identifier",
"type": "string"
},
"task_id": {
"description": "Optional: Specify the task ID to execute; if not specified, the next unfinished task will be executed",
"type": "string"
}
},
"required": [
"session_id",
"feature_name"
],
"type": "object"
}