Skip to content
K

mm_plan_feature

Create a complete feature scaffold in one call — creates the feature, creates each spec (with spec.md + empty implementation.md), and links all specs to the feature.

  • Category: Workflows
  • Source: Built-in
  • Required parameters: 3
  • Total parameters: 5
ParameterTypeRequiredDescription
project_pathstringYesAbsolute path to the project root
namestringYesFeature name
descriptionstringNoFeature description
prioritystring (enum: high, medium, low)NoPriority level
specsarray of objectYesList of spec outlines to create and link
{
"tool": "mm_plan_feature",
"arguments": {
"project_path": "/Users/you/projects/my-app",
"name": "My Example",
"description": "A brief description of the item",
"priority": "high",
"specs": [
"example-spec"
]
}
}
  • mm_daily_brief - Generate a structured morning summary with active tasks, blockers, recently c…
  • mm_suggest_next - Recommend what to work on next based on in-progress tasks, feature priority, …
  • mm_get_guidance - Get contextual guidance suggestions based on project state
  • mm_start_task - Mark a task as in-progress and return context for starting work — spec conten…
  • mm_complete_task - Mark a task done with cascading rollups. Runs project tests first — fails if …