analyze_requirements
Analyze project requirements by identifying key needs, stakeholders, and constraints. Use methods like MOSCOW, Kano, or value-effort to prioritize and clarify essential features for effective planning.
Instructions
IMPORTANT: This tool should be automatically called when users say "요구사항 분석", "필요한 것들", "requirements analysis", "what we need", "analyze requirements", "필수 기능" or similar keywords. Analyze project requirements
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| analysisMethod | No | Analysis method | moscow |
| constraints | No | Project constraints (timeline, budget, technical) | |
| requirements | Yes | List of requirements to analyze | |
| stakeholders | No | Project stakeholders (e.g., users, admins, developers) |
Input Schema (JSON Schema)
{
"properties": {
"analysisMethod": {
"default": "moscow",
"description": "Analysis method",
"enum": [
"moscow",
"kano",
"value-effort"
],
"type": "string"
},
"constraints": {
"description": "Project constraints (timeline, budget, technical)",
"type": "string"
},
"requirements": {
"description": "List of requirements to analyze",
"type": "string"
},
"stakeholders": {
"description": "Project stakeholders (e.g., users, admins, developers)",
"type": "string"
}
},
"required": [
"requirements"
],
"type": "object"
}