Skip to main content
Glama
Zenobia000

VibeCoding System

by Zenobia000

generate-impl-plan

Create and save a detailed project implementation plan with VibeCoding System’s AI-guided framework to streamline MVP and POC development processes.

Instructions

Generate a project implementation plan and save it

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Core handler function that loads the current project, reads a design-phase template prompt, customizes it with project name, creates directory if needed, writes IMPLEMENTATION_PLAN.md file, and returns success message.
    async generateProjectImplementationPlan(): Promise<string> {
      const project = this.loadCurrentProject();
      if (!project) {
        throw new Error('No active project found. Please start clarification first.');
      }
    
      const promptPath = resolve(__dirname, '../../../.vibecoding/prompts/workflows/design-phase.md');
      let planContent = `Failed to load implementation plan template.`;
      if (existsSync(promptPath)) {
        planContent = readFileSync(promptPath, 'utf-8');
      }
      
      planContent = planContent.replace(/{{projectName}}/g, project.name);
    
      const outputPath = join(project.path, '1_design', 'IMPLEMENTATION_PLAN.md');
      
      mkdirSync(path.dirname(outputPath), { recursive: true });
      writeFileSync(outputPath, planContent);
    
      return `✅ Implementation plan generated and saved to: ${outputPath}`;
    }
  • MCP CallToolRequestSchema handler case for 'generate-impl-plan' that delegates to VibeContextManager.generateProjectImplementationPlan() and returns the result as text content.
    case 'generate-impl-plan': {
      const resultMessage = await contextManager.generateProjectImplementationPlan();
      return {
        content: [
          {
            type: 'text',
            text: resultMessage
          }
        ]
      };
    }
  • Tool registration in ListTools response, including name, description, and empty input schema (no parameters required).
      name: 'generate-impl-plan',
      description: 'Generate a project implementation plan and save it',
      inputSchema: {
        type: 'object',
        properties: {},
        required: []
      }
    }
  • Input schema definition for the tool (empty object, no required params).
        type: 'object',
        properties: {},
        required: []
      }
    }
Install Server

Other Tools

Related Tools

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/Zenobia000/vibeCoding-mcp'

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