speckit_tasks
Generate structured task lists for project specifications and implementation phases using guided prompts.
Instructions
Generate task list
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:305-317 (handler)The core handler function for the 'speckit_tasks' tool. It returns a structured prompt message that instructs the LLM to read a task template file and generate a list of actionable tasks based on the technical plan.private async handleTasks(commandsPath: string) { return { messages: [ { role: "user", content: { type: "text", text: `Please read the task breakdown template at 'commands/speckit.tasks'[Note that if this file exists, it is generally in the current directory's commands/ directory,Scan this folder directly to obtain it,And the suffixes of each project are not consistent: speckit.tasks.xxx] [It's important. You must read it]. Use this template to break down the technical plan into a list of actionable tasks.`, }, }, ], }; }
- src/index.ts:171-177 (registration)Registration of the 'speckit_tasks' tool in the MCP server's tools list, including name, description, and empty input schema.name: "speckit_tasks", description: "Generate task list", inputSchema: { type: "object", properties: {}, }, },
- src/index.ts:173-176 (schema)Input schema definition for the 'speckit_tasks' tool, which accepts an empty object (no parameters).inputSchema: { type: "object", properties: {}, },
- src/index.ts:209-211 (registration)Dispatch/registration case in the tool request handler switch statement that routes 'speckit_tasks' calls to the handleTasks method.case "speckit_tasks": result = await this.handleTasks(commandsPath); break;