@wolfx/oh-my-openagent 3.17.15 → 4.0.0

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.
Files changed (157) hide show
  1. package/README.ja.md +153 -113
  2. package/README.ko.md +196 -149
  3. package/README.md +53 -50
  4. package/README.ru.md +92 -70
  5. package/README.zh-cn.md +112 -71
  6. package/dist/agents/agent-skill-resolution.d.ts +1 -0
  7. package/dist/agents/builtin-agents/available-skills.d.ts +1 -1
  8. package/dist/agents/builtin-agents/general-agents.d.ts +1 -0
  9. package/dist/agents/builtin-agents.d.ts +1 -1
  10. package/dist/agents/dynamic-agent-core-sections.d.ts +1 -0
  11. package/dist/agents/dynamic-agent-prompt-builder.d.ts +1 -1
  12. package/dist/agents/hephaestus/gpt-5-5.d.ts +0 -4
  13. package/dist/agents/types.d.ts +1 -0
  14. package/dist/config/index.d.ts +1 -1
  15. package/dist/config/schema/agent-names.d.ts +1 -0
  16. package/dist/config/schema/agent-overrides.d.ts +45 -0
  17. package/dist/config/schema/categories.d.ts +7 -1
  18. package/dist/config/schema/commands.d.ts +1 -0
  19. package/dist/config/schema/fallback-models.d.ts +5 -0
  20. package/dist/config/schema/hooks.d.ts +1 -0
  21. package/dist/config/schema/keyword-detector.d.ts +21 -0
  22. package/dist/config/schema/oh-my-opencode-config.d.ts +70 -0
  23. package/dist/config/schema/team-mode.d.ts +16 -0
  24. package/dist/config/schema.d.ts +2 -0
  25. package/dist/create-hooks.d.ts +3 -0
  26. package/dist/features/background-agent/manager.d.ts +3 -0
  27. package/dist/features/background-agent/types.d.ts +4 -0
  28. package/dist/features/boulder-state/storage.d.ts +1 -0
  29. package/dist/features/builtin-commands/commands.d.ts +1 -0
  30. package/dist/features/builtin-commands/templates/hyperplan.d.ts +1 -0
  31. package/dist/features/builtin-commands/templates/refactor.d.ts +1 -0
  32. package/dist/features/builtin-commands/templates/remove-ai-slops.d.ts +1 -0
  33. package/dist/features/builtin-commands/types.d.ts +1 -1
  34. package/dist/features/builtin-skills/skills/git-master-sections/commit-workflow.d.ts +1 -1
  35. package/dist/features/builtin-skills/skills/git-master-sections/history-search-workflow.d.ts +1 -1
  36. package/dist/features/builtin-skills/skills/git-master-sections/overview.d.ts +1 -1
  37. package/dist/features/builtin-skills/skills/git-master-sections/quick-reference.d.ts +1 -1
  38. package/dist/features/builtin-skills/skills/git-master-sections/rebase-workflow.d.ts +1 -1
  39. package/dist/features/builtin-skills/skills/index.d.ts +1 -0
  40. package/dist/features/builtin-skills/skills/team-mode.d.ts +2 -0
  41. package/dist/features/builtin-skills/skills.d.ts +1 -0
  42. package/dist/features/claude-code-plugin-loader/discovery.d.ts +1 -0
  43. package/dist/features/hook-message-injector/injector.d.ts +2 -2
  44. package/dist/features/opencode-skill-loader/loader.d.ts +2 -2
  45. package/dist/features/opencode-skill-loader/skill-resolution-options.d.ts +1 -0
  46. package/dist/features/team-mode/deps.d.ts +6 -0
  47. package/dist/features/team-mode/member-guidance.d.ts +2 -0
  48. package/dist/features/team-mode/member-parser.d.ts +16 -0
  49. package/dist/features/team-mode/member-session-resolution.d.ts +6 -0
  50. package/dist/features/team-mode/member-session-routing.d.ts +19 -0
  51. package/dist/features/team-mode/team-layout-tmux/close-team-member-pane.d.ts +4 -0
  52. package/dist/features/team-mode/team-layout-tmux/layout.d.ts +26 -6
  53. package/dist/features/team-mode/team-layout-tmux/rebalance-team-window.d.ts +9 -0
  54. package/dist/features/team-mode/team-layout-tmux/resolve-caller-tmux-session.d.ts +7 -0
  55. package/dist/features/team-mode/team-layout-tmux/sweep-stale-team-sessions.d.ts +8 -0
  56. package/dist/features/team-mode/team-mailbox/ack.d.ts +2 -0
  57. package/dist/features/team-mode/team-mailbox/inbox.d.ts +3 -0
  58. package/dist/features/team-mode/team-mailbox/index.d.ts +7 -0
  59. package/dist/features/team-mode/team-mailbox/poll.d.ts +10 -0
  60. package/dist/features/team-mode/team-mailbox/reservation.d.ts +11 -0
  61. package/dist/features/team-mode/team-mailbox/send.d.ts +27 -0
  62. package/dist/features/team-mode/team-registry/index.d.ts +3 -0
  63. package/dist/features/team-mode/team-registry/loader.d.ts +12 -0
  64. package/dist/features/team-mode/team-registry/paths.d.ts +13 -0
  65. package/dist/features/team-mode/team-registry/team-spec-input-normalizer.d.ts +6 -0
  66. package/dist/features/team-mode/team-registry/validator.d.ts +10 -0
  67. package/dist/features/team-mode/team-runtime/activate-team-layout.d.ts +4 -0
  68. package/dist/features/team-mode/team-runtime/cleanup-team-run-resources.d.ts +17 -0
  69. package/dist/features/team-mode/team-runtime/create.d.ts +25 -0
  70. package/dist/features/team-mode/team-runtime/delete-team.d.ts +16 -0
  71. package/dist/features/team-mode/team-runtime/index.d.ts +2 -0
  72. package/dist/features/team-mode/team-runtime/resolve-member-dependencies.d.ts +3 -0
  73. package/dist/features/team-mode/team-runtime/resolve-member.d.ts +17 -0
  74. package/dist/features/team-mode/team-runtime/shutdown-helpers.d.ts +11 -0
  75. package/dist/features/team-mode/team-runtime/shutdown-test-fixtures.d.ts +46 -0
  76. package/dist/features/team-mode/team-runtime/shutdown.d.ts +5 -0
  77. package/dist/features/team-mode/team-runtime/status.d.ts +36 -0
  78. package/dist/features/team-mode/team-session-registry.d.ts +11 -0
  79. package/dist/features/team-mode/team-state-store/index.d.ts +1 -0
  80. package/dist/features/team-mode/team-state-store/locks.d.ts +12 -0
  81. package/dist/features/team-mode/team-state-store/resume.d.ts +10 -0
  82. package/dist/features/team-mode/team-state-store/store.d.ts +21 -0
  83. package/dist/features/team-mode/team-tasklist/claim.d.ts +10 -0
  84. package/dist/features/team-mode/team-tasklist/dependencies.d.ts +2 -0
  85. package/dist/features/team-mode/team-tasklist/get.d.ts +3 -0
  86. package/dist/features/team-mode/team-tasklist/index.d.ts +6 -0
  87. package/dist/features/team-mode/team-tasklist/list.d.ts +8 -0
  88. package/dist/features/team-mode/team-tasklist/store.d.ts +3 -0
  89. package/dist/features/team-mode/team-tasklist/test-support.d.ts +9 -0
  90. package/dist/features/team-mode/team-tasklist/update.d.ts +9 -0
  91. package/dist/features/team-mode/tools/index.d.ts +1 -0
  92. package/dist/features/team-mode/tools/lifecycle-test-fixture.d.ts +188 -0
  93. package/dist/features/team-mode/tools/lifecycle.d.ts +37 -0
  94. package/dist/features/team-mode/tools/messaging.d.ts +31 -0
  95. package/dist/features/team-mode/tools/query.d.ts +16 -0
  96. package/dist/features/team-mode/tools/tasks.d.ts +18 -0
  97. package/dist/features/team-mode/types.d.ts +137 -5
  98. package/dist/features/tmux-subagent/action-executor-core.d.ts +1 -0
  99. package/dist/features/tmux-subagent/action-executor.d.ts +1 -0
  100. package/dist/features/tmux-subagent/attachable-session-status.d.ts +4 -0
  101. package/dist/features/tmux-subagent/manager.d.ts +32 -3
  102. package/dist/features/tmux-subagent/pane-state-querier.d.ts +10 -0
  103. package/dist/features/tmux-subagent/polling.d.ts +1 -0
  104. package/dist/hooks/atlas/atlas-hook.d.ts +1 -1
  105. package/dist/hooks/atlas/boulder-continuation-injector.d.ts +2 -3
  106. package/dist/hooks/atlas/recent-model-resolver.d.ts +9 -1
  107. package/dist/hooks/atlas/tool-execute-after.d.ts +2 -1
  108. package/dist/hooks/atlas/tool-execute-before.d.ts +1 -0
  109. package/dist/hooks/atlas/types.d.ts +8 -2
  110. package/dist/hooks/index.d.ts +3 -0
  111. package/dist/hooks/keyword-detector/constants.d.ts +6 -0
  112. package/dist/hooks/keyword-detector/detector.d.ts +5 -3
  113. package/dist/hooks/keyword-detector/hook.d.ts +2 -1
  114. package/dist/hooks/keyword-detector/hyperplan/default.d.ts +13 -0
  115. package/dist/hooks/keyword-detector/hyperplan/index.d.ts +1 -0
  116. package/dist/hooks/keyword-detector/team/default.d.ts +13 -0
  117. package/dist/hooks/keyword-detector/team/index.d.ts +1 -0
  118. package/dist/hooks/session-recovery/recover-tool-result-missing.d.ts +2 -2
  119. package/dist/hooks/team-mailbox-injector/hook.d.ts +31 -0
  120. package/dist/hooks/team-mailbox-injector/index.d.ts +2 -0
  121. package/dist/hooks/team-mode-status-injector/hook.d.ts +28 -0
  122. package/dist/hooks/team-mode-status-injector/index.d.ts +1 -0
  123. package/dist/hooks/team-session-events/team-idle-wake-hint.d.ts +38 -0
  124. package/dist/hooks/team-session-events/team-lead-orphan-handler.d.ts +12 -0
  125. package/dist/hooks/team-session-events/team-member-error-handler.d.ts +10 -0
  126. package/dist/hooks/team-session-events/team-member-status-handler.d.ts +10 -0
  127. package/dist/hooks/team-tool-gating/hook.d.ts +3 -0
  128. package/dist/hooks/team-tool-gating/index.d.ts +1 -0
  129. package/dist/hooks/write-existing-file-guard/hook.d.ts +6 -1
  130. package/dist/hooks/write-existing-file-guard/tool-execute-before-handler.d.ts +1 -0
  131. package/dist/index.js +89963 -81321
  132. package/dist/oh-my-opencode.schema.json +191 -47
  133. package/dist/plugin/hooks/create-core-hooks.d.ts +3 -0
  134. package/dist/plugin/hooks/create-tool-guard-hooks.d.ts +2 -1
  135. package/dist/plugin/hooks/create-transform-hooks.d.ts +3 -1
  136. package/dist/plugin/recent-synthetic-idles.d.ts +1 -0
  137. package/dist/plugin/tool-registry.d.ts +16 -0
  138. package/dist/shared/bun-spawn-shim.d.ts +1 -0
  139. package/dist/shared/project-discovery-dirs.d.ts +1 -0
  140. package/dist/shared/shell-env.d.ts +1 -0
  141. package/dist/shared/tmux/constants.d.ts +1 -1
  142. package/dist/shared/tmux/index.d.ts +1 -0
  143. package/dist/shared/tmux/runner.d.ts +13 -0
  144. package/dist/shared/tmux/tmux-utils/pane-replace.d.ts +1 -1
  145. package/dist/shared/tmux/tmux-utils/pane-spawn.d.ts +13 -1
  146. package/dist/shared/tmux/tmux-utils/session-spawn.d.ts +13 -1
  147. package/dist/shared/tmux/tmux-utils/stale-session-sweep.d.ts +9 -2
  148. package/dist/shared/tmux/tmux-utils/window-spawn.d.ts +13 -1
  149. package/dist/shared/tmux/tmux-utils.d.ts +1 -1
  150. package/dist/tools/delegate-task/openai-categories.d.ts +1 -0
  151. package/dist/tools/delegate-task/skill-resolver.d.ts +1 -0
  152. package/dist/tools/delegate-task/subagent-resolver.d.ts +5 -1
  153. package/dist/tools/delegate-task/types.d.ts +1 -0
  154. package/dist/tools/index.d.ts +1 -0
  155. package/dist/tools/look-at/missing-file-error.d.ts +2 -0
  156. package/dist/tools/skill/types.d.ts +2 -0
  157. package/package.json +2 -1
