get_development_guidance
Translate architectural decisions into specific coding tasks and implementation patterns for your development phase, technology stack, and team context.
Instructions
Get comprehensive development guidance that translates architectural decisions and workflow recommendations into specific coding tasks, implementation patterns, and development roadmap
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| developmentPhase | Yes | Current development phase | |
| adrsToImplement | No | List of ADR titles or file paths that need to be implemented in code | |
| technologyStack | No | Current technology stack (e.g., ["TypeScript", "React", "Node.js", "PostgreSQL", "Docker"]) | |
| currentProgress | No | What has already been implemented or current state of development | |
| teamContext | No | ||
| timeline | No | Development timeline or deadline constraints | |
| focusAreas | No | Specific areas to focus on (e.g., ["API design", "database schema", "testing strategy", "deployment pipeline"]) |
Implementation Reference
- src/types/tool-arguments.ts:36-47 (schema)TypeScript interface defining the input arguments (GetDevelopmentGuidanceArgs) for the get_development_guidance MCP tool.export interface GetDevelopmentGuidanceArgs { developmentPhase?: string; adrsToImplement?: string[]; technologyStack?: string[]; currentProgress?: string; teamContext?: { size?: string; experienceLevel?: string; }; timeline?: string; focusAreas?: string[]; }
- src/tools/tool-catalog.ts:1196-1215 (registration)Central registration of the get_development_guidance tool in TOOL_CATALOG Map. Defines metadata, category ('workflow'), input schema, token cost, related tools, and CE-MCP support for dynamic MCP tool discovery and listing.TOOL_CATALOG.set('get_development_guidance', { name: 'get_development_guidance', shortDescription: 'Get development guidance', fullDescription: 'Provides development guidance and best practices.', category: 'workflow', complexity: 'moderate', tokenCost: { min: 1500, max: 3000 }, hasCEMCPDirective: true, // Phase 4.3: Moderate tool - development guidance relatedTools: ['get_workflow_guidance', 'mcp_planning'], keywords: ['development', 'guidance', 'best-practices'], requiresAI: true, inputSchema: { type: 'object', properties: { topic: { type: 'string' }, level: { type: 'string', enum: ['beginner', 'intermediate', 'advanced'] }, }, required: ['topic'], }, });
- Tool name and description listed in server context generator's hardcoded tool list for documentation and categorization in .mcp-server-context.md.name: 'get_development_guidance', description: 'Get development guidance and best practices',