mm_add_task
Add a task to a spec’s implementation.md. Tasks are added to the Backlog section by default.
At a Glance
Section titled “At a Glance”- Category: Entity Creation
- Source: Built-in
- Required parameters: 3
- Total parameters: 5
Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
project_path | string | Yes | Absolute path to the project root |
spec_path | string | Yes | Spec folder name (e.g., ‘2025-12-09-badges’) or full path |
title | string | Yes | Task title |
status | string (enum: completed, in_progress, blocked, backlog) | No | Task status (default: backlog) |
subtasks | array of string | No | Optional list of subtask titles |
Example
Section titled “Example”{ "tool": "mm_add_task", "arguments": { "project_path": "/Users/you/projects/my-app", "spec_path": "2026-01-15-my-feature", "title": "My Example", "status": "completed", "subtasks": [ "example-subtask" ] }}Related Tools
Section titled “Related Tools”mm_create_feature- Create a new feature to group related specs. Features are stored in .mm/featu…mm_create_spec- Create a new spec with proper structure. Creates spec.md and implementation.m…mm_update_task- Update a task’s status in implementation.md. Moves the task to the appropriat…mm_link_spec- Link an existing spec to a feature. Updates the feature’s linked_specs array …mm_create_issue- Create a new issue for tracking bugs or problems. Creates issue file and upda…