plan-feature
Use this tool to map out feature implementation with a structured, step-by-step approach. Specify tasks, requirements, and planning scope to streamline development processes with AI-driven guidance.
Instructions
Plan feature implementation with step-by-step approach
Input Schema
Name | Required | Description | Default |
---|---|---|---|
provider | No | AI provider to use | gemini |
requirements | No | Specific requirements or constraints | |
scope | No | Planning scope | standard |
task | Yes | What to plan (e.g., 'add user profiles', 'implement payment system') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"provider": {
"default": "gemini",
"description": "AI provider to use",
"enum": [
"openai",
"gemini",
"azure",
"grok"
],
"type": "string"
},
"requirements": {
"description": "Specific requirements or constraints",
"type": "string"
},
"scope": {
"default": "standard",
"description": "Planning scope",
"enum": [
"minimal",
"standard",
"comprehensive"
],
"type": "string"
},
"task": {
"description": "What to plan (e.g., 'add user profiles', 'implement payment system')",
"type": "string"
}
},
"required": [
"task"
],
"type": "object"
}