@@ -11,6 +11,7 @@ export declare const AgentOverrideConfigSchema: z.ZodObject<{
11
11
  medium: "medium";
12
12
  high: "high";
13
13
  xhigh: "xhigh";
14
+ max: "max";
14
15
  }>>;
15
16
  temperature: z.ZodOptional<z.ZodNumber>;
16
17
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -32,6 +33,7 @@ export declare const AgentOverrideConfigSchema: z.ZodObject<{
32
33
  medium: "medium";
33
34
  high: "high";
34
35
  xhigh: "xhigh";
36
+ max: "max";
35
37
  }>>;
36
38
  temperature: z.ZodOptional<z.ZodNumber>;
37
39
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -111,6 +113,7 @@ export declare const AgentOverrideConfigSchema: z.ZodObject<{
111
113
  medium: "medium";
112
114
  high: "high";
113
115
  xhigh: "xhigh";
116
+ max: "max";
114
117
  }>>;
115
118
  textVerbosity: z.ZodOptional<z.ZodEnum<{
116
119
  low: "low";
@@ -140,6 +143,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
140
143
  medium: "medium";
141
144
  high: "high";
142
145
  xhigh: "xhigh";
146
+ max: "max";
143
147
  }>>;
144
148
  temperature: z.ZodOptional<z.ZodNumber>;
