trellis
Version:
Agentic State Engine — event-sourced causal graph with branching, decision traces, and realtime sync for AI-native applications
13 lines • 499 B
TypeScript
import type { Command } from 'commander';
export type OpsFileFormat = 'missing' | 'jsonl' | 'legacy-array' | 'mixed' | 'corrupt';
export interface OpsFileReport {
format: OpsFileFormat;
firstChar: string | null;
totalLines: number;
validLines: number;
invalidLines: number;
notes: string[];
}
export declare function inspectOpsFile(raw: string | null): OpsFileReport;
export declare function registerDoctorCommand(program: Command): void;
//# sourceMappingURL=doctor.d.ts.map