@hydra-acp/cli 0.1.106 → 0.1.107

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 CHANGED
@@ -229,6 +229,13 @@ declare const HydraConfig: z.ZodObject<{
229
229
  maxPlanItems: z.ZodDefault<z.ZodNumber>;
230
230
  showFileUpdates: z.ZodDefault<z.ZodEnum<["none", "edit", "diff"]>>;
231
231
  sessionColumns: z.ZodOptional<z.ZodArray<z.ZodEnum<["session", "upstream", "host", "state", "agent", "model", "age", "cwd", "title", "cost"]>, "atleastone">>;
232
+ hotkeys: z.ZodDefault<z.ZodRecord<z.ZodEnum<["enter", "alt-enter", "shift-enter", "ctrl-enter", "alt-b", "alt-f", "alt-n", "alt-tab", "shift-tab", "tab", "up", "down", "left", "right", "home", "end", "backspace", "alt-backspace", "delete", "ctrl-a", "ctrl-b", "ctrl-c", "ctrl-d", "ctrl-e", "ctrl-f", "ctrl-g", "ctrl-k", "ctrl-l", "ctrl-n", "ctrl-o", "ctrl-p", "ctrl-q", "ctrl-r", "ctrl-s", "ctrl-u", "ctrl-v", "ctrl-t", "ctrl-w", "ctrl-x", "ctrl-y", "ctrl-underscore", "alt-underscore", "escape"]>, z.ZodObject<{
233
+ command: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
234
+ }, "strip", z.ZodTypeAny, {
235
+ command: string | string[];
236
+ }, {
237
+ command: string | string[];
238
+ }>>>;
232
239
  }, "strip", z.ZodTypeAny, {
233
240
  repaintThrottleMs: number;
234
241
  maxScrollbackLines: number;
@@ -246,6 +253,9 @@ declare const HydraConfig: z.ZodObject<{
246
253
  maxToolItems: number;
247
254
  maxPlanItems: number;
248
255
  showFileUpdates: "diff" | "none" | "edit";
256
+ hotkeys: Partial<Record<"enter" | "alt-enter" | "shift-enter" | "ctrl-enter" | "alt-b" | "alt-f" | "alt-n" | "alt-tab" | "shift-tab" | "tab" | "up" | "down" | "left" | "right" | "home" | "end" | "backspace" | "alt-backspace" | "delete" | "ctrl-a" | "ctrl-b" | "ctrl-c" | "ctrl-d" | "ctrl-e" | "ctrl-f" | "ctrl-g" | "ctrl-k" | "ctrl-l" | "ctrl-n" | "ctrl-o" | "ctrl-p" | "ctrl-q" | "ctrl-r" | "ctrl-s" | "ctrl-u" | "ctrl-v" | "ctrl-t" | "ctrl-w" | "ctrl-x" | "ctrl-y" | "ctrl-underscore" | "alt-underscore" | "escape", {
257
+ command: string | string[];
258
+ }>>;
249
259
  inAppSelection?: boolean | undefined;
250
260
  openFileCommand?: string | string[] | undefined;
251
261
  sessionColumns?: ["agent" | "model" | "cwd" | "session" | "upstream" | "state" | "age" | "title" | "host" | "cost", ...("agent" | "model" | "cwd" | "session" | "upstream" | "state" | "age" | "title" | "host" | "cost")[]] | undefined;
@@ -269,6 +279,9 @@ declare const HydraConfig: z.ZodObject<{
269
279
  maxPlanItems?: number | undefined;
270
280
  showFileUpdates?: "diff" | "none" | "edit" | undefined;
271
281
  sessionColumns?: ["agent" | "model" | "cwd" | "session" | "upstream" | "state" | "age" | "title" | "host" | "cost", ...("agent" | "model" | "cwd" | "session" | "upstream" | "state" | "age" | "title" | "host" | "cost")[]] | undefined;
282
+ hotkeys?: Partial<Record<"enter" | "alt-enter" | "shift-enter" | "ctrl-enter" | "alt-b" | "alt-f" | "alt-n" | "alt-tab" | "shift-tab" | "tab" | "up" | "down" | "left" | "right" | "home" | "end" | "backspace" | "alt-backspace" | "delete" | "ctrl-a" | "ctrl-b" | "ctrl-c" | "ctrl-d" | "ctrl-e" | "ctrl-f" | "ctrl-g" | "ctrl-k" | "ctrl-l" | "ctrl-n" | "ctrl-o" | "ctrl-p" | "ctrl-q" | "ctrl-r" | "ctrl-s" | "ctrl-u" | "ctrl-v" | "ctrl-t" | "ctrl-w" | "ctrl-x" | "ctrl-y" | "ctrl-underscore" | "alt-underscore" | "escape", {
283
+ command: string | string[];
284
+ }>> | undefined;
272
285
  }>>;
273
286
  }, "strip", z.ZodTypeAny, {
274
287
  tui: {
@@ -288,6 +301,9 @@ declare const HydraConfig: z.ZodObject<{
288
301
  maxToolItems: number;
289
302
  maxPlanItems: number;
290
303
  showFileUpdates: "diff" | "none" | "edit";
304
+ hotkeys: Partial<Record<"enter" | "alt-enter" | "shift-enter" | "ctrl-enter" | "alt-b" | "alt-f" | "alt-n" | "alt-tab" | "shift-tab" | "tab" | "up" | "down" | "left" | "right" | "home" | "end" | "backspace" | "alt-backspace" | "delete" | "ctrl-a" | "ctrl-b" | "ctrl-c" | "ctrl-d" | "ctrl-e" | "ctrl-f" | "ctrl-g" | "ctrl-k" | "ctrl-l" | "ctrl-n" | "ctrl-o" | "ctrl-p" | "ctrl-q" | "ctrl-r" | "ctrl-s" | "ctrl-u" | "ctrl-v" | "ctrl-t" | "ctrl-w" | "ctrl-x" | "ctrl-y" | "ctrl-underscore" | "alt-underscore" | "escape", {
305
+ command: string | string[];
306
+ }>>;
291
307
  inAppSelection?: boolean | undefined;
292
308
  openFileCommand?: string | string[] | undefined;
293
309
  sessionColumns?: ["agent" | "model" | "cwd" | "session" | "upstream" | "state" | "age" | "title" | "host" | "cost", ...("agent" | "model" | "cwd" | "session" | "upstream" | "state" | "age" | "title" | "host" | "cost")[]] | undefined;
@@ -376,6 +392,9 @@ declare const HydraConfig: z.ZodObject<{
376
392
  maxPlanItems?: number | undefined;
377
393
  showFileUpdates?: "diff" | "none" | "edit" | undefined;
378
394
  sessionColumns?: ["agent" | "model" | "cwd" | "session" | "upstream" | "state" | "age" | "title" | "host" | "cost", ...("agent" | "model" | "cwd" | "session" | "upstream" | "state" | "age" | "title" | "host" | "cost")[]] | undefined;
395
+ hotkeys?: Partial<Record<"enter" | "alt-enter" | "shift-enter" | "ctrl-enter" | "alt-b" | "alt-f" | "alt-n" | "alt-tab" | "shift-tab" | "tab" | "up" | "down" | "left" | "right" | "home" | "end" | "backspace" | "alt-backspace" | "delete" | "ctrl-a" | "ctrl-b" | "ctrl-c" | "ctrl-d" | "ctrl-e" | "ctrl-f" | "ctrl-g" | "ctrl-k" | "ctrl-l" | "ctrl-n" | "ctrl-o" | "ctrl-p" | "ctrl-q" | "ctrl-r" | "ctrl-s" | "ctrl-u" | "ctrl-v" | "ctrl-t" | "ctrl-w" | "ctrl-x" | "ctrl-y" | "ctrl-underscore" | "alt-underscore" | "escape", {
396
+ command: string | string[];
397
+ }>> | undefined;
379
398
  } | undefined;
380
399
  daemon?: {
381
400
  host?: string | undefined;