145
149
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -161,6 +165,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
161
165
  medium: "medium";
162
166
  high: "high";
163
167
  xhigh: "xhigh";
168
+ max: "max";
164
169
  }>>;
165
170
  temperature: z.ZodOptional<z.ZodNumber>;
166
171
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -240,6 +245,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
240
245
  medium: "medium";
241
246
  high: "high";
242
247
  xhigh: "xhigh";
248
+ max: "max";
243
249
  }>>;
244
250
  textVerbosity: z.ZodOptional<z.ZodEnum<{
245
251
  low: "low";
@@ -268,6 +274,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
268
274
  medium: "medium";
269
275
  high: "high";
270
276
  xhigh: "xhigh";
277
+ max: "max";
271
278
  }>>;
272
279
  temperature: z.ZodOptional<z.ZodNumber>;
273
280
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -289,6 +296,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
289
296
  medium: "medium";
290
297
  high: "high";
291
298
  xhigh: "xhigh";
299
+ max: "max";
292
300
  }>>;
293
301
  temperature: z.ZodOptional<z.ZodNumber>;
294
302
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -368,6 +376,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
368
376
  medium: "medium";
369
377
  high: "high";
370
378
  xhigh: "xhigh";
379
+ max: "max";
371
380
  }>>;
372
381
  textVerbosity: z.ZodOptional<z.ZodEnum<{
373
382
  low: "low";
@@ -396,6 +405,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
396
405
  medium: "medium";
397
406
  high: "high";
398
407
  xhigh: "xhigh";
408
+ max: "max";
399
409
  }>>;
