provide_feature_input
Submit feature discussion responses to AI-driven prompts, enabling informed input for software development planning, implementation, and best practices.
Instructions
Provide information for the current feature discussion prompt
Input Schema
Name | Required | Description | Default |
---|---|---|---|
featureId | Yes | ID of the feature being discussed | |
response | Yes | Your response to the current prompt |
Input Schema (JSON Schema)
{
"properties": {
"featureId": {
"description": "ID of the feature being discussed",
"type": "string"
},
"response": {
"description": "Your response to the current prompt",
"type": "string"
}
},
"required": [
"featureId",
"response"
],
"type": "object"
}