feat: reintroduce task-master generate command for task file generation (#1446)

This commit is contained in:
Ralph Khreish
2025-11-25 18:32:50 +01:00
committed by GitHub
parent 1936f2aba0
commit 2316e94b28
25 changed files with 1602 additions and 22 deletions

View File

@@ -48,11 +48,12 @@ import {
registerAutopilotFinalizeTool,
registerAutopilotAbortTool,
registerGetTasksTool,
registerGetTaskTool
registerGetTaskTool,
registerGenerateTool
} from '@tm/mcp';
/**
* Comprehensive tool registry mapping all 44 tool names to their registration functions
* Comprehensive tool registry mapping tool names to their registration functions
* Used for dynamic tool registration and validation
*/
export const toolRegistry = {
@@ -98,7 +99,8 @@ export const toolRegistry = {
autopilot_complete: registerAutopilotCompleteTool,
autopilot_commit: registerAutopilotCommitTool,
autopilot_finalize: registerAutopilotFinalizeTool,
autopilot_abort: registerAutopilotAbortTool
autopilot_abort: registerAutopilotAbortTool,
generate: registerGenerateTool
};
/**