400
410
  temperature: z.ZodOptional<z.ZodNumber>;
401
411
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -417,6 +427,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
417
427
  medium: "medium";
418
428
  high: "high";
419
429
  xhigh: "xhigh";
430
+ max: "max";
420
431
  }>>;
421
432
  temperature: z.ZodOptional<z.ZodNumber>;
422
433
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -496,6 +507,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
496
507
  medium: "medium";
497
508
  high: "high";
498
509
  xhigh: "xhigh";
510
+ max: "max";
499
511
  }>>;
500
512
  textVerbosity: z.ZodOptional<z.ZodEnum<{
501
513
  low: "low";
@@ -524,6 +536,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
524
536
  medium: "medium";
525
537
  high: "high";
526
538
  xhigh: "xhigh";
539
+ max: "max";
527
540
  }>>;
528
541
  temperature: z.ZodOptional<z.ZodNumber>;
529
542
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -545,6 +558,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
545
558
  medium: "medium";
546
559
  high: "high";
547
560
  xhigh: "xhigh";
561
+ max: "max";
548
562
  }>>;
549
563
  temperature: z.ZodOptional<z.ZodNumber>;
550
564
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -624,6 +638,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
624
638
  medium: "medium";
625
639
  high: "high";
626
640
  xhigh: "xhigh";
