@ishlabs/cli 0.8.3 → 0.8.5
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/README.md +7 -1
- package/dist/auth.d.ts +16 -0
- package/dist/auth.js +52 -3
- package/dist/commands/ask.js +86 -17
- package/dist/commands/iteration.js +45 -11
- package/dist/commands/profile.js +79 -13
- package/dist/commands/study-run.js +49 -0
- package/dist/commands/study-tester.js +5 -2
- package/dist/commands/study.js +82 -19
- package/dist/connect.js +94 -19
- package/dist/index.js +122 -2
- package/dist/lib/api-client.js +29 -7
- package/dist/lib/command-helpers.d.ts +51 -0
- package/dist/lib/command-helpers.js +206 -7
- package/dist/lib/docs.js +621 -30
- package/dist/lib/output.d.ts +6 -0
- package/dist/lib/output.js +570 -65
- package/dist/lib/skill-content.js +216 -9
- package/dist/lib/types.d.ts +3 -1
- package/dist/upgrade.js +3 -3
- package/package.json +1 -1
package/dist/lib/output.d.ts
CHANGED
|
@@ -9,6 +9,12 @@
|
|
|
9
9
|
/** Set by withClient() based on global flags. */
|
|
10
10
|
export declare function setVerbose(v: boolean): void;
|
|
11
11
|
export declare function setFields(fields?: string[]): void;
|
|
12
|
+
/**
|
|
13
|
+
* Pattern Ω capture mode: when set, jsonOutput() returns the bare value at
|
|
14
|
+
* the dotted path instead of the full JSON. Cleared between command runs by
|
|
15
|
+
* each invocation of `applyGlobals()`.
|
|
16
|
+
*/
|
|
17
|
+
export declare function setGetField(field?: string): void;
|
|
12
18
|
/** Per-call output options for stable JSON contracts. */
|
|
13
19
|
export interface OutputOptions {
|
|
14
20
|
/**
|