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
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:320-332 (handler)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;
- src/index.ts:178-185 (schema)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);