@openclawbrain/cli 0.4.34 → 0.4.36

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/src/cli.d.ts CHANGED
@@ -131,7 +131,75 @@ interface ParsedProofCliArgs {
131
131
  json: boolean;
132
132
  help: boolean;
133
133
  }
134
- type ParsedOperatorCliArgs = ParsedStatusRollbackCliArgs | ParsedAttachCliArgs | ParsedScanCliArgs | ParsedInstallCliArgs | ParsedDetachCliArgs | ParsedUninstallCliArgs | ParsedContextCliArgs | ParsedHistoryCliArgs | ParsedLearnCliArgs | ParsedWatchCliArgs | DaemonCliArgs | ParsedExportCliArgs | ParsedImportCliArgs | ParsedResetCliArgs | ParsedProofCliArgs;
134
+ interface ParsedGraphifyExportCliArgs {
135
+ command: "graphify-export";
136
+ activationRoot: string;
137
+ outputRoot: string | null;
138
+ runId: string | null;
139
+ repoRoot: string | null;
140
+ workspaceRoot: string | null;
141
+ sessionKey: string | null;
142
+ sessionSourcePath: string | null;
143
+ proofSummarySourcePath: string | null;
144
+ docsRoot: string | null;
145
+ codeRoot: string | null;
146
+ generatedAt: string | null;
147
+ json: boolean;
148
+ help: boolean;
149
+ }
150
+ interface ParsedGraphifyRunCliArgs {
151
+ command: "graphify-run";
152
+ sourceBundlePath: string;
153
+ outputRoot: string | null;
154
+ runId: string | null;
155
+ graphifyVersion: string | null;
156
+ graphifyMode: string | null;
157
+ graphifyCommand: string | null;
158
+ graphifyArgs: string[];
159
+ graphifyFlags: string[];
160
+ graphifyConfig: Record<string, unknown>;
161
+ labels: string[];
162
+ json: boolean;
163
+ help: boolean;
164
+ }
165
+ interface ParsedGraphifyCompiledArtifactsCliArgs {
166
+ command: "graphify-compiled-artifacts";
167
+ bundleId: string | null;
168
+ outputDir: string | null;
169
+ bundleStartedAt: string | null;
170
+ graphifyRunId: string | null;
171
+ graphifyVersion: string | null;
172
+ graphifyCommand: string | null;
173
+ sourceBundleId: string | null;
174
+ sourceBundleHash: string | null;
175
+ graphHash: string | null;
176
+ configHash: string | null;
177
+ labelsHash: string | null;
178
+ json: boolean;
179
+ help: boolean;
180
+ }
181
+ interface ParsedGraphifyDeterministicLintCliArgs {
182
+ command: "graphify-lints";
183
+ bundleRoot: string | null;
184
+ repoRoot: string;
185
+ workspaceRoot: string;
186
+ outputRoot: string | null;
187
+ runId: string | null;
188
+ json: boolean;
189
+ help: boolean;
190
+ }
191
+ interface ParsedGraphifyMaintenanceDiffCliArgs {
192
+ command: "graphify-maintenance-diff";
193
+ graphifyRoot: string;
194
+ ocbRoot: string;
195
+ repoRoot: string;
196
+ workspaceRoot: string;
197
+ outputRoot: string | null;
198
+ runId: string | null;
199
+ json: boolean;
200
+ help: boolean;
201
+ }
202
+ type ParsedOperatorCliArgs = ParsedStatusRollbackCliArgs | ParsedAttachCliArgs | ParsedScanCliArgs | ParsedInstallCliArgs | ParsedDetachCliArgs | ParsedUninstallCliArgs | ParsedContextCliArgs | ParsedHistoryCliArgs | ParsedLearnCliArgs | ParsedWatchCliArgs | DaemonCliArgs | ParsedExportCliArgs | ParsedImportCliArgs | ParsedResetCliArgs | ParsedProofCliArgs | ParsedGraphifyExportCliArgs | ParsedGraphifyRunCliArgs | ParsedGraphifyCompiledArtifactsCliArgs | ParsedGraphifyDeterministicLintCliArgs | ParsedGraphifyMaintenanceDiffCliArgs;
135
203
  export declare function parseOperatorCliArgs(argv: readonly string[]): ParsedOperatorCliArgs;
136
204
  export interface WatchCommandRuntimeV1 {
137
205
  activationRoot: string;