@hydra-acp/cli 0.1.36 → 0.1.38
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.js +2837 -2457
- package/dist/index.d.ts +5 -0
- package/dist/index.js +8 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -106,6 +106,7 @@ declare const HydraConfig: z.ZodObject<{
|
|
|
106
106
|
cwdColumnMaxWidth: z.ZodDefault<z.ZodNumber>;
|
|
107
107
|
progressIndicator: z.ZodDefault<z.ZodBoolean>;
|
|
108
108
|
defaultEnterAction: z.ZodDefault<z.ZodEnum<["enqueue", "amend"]>>;
|
|
109
|
+
showThoughts: z.ZodDefault<z.ZodBoolean>;
|
|
109
110
|
}, "strip", z.ZodTypeAny, {
|
|
110
111
|
repaintThrottleMs: number;
|
|
111
112
|
maxScrollbackLines: number;
|
|
@@ -114,6 +115,7 @@ declare const HydraConfig: z.ZodObject<{
|
|
|
114
115
|
cwdColumnMaxWidth: number;
|
|
115
116
|
progressIndicator: boolean;
|
|
116
117
|
defaultEnterAction: "enqueue" | "amend";
|
|
118
|
+
showThoughts: boolean;
|
|
117
119
|
}, {
|
|
118
120
|
repaintThrottleMs?: number | undefined;
|
|
119
121
|
maxScrollbackLines?: number | undefined;
|
|
@@ -122,6 +124,7 @@ declare const HydraConfig: z.ZodObject<{
|
|
|
122
124
|
cwdColumnMaxWidth?: number | undefined;
|
|
123
125
|
progressIndicator?: boolean | undefined;
|
|
124
126
|
defaultEnterAction?: "enqueue" | "amend" | undefined;
|
|
127
|
+
showThoughts?: boolean | undefined;
|
|
125
128
|
}>>;
|
|
126
129
|
}, "strip", z.ZodTypeAny, {
|
|
127
130
|
tui: {
|
|
@@ -132,6 +135,7 @@ declare const HydraConfig: z.ZodObject<{
|
|
|
132
135
|
cwdColumnMaxWidth: number;
|
|
133
136
|
progressIndicator: boolean;
|
|
134
137
|
defaultEnterAction: "enqueue" | "amend";
|
|
138
|
+
showThoughts: boolean;
|
|
135
139
|
};
|
|
136
140
|
daemon: {
|
|
137
141
|
host: string;
|
|
@@ -170,6 +174,7 @@ declare const HydraConfig: z.ZodObject<{
|
|
|
170
174
|
cwdColumnMaxWidth?: number | undefined;
|
|
171
175
|
progressIndicator?: boolean | undefined;
|
|
172
176
|
defaultEnterAction?: "enqueue" | "amend" | undefined;
|
|
177
|
+
showThoughts?: boolean | undefined;
|
|
173
178
|
} | undefined;
|
|
174
179
|
daemon?: {
|
|
175
180
|
host?: string | undefined;
|
package/dist/index.js
CHANGED
|
@@ -216,7 +216,12 @@ var TuiConfig = z.object({
|
|
|
216
216
|
// "enqueue" — flips the two: Enter enqueues the prompt (sends
|
|
217
217
|
// immediately when idle, queues behind an in-flight turn);
|
|
218
218
|
// Shift+Enter amends the in-flight turn.
|
|
219
|
-
defaultEnterAction: z.enum(["enqueue", "amend"]).default("amend")
|
|
219
|
+
defaultEnterAction: z.enum(["enqueue", "amend"]).default("amend"),
|
|
220
|
+
// When true (default), agent_thought events render as dim italic
|
|
221
|
+
// streaming lines beneath the live thinking block. Set false to
|
|
222
|
+
// suppress them — the TUI hotkey ^T toggles this at runtime without
|
|
223
|
+
// persisting back to config.
|
|
224
|
+
showThoughts: z.boolean().default(true)
|
|
220
225
|
});
|
|
221
226
|
var ExtensionName = z.string().min(1).regex(/^[A-Za-z0-9._-]+$/, "extension name must be filename-safe");
|
|
222
227
|
var ExtensionBody = z.object({
|
|
@@ -261,7 +266,8 @@ var HydraConfig = z.object({
|
|
|
261
266
|
logMaxBytes: 5 * 1024 * 1024,
|
|
262
267
|
cwdColumnMaxWidth: 24,
|
|
263
268
|
progressIndicator: true,
|
|
264
|
-
defaultEnterAction: "amend"
|
|
269
|
+
defaultEnterAction: "amend",
|
|
270
|
+
showThoughts: true
|
|
265
271
|
})
|
|
266
272
|
});
|
|
267
273
|
function extensionList(config) {
|