begin_feature_discussion
Initiate structured discussions for new software features with AI guidance, focusing on implementation, architecture, and best practices to streamline development decisions.
Instructions
Start a new feature discussion
Input Schema
Name | Required | Description | Default |
---|---|---|---|
title | Yes | Title or name of the feature |
Input Schema (JSON Schema)
{
"properties": {
"title": {
"description": "Title or name of the feature",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}