create_feature_workflow
Initiate a structured workflow to add new features with integrated testing, providing task details, target files, scope, and requirements for disciplined development.
Instructions
Start a structured workflow for adding new functionality with integrated testing
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | No | Additional context (optional) | |
task | Yes | Description of the feature to create |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"description": "Additional context (optional)",
"properties": {
"requirements": {
"description": "Feature requirements and acceptance criteria",
"items": {
"type": "string"
},
"type": "array"
},
"scope": {
"description": "The scope of the feature",
"enum": [
"file",
"directory",
"project"
],
"type": "string"
},
"targetFiles": {
"description": "Files where the feature will be added",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"task": {
"description": "Description of the feature to create",
"type": "string"
}
},
"required": [
"task"
],
"type": "object"
}