Files
claude-task-master/.changeset/two-bats-smoke.md
Eyal Toledano d0092a6e6f feat: implement expand-task MCP command
- Create direct function wrapper in expand-task.js with error handling

- Add MCP tool integration for breaking down tasks into subtasks

- Update task-master-core.js to expose expandTaskDirect function

- Update changeset to document the new command

- Parameter support for subtask generation options (num, research, prompt, force)
2025-04-08 15:51:55 -04:00

907 B

task-master-ai
task-master-ai
patch
  • Split monolithic task-master-core.js into separate function files within direct-functions directory
  • Implement update-task MCP command for updating a single task by ID
  • Implement update-subtask MCP command for appending information to specific subtasks
  • Implement generate MCP command for creating individual task files from tasks.json
  • Implement set-status MCP command for updating task status
  • Implement show-task MCP command for displaying detailed task information
  • Implement next-task MCP command for finding the next task to work on
  • Implement expand-task MCP command for breaking down tasks into subtasks
  • Document MCP server naming conventions in architecture.mdc and mcp.mdc files (file names use kebab-case, direct functions use camelCase with Direct suffix, tool registration functions use camelCase with Tool suffix, and MCP tool names use snake_case)