get_workflow_guidance
Generate intelligent workflow guidance and tool recommendations tailored to your project goals, context, and assets to ensure efficient decision-making and outcomes.
Instructions
Get intelligent workflow guidance and tool recommendations based on your goals and project context to achieve expected outcomes efficiently
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| availableAssets | No | What assets you already have (e.g., ["PRD.md", "existing ADRs", "codebase", "documentation", "test suite"]) | |
| goal | Yes | What you want to accomplish (e.g., "analyze new project", "document existing decisions", "security audit", "modernize legacy system") | |
| primaryConcerns | No | Main areas of concern (e.g., ["security", "performance", "maintainability", "scalability", "compliance"]) | |
| projectContext | Yes | Current state of your project (e.g., "new project", "existing project with ADRs", "legacy codebase", "greenfield development") | |
| timeframe | No | Available time/effort level |
Implementation Reference
- src/types/tool-arguments.ts:7-13 (schema)Type definition (schema) for the input arguments of the get_workflow_guidance tool.export interface GetWorkflowGuidanceArgs { goal: string; projectContext: string; availableAssets?: string[]; timeframe?: string; primaryConcerns?: string[]; }
- Hardcoded mention of the tool in the server context generator's list of available tools.{ name: 'get_workflow_guidance', description: 'Get workflow guidance for specific development tasks', },