641
+ max: "max";
627
642
  }>>;
628
643
  textVerbosity: z.ZodOptional<z.ZodEnum<{
629
644
  low: "low";
@@ -653,6 +668,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
653
668
  medium: "medium";
654
669
  high: "high";
655
670
  xhigh: "xhigh";
671
+ max: "max";
656
672
  }>>;
657
673
  temperature: z.ZodOptional<z.ZodNumber>;
658
674
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -674,6 +690,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
674
690
  medium: "medium";
675
691
  high: "high";
676
692
  xhigh: "xhigh";
693
+ max: "max";
677
694
  }>>;
678
695
  temperature: z.ZodOptional<z.ZodNumber>;
679
696
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -753,6 +770,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
753
770
  medium: "medium";
754
771
  high: "high";
755
772
  xhigh: "xhigh";
773
+ max: "max";
756
774
  }>>;
757
775
  textVerbosity: z.ZodOptional<z.ZodEnum<{
758
776
  low: "low";
@@ -781,6 +799,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
781
799
  medium: "medium";
782
800
  high: "high";
783
801
  xhigh: "xhigh";
802
+ max: "max";
784
803
  }>>;
785
804
  temperature: z.ZodOptional<z.ZodNumber>;
786
805
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -802,6 +821,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
802
821
  medium: "medium";
803
822
  high: "high";
804
823
  xhigh: "xhigh";
824
+ max: "max";
805
825
  }>>;
806
826
  temperature: z.ZodOptional<z.ZodNumber>;
807
827
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -881,6 +901,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
881
901
  medium: "medium";
882
902
  high: "high";
883
903
  xhigh: "xhigh";
904
+ max: "max";
884
905
  }>>;
885
906
  textVerbosity: z.ZodOptional<z.ZodEnum<{
886
907
  low: "low";
@@ -909,6 +930,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
909
930
  medium: "medium";
910
931
  high: "high";
911
932
  xhigh: "xhigh";
933
+ max: "max";
912
934
  }>>;
913
935
  temperature: z.ZodOptional<z.ZodNumber>;
914
936
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -930,6 +952,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
930
952
  medium: "medium";
931
953
  high: "high";
932
954
  xhigh: "xhigh";
955
+ max: "max";
933
956
  }>>;
934
957
  temperature: z.ZodOptional<z.ZodNumber>;
935
958
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -1009,6 +1032,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1009
1032
  medium: "medium";
1010
1033
  high: "high";
1011
1034
  xhigh: "xhigh";
1035
+ max: "max";
1012
1036
  }>>;
1013
1037
  textVerbosity: z.ZodOptional<z.ZodEnum<{
1014
1038
  low: "low";
@@ -1037,6 +1061,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1037
1061
  medium: "medium";
1038
1062
  high: "high";
1039
1063
  xhigh: "xhigh";
1064
+ max: "max";
1040
1065
  }>>;
1041
1066
  temperature: z.ZodOptional<z.ZodNumber>;
1042
1067
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -1058,6 +1083,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1058
1083
  medium: "medium";
1059
1084
  high: "high";
1060
1085
  xhigh: "xhigh";
1086
+ max: "max";
1061
1087
  }>>;
1062
1088
  temperature: z.ZodOptional<z.ZodNumber>;
1063
1089
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -1137,6 +1163,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1137
1163
  medium: "medium";
1138
1164
  high: "high";
1139
1165
  xhigh: "xhigh";
1166
+ max: "max";
1140
1167
  }>>;
