/** * Workstream Inventory Module. * * Owns discovery and read-only projection of .planning/workstreams/* state. * Query handlers should render outputs from this inventory instead of * rescanning workstream directories directly. * * Pure projection logic lives in ../workstream-inventory/builder.ts. * This module handles I/O orchestration only. */ export type { WorkstreamPhaseInventory, WorkstreamInventory, WorkstreamInventoryList, } from '../workstream-inventory/builder.js'; import type { WorkstreamInventory, WorkstreamInventoryList } from '../workstream-inventory/builder.js'; export declare const planningRoot: (projectDir: string) => string; export declare const workstreamsRoot: (projectDir: string) => string; export declare function countRoadmapPhases(roadmapPath: string, fallbackCount: number): number; export declare function countPhaseFiles(phaseDir: string): { planCount: number; summaryCount: number; }; export declare function inspectWorkstream(projectDir: string, name: string, options?: { active?: string | null; }): WorkstreamInventory | null; export declare function listWorkstreamInventories(projectDir: string): WorkstreamInventoryList; //# sourceMappingURL=workstream-inventory.d.ts.map