UNPKG

autosnippet

Version:

Extract code patterns into a knowledge base for AI coding assistants

15 lines (14 loc) 526 B
/** * Panorama summarization helper for internal agent responses. * * Extracted from bootstrap-internal.ts. * Note: MissionBriefingBuilder has its own typed version for the MissionBriefing interface. * * @module bootstrap/shared/panorama-utils */ /** * Summarize PanoramaResult into a compact internal-agent-friendly shape. * * Returns the top layers, coupling hotspots, cyclic dependencies, and knowledge gaps. */ export declare function summarizePanorama(panoramaResult: unknown): Record<string, unknown> | null;