speckit_tasks
Generate task lists for project specifications and implementation phases using guided prompts to manage planning workflows.
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 constructs and returns a prompt message directing the AI to read and apply the task breakdown template from the 'commands' directory.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:170-177 (schema)Defines the tool schema including name, description, and empty input schema in the tools/list response.{ name: "speckit_tasks", description: "Generate task list", inputSchema: { type: "object", properties: {}, }, },
- src/index.ts:209-211 (registration)Registers the tool handler dispatch in the CallToolRequestSchema switch statement.case "speckit_tasks": result = await this.handleTasks(commandsPath); break;