Skip to main content
Glama

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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.`, }, }, ], }; }
  • 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;

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/anyiba/spec-kit-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server