@wrongstack/tui 0.87.0 → 0.89.3
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/index.d.ts +3 -3
- package/dist/index.js +2835 -2555
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ interface ProviderOption {
|
|
|
13
13
|
modelsLabel?: string | undefined;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
type Settings = {
|
|
17
17
|
mode: 'off' | 'suggest' | 'auto';
|
|
18
18
|
delayMs: number;
|
|
19
19
|
titleAnimation: boolean;
|
|
@@ -33,7 +33,7 @@ interface Settings {
|
|
|
33
33
|
auditLevel: 'minimal' | 'standard' | 'full';
|
|
34
34
|
indexOnStart: boolean;
|
|
35
35
|
maxIterations: number;
|
|
36
|
-
}
|
|
36
|
+
};
|
|
37
37
|
|
|
38
38
|
interface RunTuiOptions {
|
|
39
39
|
agent: Agent;
|
|
@@ -204,7 +204,7 @@ interface RunTuiOptions {
|
|
|
204
204
|
* SDD session context getter. When an SDD session is active, returns
|
|
205
205
|
* the AI prompt context to inject into user messages.
|
|
206
206
|
*/
|
|
207
|
-
getSDDContext?: (() => string | null) | undefined;
|
|
207
|
+
getSDDContext?: (() => Promise<string | null>) | undefined;
|
|
208
208
|
/**
|
|
209
209
|
* Process AI output for SDD auto-detection (spec, tasks, plan).
|
|
210
210
|
* Returns displayable status messages.
|