UNPKG

code-auditor-mcp

Version:

TypeScript/JavaScript code quality auditor with MCP server - Analyze code for SOLID principles, DRY violations, security patterns, and more

21 lines 685 B
/** * Workflow Guide Tool * Provides guidance on optimal tool usage patterns and workflows */ export interface WorkflowScenario { name: string; description: string; steps: WorkflowStep[]; tips?: string[]; } export interface WorkflowStep { order: number; tool: string; parameters?: Record<string, any>; description: string; condition?: string; } export declare const WORKFLOW_SCENARIOS: Record<string, WorkflowScenario>; export declare function getWorkflowGuide(scenario?: string): WorkflowScenario | Record<string, WorkflowScenario>; export declare function getWorkflowTips(): Record<string, string[]>; //# sourceMappingURL=workflowGuide.d.ts.map