UNPKG

mcp-adr-analysis-server

Version:

MCP server for analyzing Architectural Decision Records and project architecture

23 lines 796 B
/** * ADR Action Analyzer * * Generates actionable work items from timeline analysis * with priority scoring and effort estimation */ import type { AdrWorkQueue, ThresholdProfile } from './adr-timeline-types.js'; import type { DiscoveredAdr } from './adr-discovery.js'; /** * Generate action items from ADRs based on timeline analysis */ export declare function generateActionItems(adrs: DiscoveredAdr[], baseThresholds: ThresholdProfile, options?: { useAdrTypeModifiers?: boolean; projectPath?: string; }): Promise<AdrWorkQueue>; /** * Format action items into a readable report */ export declare function formatActionReport(workQueue: AdrWorkQueue, context?: { projectPath: string; thresholdProfile: string; }): string; //# sourceMappingURL=adr-action-analyzer.d.ts.map