spec_driven_dev_requirements_confirmed
Validate and confirm the completion of requirements collection for a specific feature to transition seamlessly into the design phase of development.
Instructions
Confirm the completion of requirements collection and proceed to the design 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"
}