/** * Centralized guidance for bash command flows. * Keeps publish/git heuristics in one place so bash tooling stays concise. */ export type BashFlowSeverity = 'info' | 'warning' | 'critical'; export interface BashFlowWarning { readonly code: string; readonly message: string; readonly suggestion?: string; readonly severity?: BashFlowSeverity; } /** * Analyze a bash command for common workflow gaps (publish, git efficiency). */ export declare function analyzeBashFlow(command: string): BashFlowWarning[]; //# sourceMappingURL=bashCommandGuidance.d.ts.map