spec_driven_dev_design_start
Initiate the design documentation phase for a specific feature by providing structured guidance and frameworks to create design documents.
Instructions
Start the design documentation phase and provide guidance for creating design documents
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"
}