speckit_implement
Execute implementation tasks for project specifications and workflows through guided prompts covering planning, tasks, and implementation phases.
Instructions
Execute implementation
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:319-332 (handler)The handler function that executes the 'speckit_implement' tool. It returns a standardized message prompting the language model to read and adhere to the 'commands/speckit.implement' guidelines file for implementation tasks.// 处理 Implement (实施) 相关的逻辑 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:178-185 (registration)Registration of the 'speckit_implement' tool in the ListToolsRequestSchema handler, including name, description, and empty input schema (no arguments required).{ name: "speckit_implement", description: "Execute implementation", inputSchema: { type: "object", properties: {}, }, },
- src/index.ts:181-184 (schema)Input schema definition for the 'speckit_implement' tool: an empty object, indicating no input parameters are required.inputSchema: { type: "object", properties: {}, },
- src/index.ts:212-214 (handler)Dispatch logic in the CallToolRequestSchema handler's switch statement that routes 'speckit_implement' calls to the handleImplement method.case "speckit_implement": result = await this.handleImplement(commandsPath); break;