1141
1168
  textVerbosity: z.ZodOptional<z.ZodEnum<{
1142
1169
  low: "low";
@@ -1165,6 +1192,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1165
1192
  medium: "medium";
1166
1193
  high: "high";
1167
1194
  xhigh: "xhigh";
1195
+ max: "max";
1168
1196
  }>>;
1169
1197
  temperature: z.ZodOptional<z.ZodNumber>;
1170
1198
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -1186,6 +1214,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1186
1214
  medium: "medium";
1187
1215
  high: "high";
1188
1216
  xhigh: "xhigh";
1217
+ max: "max";
1189
1218
  }>>;
1190
1219
  temperature: z.ZodOptional<z.ZodNumber>;
1191
1220
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -1265,6 +1294,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1265
1294
  medium: "medium";
1266
1295
  high: "high";
1267
1296
  xhigh: "xhigh";
1297
+ max: "max";
1268
1298
  }>>;
1269
1299
  textVerbosity: z.ZodOptional<z.ZodEnum<{
1270
1300
  low: "low";
@@ -1293,6 +1323,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1293
1323
  medium: "medium";
1294
1324
  high: "high";
1295
1325
  xhigh: "xhigh";
1326
+ max: "max";
1296
1327
  }>>;
1297
1328
  temperature: z.ZodOptional<z.ZodNumber>;
1298
1329
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -1314,6 +1345,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1314
1345
  medium: "medium";
1315
1346
  high: "high";
1316
1347
  xhigh: "xhigh";
1348
+ max: "max";
1317
1349
  }>>;
1318
1350
  temperature: z.ZodOptional<z.ZodNumber>;
1319
1351
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -1393,6 +1425,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1393
1425
  medium: "medium";
1394
1426
  high: "high";
1395
1427
  xhigh: "xhigh";
1428
+ max: "max";
1396
1429
  }>>;
1397
1430
  textVerbosity: z.ZodOptional<z.ZodEnum<{
1398
1431
  low: "low";
@@ -1421,6 +1454,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1421
1454
  medium: "medium";
1422
1455
  high: "high";
1423
1456
  xhigh: "xhigh";
1457
+ max: "max";
1424
1458
  }>>;
1425
1459
  temperature: z.ZodOptional<z.ZodNumber>;
1426
1460
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -1442,6 +1476,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1442
1476
  medium: "medium";
1443
1477
  high: "high";
1444
1478
  xhigh: "xhigh";
1479
+ max: "max";
1445
1480
  }>>;
1446
1481
  temperature: z.ZodOptional<z.ZodNumber>;
1447
1482
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -1521,6 +1556,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1521
1556
  medium: "medium";
1522
1557
  high: "high";
1523
1558
  xhigh: "xhigh";
1559
+ max: "max";
1524
1560
  }>>;
1525
1561
  textVerbosity: z.ZodOptional<z.ZodEnum<{
1526
1562
  low: "low";
@@ -1549,6 +1585,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1549
1585
  medium: "medium";
1550
1586
  high: "high";
1551
1587
  xhigh: "xhigh";
1588
+ max: "max";
1552
1589
  }>>;
1553
1590
  temperature: z.ZodOptional<z.ZodNumber>;
1554
1591
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -1570,6 +1607,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1570
1607
  medium: "medium";
1571
1608
  high: "high";
1572
1609
  xhigh: "xhigh";
1610
+ max: "max";
1573
1611
  }>>;
1574
1612
  temperature: z.ZodOptional<z.ZodNumber>;
1575
1613
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -1649,6 +1687,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1649
1687
  medium: "medium";
1650
1688
  high: "high";
1651
1689
  xhigh: "xhigh";
1690
+ max: "max";
1652
1691
  }>>;
1653
1692
  textVerbosity: z.ZodOptional<z.ZodEnum<{
1654
1693
  low: "low";
@@ -1677,6 +1716,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1677
1716
  medium: "medium";
1678
1717
  high: "high";
1679
1718
  xhigh: "xhigh";
1719
+ max: "max";
1680
1720
  }>>;
1681
1721
  temperature: z.ZodOptional<z.ZodNumber>;
1682
1722
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -1698,6 +1738,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1698
1738
  medium: "medium";
1699
1739
  high: "high";
