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
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 |
Input Schema (JSON Schema)
{
"properties": {
"availableAssets": {
"description": "What assets you already have (e.g., [\"PRD.md\", \"existing ADRs\", \"codebase\", \"documentation\", \"test suite\"])",
"items": {
"type": "string"
},
"type": "array"
},
"goal": {
"description": "What you want to accomplish (e.g., \"analyze new project\", \"document existing decisions\", \"security audit\", \"modernize legacy system\")",
"type": "string"
},
"primaryConcerns": {
"description": "Main areas of concern (e.g., [\"security\", \"performance\", \"maintainability\", \"scalability\", \"compliance\"])",
"items": {
"type": "string"
},
"type": "array"
},
"projectContext": {
"description": "Current state of your project (e.g., \"new project\", \"existing project with ADRs\", \"legacy codebase\", \"greenfield development\")",
"enum": [
"new_project",
"existing_with_adrs",
"existing_without_adrs",
"legacy_codebase",
"greenfield",
"maintenance_mode",
"unknown"
],
"type": "string"
},
"timeframe": {
"description": "Available time/effort level",
"enum": [
"quick_analysis",
"thorough_review",
"comprehensive_audit",
"ongoing_process"
],
"type": "string"
}
},
"required": [
"goal",
"projectContext"
],
"type": "object"
}