spec_driven_dev_tasks_confirmed
Confirm task planning completion and transition to execution phase using session ID and feature name within a structured development workflow.
Instructions
Confirm the completion of task planning and proceed to the execution phase
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"
}