1700
1740
  xhigh: "xhigh";
1741
+ max: "max";
1701
1742
  }>>;
1702
1743
  temperature: z.ZodOptional<z.ZodNumber>;
1703
1744
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -1777,6 +1818,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1777
1818
  medium: "medium";
1778
1819
  high: "high";
1779
1820
  xhigh: "xhigh";
1821
+ max: "max";
1780
1822
  }>>;
1781
1823
  textVerbosity: z.ZodOptional<z.ZodEnum<{
1782
1824
  low: "low";
@@ -1805,6 +1847,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1805
1847
  medium: "medium";
1806
1848
  high: "high";
1807
1849
  xhigh: "xhigh";
1850
+ max: "max";
1808
1851
  }>>;
1809
1852
  temperature: z.ZodOptional<z.ZodNumber>;
1810
1853
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -1826,6 +1869,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1826
1869
  medium: "medium";
1827
1870
  high: "high";
1828
1871
  xhigh: "xhigh";
1872
+ max: "max";
1829
1873
  }>>;
1830
1874
  temperature: z.ZodOptional<z.ZodNumber>;
1831
1875
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -1905,6 +1949,7 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1905
1949
  medium: "medium";
1906
1950
  high: "high";
1907
1951
  xhigh: "xhigh";
1952
+ max: "max";
1908
1953
  }>>;
1909
1954
  textVerbosity: z.ZodOptional<z.ZodEnum<{
1910
1955
  low: "low";
@@ -12,6 +12,7 @@ export declare const CategoryConfigSchema: z.ZodObject<{
12
12
  medium: "medium";
13
13
  high: "high";
14
14
  xhigh: "xhigh";
15
+ max: "max";
15
16
  }>>;
16
17
  temperature: z.ZodOptional<z.ZodNumber>;
17
18
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -33,6 +34,7 @@ export declare const CategoryConfigSchema: z.ZodObject<{
33
34
  medium: "medium";
34
35
  high: "high";
35
36
  xhigh: "xhigh";
37
+ max: "max";
36
38
  }>>;
37
39
  temperature: z.ZodOptional<z.ZodNumber>;
38
40
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -63,6 +65,7 @@ export declare const CategoryConfigSchema: z.ZodObject<{
63
65
  medium: "medium";
64
66
  high: "high";
65
67
  xhigh: "xhigh";
68
+ max: "max";
66
69
  }>>;
67
70
  textVerbosity: z.ZodOptional<z.ZodEnum<{
68
71
  low: "low";
@@ -76,9 +79,9 @@ export declare const CategoryConfigSchema: z.ZodObject<{
76
79
  disable: z.ZodOptional<z.ZodBoolean>;
77
80
  }, z.core.$strip>;
78
81
  export declare const BuiltinCategoryNameSchema: z.ZodEnum<{
82
+ "visual-engineering": "visual-engineering";
79
83
  deep: "deep";
80
84
  "unspecified-high": "unspecified-high";
81
- "visual-engineering": "visual-engineering";
82
85
  ultrabrain: "ultrabrain";
83
86
  artistry: "artistry";
84
87
  quick: "quick";
@@ -98,6 +101,7 @@ export declare const CategoriesConfigSchema: z.ZodRecord<z.ZodString, z.ZodObjec
98
101
  medium: "medium";
99
102
  high: "high";
100
103
  xhigh: "xhigh";
104
+ max: "max";
101
105
  }>>;
102
106
  temperature: z.ZodOptional<z.ZodNumber>;
103
107
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -119,6 +123,7 @@ export declare const CategoriesConfigSchema: z.ZodRecord<z.ZodString, z.ZodObjec
119
123
  medium: "medium";
120
124
  high: "high";
121
125
  xhigh: "xhigh";
126
+ max: "max";
122
127
  }>>;
123
128
  temperature: z.ZodOptional<z.ZodNumber>;
124
129
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -149,6 +154,7 @@ export declare const CategoriesConfigSchema: z.ZodRecord<z.ZodString, z.ZodObjec
149
154
  medium: "medium";
150
155
  high: "high";
151
156
  xhigh: "xhigh";
157
+ max: "max";
152
158
  }>>;
