evil-omo 3.17.12 → 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.
- package/README.ja.md +154 -114
- package/README.ko.md +197 -150
- package/README.ru.md +93 -71
- package/README.zh-cn.md +113 -72
- package/dist/agents/agent-skill-resolution.d.ts +1 -0
- package/dist/agents/builtin-agents/available-skills.d.ts +1 -1
- package/dist/agents/builtin-agents/general-agents.d.ts +1 -0
- package/dist/agents/builtin-agents.d.ts +1 -1
- package/dist/agents/dynamic-agent-core-sections.d.ts +1 -0
- package/dist/agents/dynamic-agent-prompt-builder.d.ts +1 -1
- package/dist/agents/hephaestus/gpt-5-5.d.ts +0 -4
- package/dist/agents/types.d.ts +1 -0
- package/dist/cli/doctor/checks/team-mode.d.ts +2 -0
- package/dist/cli/doctor/constants.d.ts +1 -0
- package/dist/cli/index.js +21099 -20826
- package/dist/cli/run/continuation-state.d.ts +1 -0
- package/dist/config/index.d.ts +1 -1
- package/dist/config/schema/agent-names.d.ts +1 -0
- package/dist/config/schema/agent-overrides.d.ts +45 -0
- package/dist/config/schema/categories.d.ts +7 -1
- package/dist/config/schema/commands.d.ts +1 -0
- package/dist/config/schema/evil-omo-config.d.ts +70 -0
- package/dist/config/schema/fallback-models.d.ts +5 -0
- package/dist/config/schema/hooks.d.ts +1 -0
- package/dist/config/schema/keyword-detector.d.ts +21 -0
- package/dist/config/schema/team-mode.d.ts +16 -0
- package/dist/config/schema.d.ts +2 -0
- package/dist/create-hooks.d.ts +3 -0
- package/dist/evil-omo.schema.json +191 -47
- package/dist/features/background-agent/manager.d.ts +17 -9
- package/dist/features/background-agent/process-cleanup.d.ts +4 -0
- package/dist/features/background-agent/types.d.ts +16 -12
- package/dist/features/background-agent/wait-for-task-session.d.ts +1 -1
- package/dist/features/boulder-state/storage.d.ts +1 -0
- package/dist/features/builtin-commands/commands.d.ts +1 -0
- package/dist/features/builtin-commands/templates/hyperplan.d.ts +1 -0
- package/dist/features/builtin-commands/templates/refactor.d.ts +1 -0
- package/dist/features/builtin-commands/templates/remove-ai-slops.d.ts +1 -0
- package/dist/features/builtin-commands/types.d.ts +1 -1
- package/dist/features/builtin-skills/skills/git-master-sections/commit-workflow.d.ts +1 -1
- package/dist/features/builtin-skills/skills/git-master-sections/history-search-workflow.d.ts +1 -1
- package/dist/features/builtin-skills/skills/git-master-sections/overview.d.ts +1 -1
- package/dist/features/builtin-skills/skills/git-master-sections/quick-reference.d.ts +1 -1
- package/dist/features/builtin-skills/skills/git-master-sections/rebase-workflow.d.ts +1 -1
- package/dist/features/builtin-skills/skills/index.d.ts +1 -0
- package/dist/features/builtin-skills/skills/team-mode.d.ts +2 -0
- package/dist/features/builtin-skills/skills.d.ts +1 -0
- package/dist/features/claude-code-plugin-loader/discovery.d.ts +1 -0
- package/dist/features/hook-message-injector/injector.d.ts +2 -2
- package/dist/features/opencode-skill-loader/loader.d.ts +2 -2
- package/dist/features/opencode-skill-loader/skill-resolution-options.d.ts +1 -0
- package/dist/features/run-continuation-state/types.d.ts +1 -1
- package/dist/features/skill-mcp-manager/types.d.ts +1 -0
- package/dist/features/team-mode/deps.d.ts +6 -0
- package/dist/features/team-mode/member-guidance.d.ts +2 -0
- package/dist/features/team-mode/member-parser.d.ts +16 -0
- package/dist/features/team-mode/member-session-resolution.d.ts +6 -0
- package/dist/features/team-mode/member-session-routing.d.ts +19 -0
- package/dist/features/team-mode/resolve-caller-team-lead.d.ts +8 -0
- package/dist/features/team-mode/team-layout-tmux/close-team-member-pane.d.ts +4 -0
- package/dist/features/team-mode/team-layout-tmux/layout.d.ts +26 -6
- package/dist/features/team-mode/team-layout-tmux/rebalance-team-window.d.ts +9 -0
- package/dist/features/team-mode/team-layout-tmux/resolve-caller-tmux-session.d.ts +7 -0
- package/dist/features/team-mode/team-layout-tmux/sweep-stale-team-sessions.d.ts +8 -0
- package/dist/features/team-mode/team-mailbox/ack.d.ts +2 -0
- package/dist/features/team-mode/team-mailbox/inbox.d.ts +3 -0
- package/dist/features/team-mode/team-mailbox/index.d.ts +7 -0
- package/dist/features/team-mode/team-mailbox/poll.d.ts +10 -0
- package/dist/features/team-mode/team-mailbox/reservation.d.ts +11 -0
- package/dist/features/team-mode/team-mailbox/send.d.ts +27 -0
- package/dist/features/team-mode/team-registry/index.d.ts +3 -0
- package/dist/features/team-mode/team-registry/loader.d.ts +12 -0
- package/dist/features/team-mode/team-registry/paths.d.ts +13 -0
- package/dist/features/team-mode/team-registry/team-spec-input-normalizer.d.ts +6 -0
- package/dist/features/team-mode/team-registry/validator.d.ts +10 -0
- package/dist/features/team-mode/team-runtime/activate-team-layout.d.ts +4 -0
- package/dist/features/team-mode/team-runtime/cleanup-team-run-resources.d.ts +17 -0
- package/dist/features/team-mode/team-runtime/create.d.ts +25 -0
- package/dist/features/team-mode/team-runtime/delete-team.d.ts +16 -0
- package/dist/features/team-mode/team-runtime/index.d.ts +2 -0
- package/dist/features/team-mode/team-runtime/resolve-member-dependencies.d.ts +3 -0
- package/dist/features/team-mode/team-runtime/resolve-member.d.ts +17 -0
- package/dist/features/team-mode/team-runtime/shutdown-helpers.d.ts +11 -0
- package/dist/features/team-mode/team-runtime/shutdown-test-fixtures.d.ts +46 -0
- package/dist/features/team-mode/team-runtime/shutdown.d.ts +5 -0
- package/dist/features/team-mode/team-runtime/status.d.ts +36 -0
- package/dist/features/team-mode/team-session-registry.d.ts +11 -0
- package/dist/features/team-mode/team-state-store/index.d.ts +1 -0
- package/dist/features/team-mode/team-state-store/locks.d.ts +12 -0
- package/dist/features/team-mode/team-state-store/resume.d.ts +10 -0
- package/dist/features/team-mode/team-state-store/store.d.ts +21 -0
- package/dist/features/team-mode/team-tasklist/claim.d.ts +10 -0
- package/dist/features/team-mode/team-tasklist/dependencies.d.ts +2 -0
- package/dist/features/team-mode/team-tasklist/get.d.ts +3 -0
- package/dist/features/team-mode/team-tasklist/index.d.ts +6 -0
- package/dist/features/team-mode/team-tasklist/list.d.ts +8 -0
- package/dist/features/team-mode/team-tasklist/store.d.ts +3 -0
- package/dist/features/team-mode/team-tasklist/test-support.d.ts +9 -0
- package/dist/features/team-mode/team-tasklist/update.d.ts +9 -0
- package/dist/features/team-mode/tools/index.d.ts +1 -0
- package/dist/features/team-mode/tools/lifecycle-test-fixture.d.ts +188 -0
- package/dist/features/team-mode/tools/lifecycle.d.ts +37 -0
- package/dist/features/team-mode/tools/messaging.d.ts +31 -0
- package/dist/features/team-mode/tools/query.d.ts +16 -0
- package/dist/features/team-mode/tools/tasks.d.ts +18 -0
- package/dist/features/team-mode/types.d.ts +138 -6
- package/dist/features/tmux-subagent/action-executor-core.d.ts +1 -0
- package/dist/features/tmux-subagent/action-executor.d.ts +1 -0
- package/dist/features/tmux-subagent/attachable-session-status.d.ts +4 -0
- package/dist/features/tmux-subagent/manager.d.ts +32 -3
- package/dist/features/tmux-subagent/pane-state-querier.d.ts +10 -0
- package/dist/features/tmux-subagent/polling.d.ts +1 -0
- package/dist/hooks/atlas/atlas-hook.d.ts +1 -1
- package/dist/hooks/atlas/boulder-continuation-injector.d.ts +2 -3
- package/dist/hooks/atlas/recent-model-resolver.d.ts +9 -1
- package/dist/hooks/atlas/tool-execute-after.d.ts +2 -1
- package/dist/hooks/atlas/tool-execute-before.d.ts +1 -0
- package/dist/hooks/atlas/types.d.ts +8 -2
- package/dist/hooks/index.d.ts +3 -0
- package/dist/hooks/keyword-detector/constants.d.ts +6 -0
- package/dist/hooks/keyword-detector/detector.d.ts +5 -3
- package/dist/hooks/keyword-detector/hook.d.ts +2 -1
- package/dist/hooks/keyword-detector/hyperplan/default.d.ts +13 -0
- package/dist/hooks/keyword-detector/hyperplan/index.d.ts +1 -0
- package/dist/hooks/keyword-detector/team/default.d.ts +13 -0
- package/dist/hooks/keyword-detector/team/index.d.ts +1 -0
- package/dist/hooks/ralph-loop/loop-session-recovery.d.ts +7 -0
- package/dist/hooks/session-notification-scheduler.d.ts +2 -4
- package/dist/hooks/session-notification-utils.d.ts +1 -0
- package/dist/hooks/session-recovery/recover-tool-result-missing.d.ts +2 -2
- package/dist/hooks/team-mailbox-injector/hook.d.ts +31 -0
- package/dist/hooks/team-mailbox-injector/index.d.ts +2 -0
- package/dist/hooks/team-mode-status-injector/hook.d.ts +28 -0
- package/dist/hooks/team-mode-status-injector/index.d.ts +1 -0
- package/dist/hooks/team-session-events/team-idle-wake-hint.d.ts +38 -0
- package/dist/hooks/team-session-events/team-lead-orphan-handler.d.ts +12 -0
- package/dist/hooks/team-session-events/team-member-error-handler.d.ts +10 -0
- package/dist/hooks/team-session-events/team-member-status-handler.d.ts +10 -0
- package/dist/hooks/team-tool-gating/hook.d.ts +3 -0
- package/dist/hooks/team-tool-gating/index.d.ts +1 -0
- package/dist/hooks/write-existing-file-guard/hook.d.ts +6 -1
- package/dist/hooks/write-existing-file-guard/tool-execute-before-handler.d.ts +1 -0
- package/dist/index.js +74497 -71438
- package/dist/plugin/hooks/create-core-hooks.d.ts +3 -0
- package/dist/plugin/hooks/create-tool-guard-hooks.d.ts +2 -1
- package/dist/plugin/hooks/create-transform-hooks.d.ts +3 -1
- package/dist/plugin/recent-synthetic-idles.d.ts +1 -0
- package/dist/plugin/tool-registry.d.ts +16 -0
- package/dist/shared/bun-spawn-shim.d.ts +40 -0
- package/dist/shared/posthog-activity-state.d.ts +0 -5
- package/dist/shared/posthog.d.ts +7 -6
- package/dist/shared/project-discovery-dirs.d.ts +1 -0
- package/dist/shared/shell-env.d.ts +1 -0
- package/dist/shared/tmux/constants.d.ts +1 -1
- package/dist/shared/tmux/index.d.ts +1 -0
- package/dist/shared/tmux/runner.d.ts +13 -0
- package/dist/shared/tmux/tmux-utils/pane-replace.d.ts +1 -1
- package/dist/shared/tmux/tmux-utils/pane-spawn.d.ts +13 -1
- package/dist/shared/tmux/tmux-utils/session-spawn.d.ts +13 -1
- package/dist/shared/tmux/tmux-utils/spawn-process.d.ts +1 -1
- package/dist/shared/tmux/tmux-utils/stale-session-sweep.d.ts +9 -2
- package/dist/shared/tmux/tmux-utils/window-spawn.d.ts +13 -1
- package/dist/shared/tmux/tmux-utils.d.ts +1 -1
- package/dist/tools/delegate-task/openai-categories.d.ts +1 -0
- package/dist/tools/delegate-task/skill-resolver.d.ts +1 -0
- package/dist/tools/delegate-task/subagent-resolver.d.ts +5 -1
- package/dist/tools/delegate-task/types.d.ts +1 -0
- package/dist/tools/index.d.ts +1 -0
- package/dist/tools/look-at/missing-file-error.d.ts +2 -0
- package/dist/tools/skill/types.d.ts +2 -0
- package/package.json +15 -14
|
@@ -14,6 +14,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
14
14
|
"git-master": "git-master";
|
|
15
15
|
"review-work": "review-work";
|
|
16
16
|
"ai-slop-remover": "ai-slop-remover";
|
|
17
|
+
"team-mode": "team-mode";
|
|
17
18
|
}>>>;
|
|
18
19
|
disabled_hooks: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
19
20
|
disabled_commands: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -25,6 +26,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
25
26
|
"start-work": "start-work";
|
|
26
27
|
"stop-continuation": "stop-continuation";
|
|
27
28
|
"remove-ai-slops": "remove-ai-slops";
|
|
29
|
+
hyperplan: "hyperplan";
|
|
28
30
|
}>>>;
|
|
29
31
|
disabled_tools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
30
32
|
mcp_env_allowlist: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -43,6 +45,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
43
45
|
medium: "medium";
|
|
44
46
|
high: "high";
|
|
45
47
|
xhigh: "xhigh";
|
|
48
|
+
max: "max";
|
|
46
49
|
}>>;
|
|
47
50
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
48
51
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -64,6 +67,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
64
67
|
medium: "medium";
|
|
65
68
|
high: "high";
|
|
66
69
|
xhigh: "xhigh";
|
|
70
|
+
max: "max";
|
|
67
71
|
}>>;
|
|
68
72
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
69
73
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -143,6 +147,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
143
147
|
medium: "medium";
|
|
144
148
|
high: "high";
|
|
145
149
|
xhigh: "xhigh";
|
|
150
|
+
max: "max";
|
|
146
151
|
}>>;
|
|
147
152
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
148
153
|
low: "low";
|
|
@@ -171,6 +176,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
171
176
|
medium: "medium";
|
|
172
177
|
high: "high";
|
|
173
178
|
xhigh: "xhigh";
|
|
179
|
+
max: "max";
|
|
174
180
|
}>>;
|
|
175
181
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
176
182
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -192,6 +198,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
192
198
|
medium: "medium";
|
|
193
199
|
high: "high";
|
|
194
200
|
xhigh: "xhigh";
|
|
201
|
+
max: "max";
|
|
195
202
|
}>>;
|
|
196
203
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
197
204
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -271,6 +278,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
271
278
|
medium: "medium";
|
|
272
279
|
high: "high";
|
|
273
280
|
xhigh: "xhigh";
|
|
281
|
+
max: "max";
|
|
274
282
|
}>>;
|
|
275
283
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
276
284
|
low: "low";
|
|
@@ -299,6 +307,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
299
307
|
medium: "medium";
|
|
300
308
|
high: "high";
|
|
301
309
|
xhigh: "xhigh";
|
|
310
|
+
max: "max";
|
|
302
311
|
}>>;
|
|
303
312
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
304
313
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -320,6 +329,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
320
329
|
medium: "medium";
|
|
321
330
|
high: "high";
|
|
322
331
|
xhigh: "xhigh";
|
|
332
|
+
max: "max";
|
|
323
333
|
}>>;
|
|
324
334
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
325
335
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -399,6 +409,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
399
409
|
medium: "medium";
|
|
400
410
|
high: "high";
|
|
401
411
|
xhigh: "xhigh";
|
|
412
|
+
max: "max";
|
|
402
413
|
}>>;
|
|
403
414
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
404
415
|
low: "low";
|
|
@@ -427,6 +438,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
427
438
|
medium: "medium";
|
|
428
439
|
high: "high";
|
|
429
440
|
xhigh: "xhigh";
|
|
441
|
+
max: "max";
|
|
430
442
|
}>>;
|
|
431
443
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
432
444
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -448,6 +460,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
448
460
|
medium: "medium";
|
|
449
461
|
high: "high";
|
|
450
462
|
xhigh: "xhigh";
|
|
463
|
+
max: "max";
|
|
451
464
|
}>>;
|
|
452
465
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
453
466
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -527,6 +540,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
527
540
|
medium: "medium";
|
|
528
541
|
high: "high";
|
|
529
542
|
xhigh: "xhigh";
|
|
543
|
+
max: "max";
|
|
530
544
|
}>>;
|
|
531
545
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
532
546
|
low: "low";
|
|
@@ -556,6 +570,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
556
570
|
medium: "medium";
|
|
557
571
|
high: "high";
|
|
558
572
|
xhigh: "xhigh";
|
|
573
|
+
max: "max";
|
|
559
574
|
}>>;
|
|
560
575
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
561
576
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -577,6 +592,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
577
592
|
medium: "medium";
|
|
578
593
|
high: "high";
|
|
579
594
|
xhigh: "xhigh";
|
|
595
|
+
max: "max";
|
|
580
596
|
}>>;
|
|
581
597
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
582
598
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -656,6 +672,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
656
672
|
medium: "medium";
|
|
657
673
|
high: "high";
|
|
658
674
|
xhigh: "xhigh";
|
|
675
|
+
max: "max";
|
|
659
676
|
}>>;
|
|
660
677
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
661
678
|
low: "low";
|
|
@@ -684,6 +701,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
684
701
|
medium: "medium";
|
|
685
702
|
high: "high";
|
|
686
703
|
xhigh: "xhigh";
|
|
704
|
+
max: "max";
|
|
687
705
|
}>>;
|
|
688
706
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
689
707
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -705,6 +723,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
705
723
|
medium: "medium";
|
|
706
724
|
high: "high";
|
|
707
725
|
xhigh: "xhigh";
|
|
726
|
+
max: "max";
|
|
708
727
|
}>>;
|
|
709
728
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
710
729
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -784,6 +803,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
784
803
|
medium: "medium";
|
|
785
804
|
high: "high";
|
|
786
805
|
xhigh: "xhigh";
|
|
806
|
+
max: "max";
|
|
787
807
|
}>>;
|
|
788
808
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
789
809
|
low: "low";
|
|
@@ -812,6 +832,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
812
832
|
medium: "medium";
|
|
813
833
|
high: "high";
|
|
814
834
|
xhigh: "xhigh";
|
|
835
|
+
max: "max";
|
|
815
836
|
}>>;
|
|
816
837
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
817
838
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -833,6 +854,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
833
854
|
medium: "medium";
|
|
834
855
|
high: "high";
|
|
835
856
|
xhigh: "xhigh";
|
|
857
|
+
max: "max";
|
|
836
858
|
}>>;
|
|
837
859
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
838
860
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -912,6 +934,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
912
934
|
medium: "medium";
|
|
913
935
|
high: "high";
|
|
914
936
|
xhigh: "xhigh";
|
|
937
|
+
max: "max";
|
|
915
938
|
}>>;
|
|
916
939
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
917
940
|
low: "low";
|
|
@@ -940,6 +963,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
940
963
|
medium: "medium";
|
|
941
964
|
high: "high";
|
|
942
965
|
xhigh: "xhigh";
|
|
966
|
+
max: "max";
|
|
943
967
|
}>>;
|
|
944
968
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
945
969
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -961,6 +985,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
961
985
|
medium: "medium";
|
|
962
986
|
high: "high";
|
|
963
987
|
xhigh: "xhigh";
|
|
988
|
+
max: "max";
|
|
964
989
|
}>>;
|
|
965
990
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
966
991
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1040,6 +1065,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
1040
1065
|
medium: "medium";
|
|
1041
1066
|
high: "high";
|
|
1042
1067
|
xhigh: "xhigh";
|
|
1068
|
+
max: "max";
|
|
1043
1069
|
}>>;
|
|
1044
1070
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
1045
1071
|
low: "low";
|
|
@@ -1068,6 +1094,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
1068
1094
|
medium: "medium";
|
|
1069
1095
|
high: "high";
|
|
1070
1096
|
xhigh: "xhigh";
|
|
1097
|
+
max: "max";
|
|
1071
1098
|
}>>;
|
|
1072
1099
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
1073
1100
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1089,6 +1116,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
1089
1116
|
medium: "medium";
|
|
1090
1117
|
high: "high";
|
|
1091
1118
|
xhigh: "xhigh";
|
|
1119
|
+
max: "max";
|
|
1092
1120
|
}>>;
|
|
1093
1121
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
1094
1122
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1168,6 +1196,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
1168
1196
|
medium: "medium";
|
|
1169
1197
|
high: "high";
|
|
1170
1198
|
xhigh: "xhigh";
|
|
1199
|
+
max: "max";
|
|
1171
1200
|
}>>;
|
|
1172
1201
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
1173
1202
|
low: "low";
|
|
@@ -1196,6 +1225,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
1196
1225
|
medium: "medium";
|
|
1197
1226
|
high: "high";
|
|
1198
1227
|
xhigh: "xhigh";
|
|
1228
|
+
max: "max";
|
|
1199
1229
|
}>>;
|
|
1200
1230
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
1201
1231
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1217,6 +1247,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
1217
1247
|
medium: "medium";
|
|
1218
1248
|
high: "high";
|
|
1219
1249
|
xhigh: "xhigh";
|
|
1250
|
+
max: "max";
|
|
1220
1251
|
}>>;
|
|
1221
1252
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
1222
1253
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1296,6 +1327,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
1296
1327
|
medium: "medium";
|
|
1297
1328
|
high: "high";
|
|
1298
1329
|
xhigh: "xhigh";
|
|
1330
|
+
max: "max";
|
|
1299
1331
|
}>>;
|
|
1300
1332
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
1301
1333
|
low: "low";
|
|
@@ -1324,6 +1356,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
1324
1356
|
medium: "medium";
|
|
1325
1357
|
high: "high";
|
|
1326
1358
|
xhigh: "xhigh";
|
|
1359
|
+
max: "max";
|
|
1327
1360
|
}>>;
|
|
1328
1361
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
1329
1362
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1345,6 +1378,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
1345
1378
|
medium: "medium";
|
|
1346
1379
|
high: "high";
|
|
1347
1380
|
xhigh: "xhigh";
|
|
1381
|
+
max: "max";
|
|
1348
1382
|
}>>;
|
|
1349
1383
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
1350
1384
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1424,6 +1458,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
1424
1458
|
medium: "medium";
|
|
1425
1459
|
high: "high";
|
|
1426
1460
|
xhigh: "xhigh";
|
|
1461
|
+
max: "max";
|
|
1427
1462
|
}>>;
|
|
1428
1463
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
1429
1464
|
low: "low";
|
|
@@ -1452,6 +1487,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
1452
1487
|
medium: "medium";
|
|
1453
1488
|
high: "high";
|
|
1454
1489
|
xhigh: "xhigh";
|
|
1490
|
+
max: "max";
|
|
1455
1491
|
}>>;
|
|
1456
1492
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
1457
1493
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1473,6 +1509,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
1473
1509
|
medium: "medium";
|
|
1474
1510
|
high: "high";
|
|
1475
1511
|
xhigh: "xhigh";
|
|
1512
|
+
max: "max";
|
|
1476
1513
|
}>>;
|
|
1477
1514
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
1478
1515
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1552,6 +1589,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
1552
1589
|
medium: "medium";
|
|
1553
1590
|
high: "high";
|
|
1554
1591
|
xhigh: "xhigh";
|
|
1592
|
+
max: "max";
|
|
1555
1593
|
}>>;
|
|
1556
1594
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
1557
1595
|
low: "low";
|
|
@@ -1580,6 +1618,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
1580
1618
|
medium: "medium";
|
|
1581
1619
|
high: "high";
|
|
1582
1620
|
xhigh: "xhigh";
|
|
1621
|
+
max: "max";
|
|
1583
1622
|
}>>;
|
|
1584
1623
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
1585
1624
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1601,6 +1640,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
1601
1640
|
medium: "medium";
|
|
1602
1641
|
high: "high";
|
|
1603
1642
|
xhigh: "xhigh";
|
|
1643
|
+
max: "max";
|
|
1604
1644
|
}>>;
|
|
1605
1645
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
1606
1646
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1680,6 +1720,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
1680
1720
|
medium: "medium";
|
|
1681
1721
|
high: "high";
|
|
1682
1722
|
xhigh: "xhigh";
|
|
1723
|
+
max: "max";
|
|
1683
1724
|
}>>;
|
|
1684
1725
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
1685
1726
|
low: "low";
|
|
@@ -1708,6 +1749,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
1708
1749
|
medium: "medium";
|
|
1709
1750
|
high: "high";
|
|
1710
1751
|
xhigh: "xhigh";
|
|
1752
|
+
max: "max";
|
|
1711
1753
|
}>>;
|
|
1712
1754
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
1713
1755
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1729,6 +1771,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
1729
1771
|
medium: "medium";
|
|
1730
1772
|
high: "high";
|
|
1731
1773
|
xhigh: "xhigh";
|
|
1774
|
+
max: "max";
|
|
1732
1775
|
}>>;
|
|
1733
1776
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
1734
1777
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1808,6 +1851,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
1808
1851
|
medium: "medium";
|
|
1809
1852
|
high: "high";
|
|
1810
1853
|
xhigh: "xhigh";
|
|
1854
|
+
max: "max";
|
|
1811
1855
|
}>>;
|
|
1812
1856
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
1813
1857
|
low: "low";
|
|
@@ -1838,6 +1882,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
1838
1882
|
medium: "medium";
|
|
1839
1883
|
high: "high";
|
|
1840
1884
|
xhigh: "xhigh";
|
|
1885
|
+
max: "max";
|
|
1841
1886
|
}>>;
|
|
1842
1887
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
1843
1888
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1859,6 +1904,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
1859
1904
|
medium: "medium";
|
|
1860
1905
|
high: "high";
|
|
1861
1906
|
xhigh: "xhigh";
|
|
1907
|
+
max: "max";
|
|
1862
1908
|
}>>;
|
|
1863
1909
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
1864
1910
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1889,6 +1935,7 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
1889
1935
|
medium: "medium";
|
|
1890
1936
|
high: "high";
|
|
1891
1937
|
xhigh: "xhigh";
|
|
1938
|
+
max: "max";
|
|
1892
1939
|
}>>;
|
|
1893
1940
|
textVerbosity: z.ZodOptional<z.ZodEnum<{
|
|
1894
1941
|
low: "low";
|
|
@@ -2048,6 +2095,29 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
2048
2095
|
includePrefix: z.ZodDefault<z.ZodBoolean>;
|
|
2049
2096
|
}, z.core.$strip>>;
|
|
2050
2097
|
}, z.core.$strip>>;
|
|
2098
|
+
team_mode: z.ZodOptional<z.ZodObject<{
|
|
2099
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
2100
|
+
tmux_visualization: z.ZodDefault<z.ZodBoolean>;
|
|
2101
|
+
max_parallel_members: z.ZodDefault<z.ZodNumber>;
|
|
2102
|
+
max_members: z.ZodDefault<z.ZodNumber>;
|
|
2103
|
+
max_messages_per_run: z.ZodDefault<z.ZodNumber>;
|
|
2104
|
+
max_wall_clock_minutes: z.ZodDefault<z.ZodNumber>;
|
|
2105
|
+
max_member_turns: z.ZodDefault<z.ZodNumber>;
|
|
2106
|
+
base_dir: z.ZodOptional<z.ZodString>;
|
|
2107
|
+
message_payload_max_bytes: z.ZodDefault<z.ZodNumber>;
|
|
2108
|
+
recipient_unread_max_bytes: z.ZodDefault<z.ZodNumber>;
|
|
2109
|
+
mailbox_poll_interval_ms: z.ZodDefault<z.ZodNumber>;
|
|
2110
|
+
}, z.core.$strip>>;
|
|
2111
|
+
keyword_detector: z.ZodOptional<z.ZodObject<{
|
|
2112
|
+
disabled_keywords: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2113
|
+
search: "search";
|
|
2114
|
+
ultrawork: "ultrawork";
|
|
2115
|
+
hyperplan: "hyperplan";
|
|
2116
|
+
analyze: "analyze";
|
|
2117
|
+
team: "team";
|
|
2118
|
+
"hyperplan-ultrawork": "hyperplan-ultrawork";
|
|
2119
|
+
}>>>;
|
|
2120
|
+
}, z.core.$strip>>;
|
|
2051
2121
|
babysitting: z.ZodOptional<z.ZodObject<{
|
|
2052
2122
|
timeout_ms: z.ZodDefault<z.ZodNumber>;
|
|
2053
2123
|
}, z.core.$strip>>;
|
|
@@ -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>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
/** Team Mode config - see .sisyphus/plans/team-mode.md (D-01/D-25). */
|
|
3
|
+
export declare const TeamModeConfigSchema: z.ZodObject<{
|
|
4
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
5
|
+
tmux_visualization: z.ZodDefault<z.ZodBoolean>;
|
|
6
|
+
max_parallel_members: z.ZodDefault<z.ZodNumber>;
|
|
7
|
+
max_members: z.ZodDefault<z.ZodNumber>;
|
|
8
|
+
max_messages_per_run: z.ZodDefault<z.ZodNumber>;
|
|
9
|
+
max_wall_clock_minutes: z.ZodDefault<z.ZodNumber>;
|
|
10
|
+
max_member_turns: z.ZodDefault<z.ZodNumber>;
|
|
11
|
+
base_dir: z.ZodOptional<z.ZodString>;
|
|
12
|
+
message_payload_max_bytes: z.ZodDefault<z.ZodNumber>;
|
|
13
|
+
recipient_unread_max_bytes: z.ZodDefault<z.ZodNumber>;
|
|
14
|
+
mailbox_poll_interval_ms: z.ZodDefault<z.ZodNumber>;
|
|
15
|
+
}, z.core.$strip>;
|
|
16
|
+
export type TeamModeConfig = z.infer<typeof TeamModeConfigSchema>;
|
package/dist/config/schema.d.ts
CHANGED
|
@@ -13,12 +13,14 @@ export * from "./schema/fallback-models";
|
|
|
13
13
|
export * from "./schema/git-env-prefix";
|
|
14
14
|
export * from "./schema/git-master";
|
|
15
15
|
export * from "./schema/hooks";
|
|
16
|
+
export * from "./schema/keyword-detector";
|
|
16
17
|
export * from "./schema/model-capabilities";
|
|
17
18
|
export * from "./schema/notification";
|
|
18
19
|
export * from "./schema/openclaw";
|
|
19
20
|
export * from "./schema/evil-omo-config";
|
|
20
21
|
export * from "./schema/ralph-loop";
|
|
21
22
|
export * from "./schema/runtime-fallback";
|
|
23
|
+
export * from "./schema/team-mode";
|
|
22
24
|
export * from "./schema/skills";
|
|
23
25
|
export * from "./schema/sisyphus";
|
|
24
26
|
export * from "./schema/sisyphus-agent";
|
package/dist/create-hooks.d.ts
CHANGED
|
@@ -42,6 +42,8 @@ export declare function createHooks(args: {
|
|
|
42
42
|
claudeCodeHooks: ReturnType<typeof import("./hooks").createClaudeCodeHooksHook> | null;
|
|
43
43
|
keywordDetector: ReturnType<typeof import("./hooks").createKeywordDetectorHook> | null;
|
|
44
44
|
contextInjectorMessagesTransform: ReturnType<typeof import("./features/context-injector").createContextInjectorMessagesTransformHook>;
|
|
45
|
+
teamModeStatusInjector: ReturnType<typeof import("./hooks").createTeamModeStatusInjector> | null;
|
|
46
|
+
teamMailboxInjector: ReturnType<typeof import("./hooks").createTeamMailboxInjector> | null;
|
|
45
47
|
thinkingBlockValidator: ReturnType<typeof import("./hooks").createThinkingBlockValidatorHook> | null;
|
|
46
48
|
toolPairValidator: ReturnType<typeof import("./hooks").createToolPairValidatorHook> | null;
|
|
47
49
|
commentChecker: ReturnType<typeof import("./hooks").createCommentCheckerHooks> | null;
|
|
@@ -58,6 +60,7 @@ export declare function createHooks(args: {
|
|
|
58
60
|
readImageResizer: ReturnType<typeof import("./hooks").createReadImageResizerHook> | null;
|
|
59
61
|
todoDescriptionOverride: ReturnType<typeof import("./hooks").createTodoDescriptionOverrideHook> | null;
|
|
60
62
|
webfetchRedirectGuard: ReturnType<typeof import("./hooks").createWebFetchRedirectGuardHook> | null;
|
|
63
|
+
teamToolGating: ReturnType<typeof import("./hooks").createTeamToolGating> | null;
|
|
61
64
|
contextWindowMonitor: ReturnType<typeof import("./hooks").createContextWindowMonitorHook> | null;
|
|
62
65
|
preemptiveCompaction: ReturnType<typeof import("./hooks").createPreemptiveCompactionHook> | null;
|
|
63
66
|
sessionRecovery: ReturnType<typeof import("./hooks").createSessionRecoveryHook> | null;
|