@fro.bot/systematic 3.6.1 → 3.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli.d.ts CHANGED
@@ -1,2 +1,20 @@
1
1
  #!/usr/bin/env node
2
+ import { type CapabilityClock, type CapabilityOutputSink, type ConfigObservationMetadata } from './lib/capability-snapshot.js';
3
+ interface CapabilityCliRoots {
4
+ readonly agentsRoot: string;
5
+ readonly cwd: string;
6
+ readonly homeDir: string;
7
+ readonly packageRoot: string;
8
+ readonly configDir?: string;
9
+ readonly opencodeConfigDirOverride?: string;
10
+ }
11
+ interface CapabilityCliOptions {
12
+ readonly argv: readonly string[];
13
+ readonly roots: CapabilityCliRoots;
14
+ readonly clock?: CapabilityClock;
15
+ readonly config?: ConfigObservationMetadata;
16
+ readonly outputSink?: CapabilityOutputSink;
17
+ readonly errorSink?: (message: string) => void;
18
+ }
19
+ export declare function runCapabilitiesCli(options: CapabilityCliOptions): number;
2
20
  export {};