153
159
  textVerbosity: z.ZodOptional<z.ZodEnum<{
154
160
  low: "low";
@@ -8,5 +8,6 @@ export declare const BuiltinCommandNameSchema: z.ZodEnum<{
8
8
  "start-work": "start-work";
9
9
  "stop-continuation": "stop-continuation";
10
10
  "remove-ai-slops": "remove-ai-slops";
11
+ hyperplan: "hyperplan";
11
12
  }>;
12
13
  export type BuiltinCommandName = z.infer<typeof BuiltinCommandNameSchema>;
@@ -9,6 +9,7 @@ export declare const FallbackModelObjectSchema: z.ZodObject<{
9
9
  medium: "medium";
10
10
  high: "high";
11
11
  xhigh: "xhigh";
12
+ max: "max";
12
13
  }>>;
13
14
  temperature: z.ZodOptional<z.ZodNumber>;
14
15
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -33,6 +34,7 @@ export declare const FallbackModelObjectArraySchema: z.ZodArray<z.ZodObject<{
33
34
  medium: "medium";
34
35
  high: "high";
35
36
  xhigh: "xhigh";
37
+ max: "max";
36
38
  }>>;
37
39
  temperature: z.ZodOptional<z.ZodNumber>;
38
40
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -55,6 +57,7 @@ export declare const FallbackModelMixedArraySchema: z.ZodArray<z.ZodUnion<readon
55
57
  medium: "medium";
56
58
  high: "high";
57
59
  xhigh: "xhigh";
60
+ max: "max";
58
61
  }>>;
59
62
  temperature: z.ZodOptional<z.ZodNumber>;
60
63
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -77,6 +80,7 @@ export declare const FallbackModelsSchema: z.ZodUnion<readonly [z.ZodString, z.Z
77
80
  medium: "medium";
78
81
  high: "high";
79
82
  xhigh: "xhigh";
83
+ max: "max";
80
84
  }>>;
81
85
  temperature: z.ZodOptional<z.ZodNumber>;
82
86
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -98,6 +102,7 @@ export declare const FallbackModelsSchema: z.ZodUnion<readonly [z.ZodString, z.Z
98
102
  medium: "medium";
99
103
  high: "high";
100
104
  xhigh: "xhigh";
105
+ max: "max";
101
106
  }>>;
102
107
  temperature: z.ZodOptional<z.ZodNumber>;
103
108
  top_p: z.ZodOptional<z.ZodNumber>;
@@ -37,6 +37,7 @@ export declare const HookNameSchema: z.ZodEnum<{
37
37
  "delegate-task-retry": "delegate-task-retry";
38
38
  "prometheus-md-only": "prometheus-md-only";
39
39
  "sisyphus-junior-notepad": "sisyphus-junior-notepad";
40
+ "team-tool-gating": "team-tool-gating";
40
41
  "no-sisyphus-gpt": "no-sisyphus-gpt";
41
42
  "no-hephaestus-non-gpt": "no-hephaestus-non-gpt";
42
43
  "unstable-agent-babysitter": "unstable-agent-babysitter";
@@ -0,0 +1,21 @@
1
+ import { z } from "zod";
2
+ export declare const KeywordTypeSchema: z.ZodEnum<{
3
+ search: "search";
4
+ ultrawork: "ultrawork";
5
+ hyperplan: "hyperplan";
6
+ analyze: "analyze";
7
+ team: "team";
8
+ "hyperplan-ultrawork": "hyperplan-ultrawork";
9
+ }>;
10
+ export type KeywordType = z.infer<typeof KeywordTypeSchema>;
11
+ export declare const KeywordDetectorConfigSchema: z.ZodObject<{
12
+ disabled_keywords: z.ZodOptional<z.ZodArray<z.ZodEnum<{
13
+ search: "search";
14
+ ultrawork: "ultrawork";
15
+ hyperplan: "hyperplan";
16
+ analyze: "analyze";
17
+ team: "team";
18
+ "hyperplan-ultrawork": "hyperplan-ultrawork";
19
+ }>>>;
20
+ }, z.core.$strip>;
21
+ export type KeywordDetectorConfig = z.infer<typeof KeywordDetectorConfigSchema>;