Skip to main content
Glama

speckit_implement

Execute project implementation by following guided prompts that manage specifications, planning, and tasks to complete development phases.

Instructions

Execute implementation

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The core handler function for the 'speckit_implement' tool. It generates a user message instructing the LLM to read and follow the 'commands/speckit.implement' guidelines file to execute implementation tasks.
    private async handleImplement(commandsPath: string) { return { messages: [ { role: "user", content: { type: "text", text: `Please read the implementation guidelines at 'commands/speckit.implement'[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.implement.xxx] [It's important. You must read it]. Follow these guidelines to execute the implementation tasks.`, }, }, ], }; }
  • src/index.ts:212-214 (registration)
    Tool registration and dispatch in the CallToolRequestSchema handler's switch statement, calling handleImplement.
    case "speckit_implement": result = await this.handleImplement(commandsPath); break;
  • Tool schema definition (with empty input schema) registered in the ListToolsRequestSchema response.
    { name: "speckit_implement", description: "Execute implementation", inputSchema: { type: "object", properties: {}, }, },
  • src/index.ts:111-112 (registration)
    Related prompt handler dispatch for 'speckit.implement' (note dot notation), reusing the same handleImplement function.
    case "speckit.implement": return await this.handleImplement(commandsPath);

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