spec_driven_dev_requirements_start
Initiate the requirements collection phase for a feature, providing structured guidance to gather and define development specifications efficiently.
Instructions
Start the requirements collection phase and provide guidance for requirements gathering
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"
}