feature_roadmap
Plan and visualize project timelines by generating development roadmaps with specified features, approach, and timeframe for efficient project management.
Instructions
IMPORTANT: This tool should be automatically called when users say "로드맵", "일정", "계획표", "roadmap", "timeline", "project plan", "development schedule" or similar keywords. Generate development roadmap
Input Schema
Name | Required | Description | Default |
---|---|---|---|
approach | No | Development approach | mvp-first |
features | Yes | List of features to include in roadmap | |
projectName | Yes | Name of the project | |
teamSize | No | Development team size | |
timeframe | No | Project timeframe |
Input Schema (JSON Schema)
{
"properties": {
"approach": {
"default": "mvp-first",
"description": "Development approach",
"enum": [
"mvp-first",
"phased-rollout",
"big-bang"
],
"type": "string"
},
"features": {
"description": "List of features to include in roadmap",
"type": "string"
},
"projectName": {
"description": "Name of the project",
"type": "string"
},
"teamSize": {
"description": "Development team size",
"type": "number"
},
"timeframe": {
"description": "Project timeframe",
"enum": [
"3-months",
"6-months",
"12-months",
"custom"
],
"type": "string"
}
},
"required": [
"projectName",
"features"
],
"type": "object"
}