@wolfx/oh-my-openagent 3.17.15 → 4.1.1
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 +178 -113
- package/README.ko.md +221 -149
- package/README.md +79 -51
- package/README.ru.md +118 -71
- package/README.zh-cn.md +139 -73
- package/dist/agents/agent-skill-resolution.d.ts +1 -0
- package/dist/agents/atlas/agent.d.ts +7 -12
- package/dist/agents/atlas/default-prompt-sections.d.ts +5 -5
- package/dist/agents/atlas/gemini-prompt-sections.d.ts +4 -4
- package/dist/agents/atlas/gpt-prompt-sections.d.ts +5 -5
- package/dist/agents/atlas/kimi-prompt-sections.d.ts +6 -0
- package/dist/agents/atlas/kimi.d.ts +2 -0
- package/dist/agents/atlas/opus-4-7-prompt-sections.d.ts +6 -0
- package/dist/agents/atlas/opus-4-7.d.ts +2 -0
- package/dist/agents/atlas/shared-prompt.d.ts +1 -1
- 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/prometheus/plan-generation.d.ts +1 -1
- package/dist/agents/types.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/fallback-models.d.ts +5 -0
- package/dist/config/schema/hooks.d.ts +2 -0
- package/dist/config/schema/keyword-detector.d.ts +21 -0
- package/dist/config/schema/oh-my-opencode-config.d.ts +71 -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 +4 -0
- package/dist/create-managers.d.ts +2 -0
- package/dist/features/background-agent/manager.d.ts +13 -0
- package/dist/features/background-agent/spawner.d.ts +4 -2
- package/dist/features/background-agent/task-poller.d.ts +1 -0
- package/dist/features/background-agent/types.d.ts +5 -0
- package/dist/features/boulder-state/format-duration.d.ts +1 -0
- package/dist/features/boulder-state/index.d.ts +1 -0
- package/dist/features/boulder-state/storage.d.ts +40 -1
- package/dist/features/boulder-state/types.d.ts +43 -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/templates/start-work.d.ts +1 -1
- 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/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/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/session-cleanup.d.ts +21 -0
- package/dist/features/team-mode/team-runtime/session-team-run-registry.d.ts +4 -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 +137 -5
- 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/cleanup.d.ts +10 -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/features/tmux-subagent/session-created-handler.d.ts +23 -0
- package/dist/features/tmux-subagent/session-deleted-handler.d.ts +16 -0
- package/dist/hooks/atlas/atlas-hook.d.ts +1 -1
- package/dist/hooks/atlas/boulder-continuation-injector.d.ts +3 -4
- package/dist/hooks/atlas/recent-model-resolver.d.ts +9 -1
- package/dist/hooks/atlas/system-reminder-templates.d.ts +1 -0
- package/dist/hooks/atlas/tool-execute-after.d.ts +3 -1
- package/dist/hooks/atlas/tool-execute-before.d.ts +2 -0
- package/dist/hooks/atlas/types.d.ts +10 -2
- package/dist/hooks/compaction-context-injector/recovery.d.ts +1 -1
- package/dist/hooks/compaction-context-injector/types.d.ts +1 -0
- package/dist/hooks/compaction-todo-preserver/hook.d.ts +11 -0
- package/dist/hooks/fsync-skip-warning/index.d.ts +18 -0
- package/dist/hooks/index.d.ts +4 -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/continuation-prompt-injector.d.ts +7 -1
- package/dist/hooks/ralph-loop/iteration-continuation.d.ts +9 -1
- package/dist/hooks/ralph-loop/loop-state-controller.d.ts +1 -0
- package/dist/hooks/ralph-loop/pending-verification-handler.d.ts +3 -0
- package/dist/hooks/ralph-loop/ralph-loop-event-handler.d.ts +2 -0
- package/dist/hooks/ralph-loop/types.d.ts +1 -0
- package/dist/hooks/ralph-loop/verification-failure-handler.d.ts +3 -1
- package/dist/hooks/session-recovery/recover-tool-result-missing.d.ts +2 -2
- package/dist/hooks/shared/session-idle-settle.d.ts +11 -0
- 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 +42 -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/todo-description-override/description.d.ts +1 -1
- package/dist/hooks/unstable-agent-babysitter/unstable-agent-babysitter-hook.d.ts +2 -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 +93264 -81453
- package/dist/oh-my-opencode.schema.json +199 -47
- package/dist/plugin/hooks/create-core-hooks.d.ts +4 -0
- package/dist/plugin/hooks/create-tool-guard-hooks.d.ts +3 -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/session-compacting.d.ts +31 -0
- package/dist/plugin/tool-registry.d.ts +16 -0
- package/dist/plugin-dispose.d.ts +13 -0
- package/dist/plugin-handlers/agent-priority-order.d.ts +6 -6
- package/dist/shared/agent-ordering.d.ts +8 -0
- package/dist/shared/agent-sort-shim.d.ts +8 -8
- package/dist/shared/agent-tool-restrictions.d.ts +5 -1
- package/dist/shared/bun-file-shim.d.ts +8 -0
- package/dist/shared/bun-hash-shim.d.ts +1 -0
- package/dist/shared/bun-spawn-shim.d.ts +1 -0
- package/dist/shared/bun-which-shim.d.ts +1 -0
- package/dist/shared/classify-path-environment.d.ts +3 -0
- package/dist/shared/event-session-id.d.ts +2 -0
- package/dist/shared/extract-semver.d.ts +1 -0
- package/dist/shared/fsync-skip-tracker.d.ts +12 -0
- package/dist/shared/fsync-skip-warning-formatter.d.ts +2 -0
- package/dist/shared/index.d.ts +3 -0
- package/dist/shared/internal-initiator-marker.d.ts +8 -0
- package/dist/shared/model-capability-heuristics.d.ts +1 -0
- package/dist/shared/opencode-version.d.ts +14 -1
- package/dist/shared/project-discovery-dirs.d.ts +1 -0
- package/dist/shared/session-route.d.ts +18 -0
- package/dist/shared/shell-env.d.ts +1 -0
- package/dist/shared/tmux/cmux-detect.d.ts +8 -0
- package/dist/shared/tmux/constants.d.ts +1 -1
- package/dist/shared/tmux/index.d.ts +2 -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/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/shared/tolerant-fsync.d.ts +5 -0
- package/dist/shared/write-file-atomically.d.ts +4 -1
- package/dist/tools/call-omo-agent/agent-resolver.d.ts +5 -12
- package/dist/tools/call-omo-agent/constants.d.ts +2 -2
- package/dist/tools/delegate-task/model-string-parser.d.ts +9 -0
- package/dist/tools/delegate-task/openai-categories.d.ts +1 -0
- package/dist/tools/delegate-task/resolve-call-id.d.ts +2 -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/sync-prompt-sender.d.ts +1 -0
- package/dist/tools/delegate-task/sync-result-fetcher.d.ts +3 -1
- package/dist/tools/delegate-task/types.d.ts +1 -0
- package/dist/tools/index.d.ts +1 -0
- package/dist/tools/interactive-bash/constants.d.ts +1 -0
- package/dist/tools/interactive-bash/tmux-path-resolver.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 +3 -4
- package/dist/hooks/ralph-loop/completion-promise-detector-test-input.d.ts +0 -11
|
@@ -14,6 +14,14 @@
|
|
|
14
14
|
"default_run_agent": {
|
|
15
15
|
"type": "string"
|
|
16
16
|
},
|
|
17
|
+
"agent_order": {
|
|
18
|
+
"maxItems": 64,
|
|
19
|
+
"type": "array",
|
|
20
|
+
"items": {
|
|
21
|
+
"type": "string",
|
|
22
|
+
"maxLength": 128
|
|
23
|
+
}
|
|
24
|
+
},
|
|
17
25
|
"agent_definitions": {
|
|
18
26
|
"type": "array",
|
|
19
27
|
"items": {
|
|
@@ -45,7 +53,8 @@
|
|
|
45
53
|
"frontend-ui-ux",
|
|
46
54
|
"git-master",
|
|
47
55
|
"review-work",
|
|
48
|
-
"ai-slop-remover"
|
|
56
|
+
"ai-slop-remover",
|
|
57
|
+
"team-mode"
|
|
49
58
|
]
|
|
50
59
|
}
|
|
51
60
|
},
|
|
@@ -67,7 +76,8 @@
|
|
|
67
76
|
"refactor",
|
|
68
77
|
"start-work",
|
|
69
78
|
"stop-continuation",
|
|
70
|
-
"remove-ai-slops"
|
|
79
|
+
"remove-ai-slops",
|
|
80
|
+
"hyperplan"
|
|
71
81
|
]
|
|
72
82
|
}
|
|
73
83
|
},
|
|
@@ -128,7 +138,8 @@
|
|
|
128
138
|
"low",
|
|
129
139
|
"medium",
|
|
130
140
|
"high",
|
|
131
|
-
"xhigh"
|
|
141
|
+
"xhigh",
|
|
142
|
+
"max"
|
|
132
143
|
]
|
|
133
144
|
},
|
|
134
145
|
"temperature": {
|
|
@@ -194,7 +205,8 @@
|
|
|
194
205
|
"low",
|
|
195
206
|
"medium",
|
|
196
207
|
"high",
|
|
197
|
-
"xhigh"
|
|
208
|
+
"xhigh",
|
|
209
|
+
"max"
|
|
198
210
|
]
|
|
199
211
|
},
|
|
200
212
|
"temperature": {
|
|
@@ -397,7 +409,8 @@
|
|
|
397
409
|
"low",
|
|
398
410
|
"medium",
|
|
399
411
|
"high",
|
|
400
|
-
"xhigh"
|
|
412
|
+
"xhigh",
|
|
413
|
+
"max"
|
|
401
414
|
]
|
|
402
415
|
},
|
|
403
416
|
"textVerbosity": {
|
|
@@ -478,7 +491,8 @@
|
|
|
478
491
|
"low",
|
|
479
492
|
"medium",
|
|
480
493
|
"high",
|
|
481
|
-
"xhigh"
|
|
494
|
+
"xhigh",
|
|
495
|
+
"max"
|
|
482
496
|
]
|
|
483
497
|
},
|
|
484
498
|
"temperature": {
|
|
@@ -544,7 +558,8 @@
|
|
|
544
558
|
"low",
|
|
545
559
|
"medium",
|
|
546
560
|
"high",
|
|
547
|
-
"xhigh"
|
|
561
|
+
"xhigh",
|
|
562
|
+
"max"
|
|
548
563
|
]
|
|
549
564
|
},
|
|
550
565
|
"temperature": {
|
|
@@ -747,7 +762,8 @@
|
|
|
747
762
|
"low",
|
|
748
763
|
"medium",
|
|
749
764
|
"high",
|
|
750
|
-
"xhigh"
|
|
765
|
+
"xhigh",
|
|
766
|
+
"max"
|
|
751
767
|
]
|
|
752
768
|
},
|
|
753
769
|
"textVerbosity": {
|
|
@@ -828,7 +844,8 @@
|
|
|
828
844
|
"low",
|
|
829
845
|
"medium",
|
|
830
846
|
"high",
|
|
831
|
-
"xhigh"
|
|
847
|
+
"xhigh",
|
|
848
|
+
"max"
|
|
832
849
|
]
|
|
833
850
|
},
|
|
834
851
|
"temperature": {
|
|
@@ -894,7 +911,8 @@
|
|
|
894
911
|
"low",
|
|
895
912
|
"medium",
|
|
896
913
|
"high",
|
|
897
|
-
"xhigh"
|
|
914
|
+
"xhigh",
|
|
915
|
+
"max"
|
|
898
916
|
]
|
|
899
917
|
},
|
|
900
918
|
"temperature": {
|
|
@@ -1097,7 +1115,8 @@
|
|
|
1097
1115
|
"low",
|
|
1098
1116
|
"medium",
|
|
1099
1117
|
"high",
|
|
1100
|
-
"xhigh"
|
|
1118
|
+
"xhigh",
|
|
1119
|
+
"max"
|
|
1101
1120
|
]
|
|
1102
1121
|
},
|
|
1103
1122
|
"textVerbosity": {
|
|
@@ -1178,7 +1197,8 @@
|
|
|
1178
1197
|
"low",
|
|
1179
1198
|
"medium",
|
|
1180
1199
|
"high",
|
|
1181
|
-
"xhigh"
|
|
1200
|
+
"xhigh",
|
|
1201
|
+
"max"
|
|
1182
1202
|
]
|
|
1183
1203
|
},
|
|
1184
1204
|
"temperature": {
|
|
@@ -1244,7 +1264,8 @@
|
|
|
1244
1264
|
"low",
|
|
1245
1265
|
"medium",
|
|
1246
1266
|
"high",
|
|
1247
|
-
"xhigh"
|
|
1267
|
+
"xhigh",
|
|
1268
|
+
"max"
|
|
1248
1269
|
]
|
|
1249
1270
|
},
|
|
1250
1271
|
"temperature": {
|
|
@@ -1447,7 +1468,8 @@
|
|
|
1447
1468
|
"low",
|
|
1448
1469
|
"medium",
|
|
1449
1470
|
"high",
|
|
1450
|
-
"xhigh"
|
|
1471
|
+
"xhigh",
|
|
1472
|
+
"max"
|
|
1451
1473
|
]
|
|
1452
1474
|
},
|
|
1453
1475
|
"textVerbosity": {
|
|
@@ -1531,7 +1553,8 @@
|
|
|
1531
1553
|
"low",
|
|
1532
1554
|
"medium",
|
|
1533
1555
|
"high",
|
|
1534
|
-
"xhigh"
|
|
1556
|
+
"xhigh",
|
|
1557
|
+
"max"
|
|
1535
1558
|
]
|
|
1536
1559
|
},
|
|
1537
1560
|
"temperature": {
|
|
@@ -1597,7 +1620,8 @@
|
|
|
1597
1620
|
"low",
|
|
1598
1621
|
"medium",
|
|
1599
1622
|
"high",
|
|
1600
|
-
"xhigh"
|
|
1623
|
+
"xhigh",
|
|
1624
|
+
"max"
|
|
1601
1625
|
]
|
|
1602
1626
|
},
|
|
1603
1627
|
"temperature": {
|
|
@@ -1800,7 +1824,8 @@
|
|
|
1800
1824
|
"low",
|
|
1801
1825
|
"medium",
|
|
1802
1826
|
"high",
|
|
1803
|
-
"xhigh"
|
|
1827
|
+
"xhigh",
|
|
1828
|
+
"max"
|
|
1804
1829
|
]
|
|
1805
1830
|
},
|
|
1806
1831
|
"textVerbosity": {
|
|
@@ -1881,7 +1906,8 @@
|
|
|
1881
1906
|
"low",
|
|
1882
1907
|
"medium",
|
|
1883
1908
|
"high",
|
|
1884
|
-
"xhigh"
|
|
1909
|
+
"xhigh",
|
|
1910
|
+
"max"
|
|
1885
1911
|
]
|
|
1886
1912
|
},
|
|
1887
1913
|
"temperature": {
|
|
@@ -1947,7 +1973,8 @@
|
|
|
1947
1973
|
"low",
|
|
1948
1974
|
"medium",
|
|
1949
1975
|
"high",
|
|
1950
|
-
"xhigh"
|
|
1976
|
+
"xhigh",
|
|
1977
|
+
"max"
|
|
1951
1978
|
]
|
|
1952
1979
|
},
|
|
1953
1980
|
"temperature": {
|
|
@@ -2150,7 +2177,8 @@
|
|
|
2150
2177
|
"low",
|
|
2151
2178
|
"medium",
|
|
2152
2179
|
"high",
|
|
2153
|
-
"xhigh"
|
|
2180
|
+
"xhigh",
|
|
2181
|
+
"max"
|
|
2154
2182
|
]
|
|
2155
2183
|
},
|
|
2156
2184
|
"textVerbosity": {
|
|
@@ -2231,7 +2259,8 @@
|
|
|
2231
2259
|
"low",
|
|
2232
2260
|
"medium",
|
|
2233
2261
|
"high",
|
|
2234
|
-
"xhigh"
|
|
2262
|
+
"xhigh",
|
|
2263
|
+
"max"
|
|
2235
2264
|
]
|
|
2236
2265
|
},
|
|
2237
2266
|
"temperature": {
|
|
@@ -2297,7 +2326,8 @@
|
|
|
2297
2326
|
"low",
|
|
2298
2327
|
"medium",
|
|
2299
2328
|
"high",
|
|
2300
|
-
"xhigh"
|
|
2329
|
+
"xhigh",
|
|
2330
|
+
"max"
|
|
2301
2331
|
]
|
|
2302
2332
|
},
|
|
2303
2333
|
"temperature": {
|
|
@@ -2500,7 +2530,8 @@
|
|
|
2500
2530
|
"low",
|
|
2501
2531
|
"medium",
|
|
2502
2532
|
"high",
|
|
2503
|
-
"xhigh"
|
|
2533
|
+
"xhigh",
|
|
2534
|
+
"max"
|
|
2504
2535
|
]
|
|
2505
2536
|
},
|
|
2506
2537
|
"textVerbosity": {
|
|
@@ -2581,7 +2612,8 @@
|
|
|
2581
2612
|
"low",
|
|
2582
2613
|
"medium",
|
|
2583
2614
|
"high",
|
|
2584
|
-
"xhigh"
|
|
2615
|
+
"xhigh",
|
|
2616
|
+
"max"
|
|
2585
2617
|
]
|
|
2586
2618
|
},
|
|
2587
2619
|
"temperature": {
|
|
@@ -2647,7 +2679,8 @@
|
|
|
2647
2679
|
"low",
|
|
2648
2680
|
"medium",
|
|
2649
2681
|
"high",
|
|
2650
|
-
"xhigh"
|
|
2682
|
+
"xhigh",
|
|
2683
|
+
"max"
|
|
2651
2684
|
]
|
|
2652
2685
|
},
|
|
2653
2686
|
"temperature": {
|
|
@@ -2850,7 +2883,8 @@
|
|
|
2850
2883
|
"low",
|
|
2851
2884
|
"medium",
|
|
2852
2885
|
"high",
|
|
2853
|
-
"xhigh"
|
|
2886
|
+
"xhigh",
|
|
2887
|
+
"max"
|
|
2854
2888
|
]
|
|
2855
2889
|
},
|
|
2856
2890
|
"textVerbosity": {
|
|
@@ -2931,7 +2965,8 @@
|
|
|
2931
2965
|
"low",
|
|
2932
2966
|
"medium",
|
|
2933
2967
|
"high",
|
|
2934
|
-
"xhigh"
|
|
2968
|
+
"xhigh",
|
|
2969
|
+
"max"
|
|
2935
2970
|
]
|
|
2936
2971
|
},
|
|
2937
2972
|
"temperature": {
|
|
@@ -2997,7 +3032,8 @@
|
|
|
2997
3032
|
"low",
|
|
2998
3033
|
"medium",
|
|
2999
3034
|
"high",
|
|
3000
|
-
"xhigh"
|
|
3035
|
+
"xhigh",
|
|
3036
|
+
"max"
|
|
3001
3037
|
]
|
|
3002
3038
|
},
|
|
3003
3039
|
"temperature": {
|
|
@@ -3200,7 +3236,8 @@
|
|
|
3200
3236
|
"low",
|
|
3201
3237
|
"medium",
|
|
3202
3238
|
"high",
|
|
3203
|
-
"xhigh"
|
|
3239
|
+
"xhigh",
|
|
3240
|
+
"max"
|
|
3204
3241
|
]
|
|
3205
3242
|
},
|
|
3206
3243
|
"textVerbosity": {
|
|
@@ -3281,7 +3318,8 @@
|
|
|
3281
3318
|
"low",
|
|
3282
3319
|
"medium",
|
|
3283
3320
|
"high",
|
|
3284
|
-
"xhigh"
|
|
3321
|
+
"xhigh",
|
|
3322
|
+
"max"
|
|
3285
3323
|
]
|
|
3286
3324
|
},
|
|
3287
3325
|
"temperature": {
|
|
@@ -3347,7 +3385,8 @@
|
|
|
3347
3385
|
"low",
|
|
3348
3386
|
"medium",
|
|
3349
3387
|
"high",
|
|
3350
|
-
"xhigh"
|
|
3388
|
+
"xhigh",
|
|
3389
|
+
"max"
|
|
3351
3390
|
]
|
|
3352
3391
|
},
|
|
3353
3392
|
"temperature": {
|
|
@@ -3550,7 +3589,8 @@
|
|
|
3550
3589
|
"low",
|
|
3551
3590
|
"medium",
|
|
3552
3591
|
"high",
|
|
3553
|
-
"xhigh"
|
|
3592
|
+
"xhigh",
|
|
3593
|
+
"max"
|
|
3554
3594
|
]
|
|
3555
3595
|
},
|
|
3556
3596
|
"textVerbosity": {
|
|
@@ -3631,7 +3671,8 @@
|
|
|
3631
3671
|
"low",
|
|
3632
3672
|
"medium",
|
|
3633
3673
|
"high",
|
|
3634
|
-
"xhigh"
|
|
3674
|
+
"xhigh",
|
|
3675
|
+
"max"
|
|
3635
3676
|
]
|
|
3636
3677
|
},
|
|
3637
3678
|
"temperature": {
|
|
@@ -3697,7 +3738,8 @@
|
|
|
3697
3738
|
"low",
|
|
3698
3739
|
"medium",
|
|
3699
3740
|
"high",
|
|
3700
|
-
"xhigh"
|
|
3741
|
+
"xhigh",
|
|
3742
|
+
"max"
|
|
3701
3743
|
]
|
|
3702
3744
|
},
|
|
3703
3745
|
"temperature": {
|
|
@@ -3900,7 +3942,8 @@
|
|
|
3900
3942
|
"low",
|
|
3901
3943
|
"medium",
|
|
3902
3944
|
"high",
|
|
3903
|
-
"xhigh"
|
|
3945
|
+
"xhigh",
|
|
3946
|
+
"max"
|
|
3904
3947
|
]
|
|
3905
3948
|
},
|
|
3906
3949
|
"textVerbosity": {
|
|
@@ -3981,7 +4024,8 @@
|
|
|
3981
4024
|
"low",
|
|
3982
4025
|
"medium",
|
|
3983
4026
|
"high",
|
|
3984
|
-
"xhigh"
|
|
4027
|
+
"xhigh",
|
|
4028
|
+
"max"
|
|
3985
4029
|
]
|
|
3986
4030
|
},
|
|
3987
4031
|
"temperature": {
|
|
@@ -4047,7 +4091,8 @@
|
|
|
4047
4091
|
"low",
|
|
4048
4092
|
"medium",
|
|
4049
4093
|
"high",
|
|
4050
|
-
"xhigh"
|
|
4094
|
+
"xhigh",
|
|
4095
|
+
"max"
|
|
4051
4096
|
]
|
|
4052
4097
|
},
|
|
4053
4098
|
"temperature": {
|
|
@@ -4250,7 +4295,8 @@
|
|
|
4250
4295
|
"low",
|
|
4251
4296
|
"medium",
|
|
4252
4297
|
"high",
|
|
4253
|
-
"xhigh"
|
|
4298
|
+
"xhigh",
|
|
4299
|
+
"max"
|
|
4254
4300
|
]
|
|
4255
4301
|
},
|
|
4256
4302
|
"textVerbosity": {
|
|
@@ -4331,7 +4377,8 @@
|
|
|
4331
4377
|
"low",
|
|
4332
4378
|
"medium",
|
|
4333
4379
|
"high",
|
|
4334
|
-
"xhigh"
|
|
4380
|
+
"xhigh",
|
|
4381
|
+
"max"
|
|
4335
4382
|
]
|
|
4336
4383
|
},
|
|
4337
4384
|
"temperature": {
|
|
@@ -4397,7 +4444,8 @@
|
|
|
4397
4444
|
"low",
|
|
4398
4445
|
"medium",
|
|
4399
4446
|
"high",
|
|
4400
|
-
"xhigh"
|
|
4447
|
+
"xhigh",
|
|
4448
|
+
"max"
|
|
4401
4449
|
]
|
|
4402
4450
|
},
|
|
4403
4451
|
"temperature": {
|
|
@@ -4600,7 +4648,8 @@
|
|
|
4600
4648
|
"low",
|
|
4601
4649
|
"medium",
|
|
4602
4650
|
"high",
|
|
4603
|
-
"xhigh"
|
|
4651
|
+
"xhigh",
|
|
4652
|
+
"max"
|
|
4604
4653
|
]
|
|
4605
4654
|
},
|
|
4606
4655
|
"textVerbosity": {
|
|
@@ -4681,7 +4730,8 @@
|
|
|
4681
4730
|
"low",
|
|
4682
4731
|
"medium",
|
|
4683
4732
|
"high",
|
|
4684
|
-
"xhigh"
|
|
4733
|
+
"xhigh",
|
|
4734
|
+
"max"
|
|
4685
4735
|
]
|
|
4686
4736
|
},
|
|
4687
4737
|
"temperature": {
|
|
@@ -4747,7 +4797,8 @@
|
|
|
4747
4797
|
"low",
|
|
4748
4798
|
"medium",
|
|
4749
4799
|
"high",
|
|
4750
|
-
"xhigh"
|
|
4800
|
+
"xhigh",
|
|
4801
|
+
"max"
|
|
4751
4802
|
]
|
|
4752
4803
|
},
|
|
4753
4804
|
"temperature": {
|
|
@@ -4950,7 +5001,8 @@
|
|
|
4950
5001
|
"low",
|
|
4951
5002
|
"medium",
|
|
4952
5003
|
"high",
|
|
4953
|
-
"xhigh"
|
|
5004
|
+
"xhigh",
|
|
5005
|
+
"max"
|
|
4954
5006
|
]
|
|
4955
5007
|
},
|
|
4956
5008
|
"textVerbosity": {
|
|
@@ -5042,7 +5094,8 @@
|
|
|
5042
5094
|
"low",
|
|
5043
5095
|
"medium",
|
|
5044
5096
|
"high",
|
|
5045
|
-
"xhigh"
|
|
5097
|
+
"xhigh",
|
|
5098
|
+
"max"
|
|
5046
5099
|
]
|
|
5047
5100
|
},
|
|
5048
5101
|
"temperature": {
|
|
@@ -5108,7 +5161,8 @@
|
|
|
5108
5161
|
"low",
|
|
5109
5162
|
"medium",
|
|
5110
5163
|
"high",
|
|
5111
|
-
"xhigh"
|
|
5164
|
+
"xhigh",
|
|
5165
|
+
"max"
|
|
5112
5166
|
]
|
|
5113
5167
|
},
|
|
5114
5168
|
"temperature": {
|
|
@@ -5197,7 +5251,8 @@
|
|
|
5197
5251
|
"low",
|
|
5198
5252
|
"medium",
|
|
5199
5253
|
"high",
|
|
5200
|
-
"xhigh"
|
|
5254
|
+
"xhigh",
|
|
5255
|
+
"max"
|
|
5201
5256
|
]
|
|
5202
5257
|
},
|
|
5203
5258
|
"textVerbosity": {
|
|
@@ -5891,6 +5946,103 @@
|
|
|
5891
5946
|
],
|
|
5892
5947
|
"additionalProperties": false
|
|
5893
5948
|
},
|
|
5949
|
+
"team_mode": {
|
|
5950
|
+
"type": "object",
|
|
5951
|
+
"properties": {
|
|
5952
|
+
"enabled": {
|
|
5953
|
+
"default": false,
|
|
5954
|
+
"type": "boolean"
|
|
5955
|
+
},
|
|
5956
|
+
"tmux_visualization": {
|
|
5957
|
+
"default": false,
|
|
5958
|
+
"type": "boolean"
|
|
5959
|
+
},
|
|
5960
|
+
"max_parallel_members": {
|
|
5961
|
+
"default": 4,
|
|
5962
|
+
"type": "integer",
|
|
5963
|
+
"minimum": 1,
|
|
5964
|
+
"maximum": 8
|
|
5965
|
+
},
|
|
5966
|
+
"max_members": {
|
|
5967
|
+
"default": 8,
|
|
5968
|
+
"type": "integer",
|
|
5969
|
+
"minimum": 1,
|
|
5970
|
+
"maximum": 8
|
|
5971
|
+
},
|
|
5972
|
+
"max_messages_per_run": {
|
|
5973
|
+
"default": 10000,
|
|
5974
|
+
"type": "integer",
|
|
5975
|
+
"minimum": 1,
|
|
5976
|
+
"maximum": 9007199254740991
|
|
5977
|
+
},
|
|
5978
|
+
"max_wall_clock_minutes": {
|
|
5979
|
+
"default": 120,
|
|
5980
|
+
"type": "integer",
|
|
5981
|
+
"minimum": 1,
|
|
5982
|
+
"maximum": 9007199254740991
|
|
5983
|
+
},
|
|
5984
|
+
"max_member_turns": {
|
|
5985
|
+
"default": 500,
|
|
5986
|
+
"type": "integer",
|
|
5987
|
+
"minimum": 1,
|
|
5988
|
+
"maximum": 9007199254740991
|
|
5989
|
+
},
|
|
5990
|
+
"base_dir": {
|
|
5991
|
+
"type": "string"
|
|
5992
|
+
},
|
|
5993
|
+
"message_payload_max_bytes": {
|
|
5994
|
+
"default": 32768,
|
|
5995
|
+
"type": "integer",
|
|
5996
|
+
"minimum": 1024,
|
|
5997
|
+
"maximum": 9007199254740991
|
|
5998
|
+
},
|
|
5999
|
+
"recipient_unread_max_bytes": {
|
|
6000
|
+
"default": 262144,
|
|
6001
|
+
"type": "integer",
|
|
6002
|
+
"minimum": 1024,
|
|
6003
|
+
"maximum": 9007199254740991
|
|
6004
|
+
},
|
|
6005
|
+
"mailbox_poll_interval_ms": {
|
|
6006
|
+
"default": 3000,
|
|
6007
|
+
"type": "integer",
|
|
6008
|
+
"minimum": 500,
|
|
6009
|
+
"maximum": 9007199254740991
|
|
6010
|
+
}
|
|
6011
|
+
},
|
|
6012
|
+
"required": [
|
|
6013
|
+
"enabled",
|
|
6014
|
+
"tmux_visualization",
|
|
6015
|
+
"max_parallel_members",
|
|
6016
|
+
"max_members",
|
|
6017
|
+
"max_messages_per_run",
|
|
6018
|
+
"max_wall_clock_minutes",
|
|
6019
|
+
"max_member_turns",
|
|
6020
|
+
"message_payload_max_bytes",
|
|
6021
|
+
"recipient_unread_max_bytes",
|
|
6022
|
+
"mailbox_poll_interval_ms"
|
|
6023
|
+
],
|
|
6024
|
+
"additionalProperties": false
|
|
6025
|
+
},
|
|
6026
|
+
"keyword_detector": {
|
|
6027
|
+
"type": "object",
|
|
6028
|
+
"properties": {
|
|
6029
|
+
"disabled_keywords": {
|
|
6030
|
+
"type": "array",
|
|
6031
|
+
"items": {
|
|
6032
|
+
"type": "string",
|
|
6033
|
+
"enum": [
|
|
6034
|
+
"ultrawork",
|
|
6035
|
+
"search",
|
|
6036
|
+
"analyze",
|
|
6037
|
+
"team",
|
|
6038
|
+
"hyperplan",
|
|
6039
|
+
"hyperplan-ultrawork"
|
|
6040
|
+
]
|
|
6041
|
+
}
|
|
6042
|
+
}
|
|
6043
|
+
},
|
|
6044
|
+
"additionalProperties": false
|
|
6045
|
+
},
|
|
5894
6046
|
"babysitting": {
|
|
5895
6047
|
"type": "object",
|
|
5896
6048
|
"properties": {
|
|
@@ -15,6 +15,8 @@ export declare function createCoreHooks(args: {
|
|
|
15
15
|
claudeCodeHooks: ReturnType<typeof import("../../hooks").createClaudeCodeHooksHook> | null;
|
|
16
16
|
keywordDetector: ReturnType<typeof import("../../hooks").createKeywordDetectorHook> | null;
|
|
17
17
|
contextInjectorMessagesTransform: ReturnType<typeof import("../../features/context-injector").createContextInjectorMessagesTransformHook>;
|
|
18
|
+
teamModeStatusInjector: ReturnType<typeof import("../../hooks").createTeamModeStatusInjector> | null;
|
|
19
|
+
teamMailboxInjector: ReturnType<typeof import("../../hooks").createTeamMailboxInjector> | null;
|
|
18
20
|
thinkingBlockValidator: ReturnType<typeof import("../../hooks").createThinkingBlockValidatorHook> | null;
|
|
19
21
|
toolPairValidator: ReturnType<typeof import("../../hooks").createToolPairValidatorHook> | null;
|
|
20
22
|
commentChecker: ReturnType<typeof import("../../hooks").createCommentCheckerHooks> | null;
|
|
@@ -31,6 +33,8 @@ export declare function createCoreHooks(args: {
|
|
|
31
33
|
readImageResizer: ReturnType<typeof import("../../hooks").createReadImageResizerHook> | null;
|
|
32
34
|
todoDescriptionOverride: ReturnType<typeof import("../../hooks").createTodoDescriptionOverrideHook> | null;
|
|
33
35
|
webfetchRedirectGuard: ReturnType<typeof import("../../hooks").createWebFetchRedirectGuardHook> | null;
|
|
36
|
+
fsyncSkipWarning: ReturnType<typeof import("../../hooks").createFsyncSkipWarningHook> | null;
|
|
37
|
+
teamToolGating: ReturnType<typeof import("../../hooks").createTeamToolGating> | null;
|
|
34
38
|
contextWindowMonitor: ReturnType<typeof import("../../hooks").createContextWindowMonitorHook> | null;
|
|
35
39
|
preemptiveCompaction: ReturnType<typeof import("../../hooks").createPreemptiveCompactionHook> | null;
|
|
36
40
|
sessionRecovery: ReturnType<typeof import("../../hooks").createSessionRecoveryHook> | null;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { HookName, OhMyOpenCodeConfig } from "../../config";
|
|
2
2
|
import type { ModelCacheState } from "../../plugin-state";
|
|
3
3
|
import type { PluginContext } from "../types";
|
|
4
|
-
import { createCommentCheckerHooks, createToolOutputTruncatorHook, createDirectoryAgentsInjectorHook, createDirectoryReadmeInjectorHook, createEmptyTaskResponseDetectorHook, createRulesInjectorHook, createTasksTodowriteDisablerHook, createWriteExistingFileGuardHook, createBashFileReadGuardHook, createHashlineReadEnhancerHook, createReadImageResizerHook, createJsonErrorRecoveryHook, createTodoDescriptionOverrideHook, createWebFetchRedirectGuardHook } from "../../hooks";
|
|
4
|
+
import { createCommentCheckerHooks, createToolOutputTruncatorHook, createDirectoryAgentsInjectorHook, createDirectoryReadmeInjectorHook, createEmptyTaskResponseDetectorHook, createRulesInjectorHook, createTasksTodowriteDisablerHook, createWriteExistingFileGuardHook, createBashFileReadGuardHook, createHashlineReadEnhancerHook, createReadImageResizerHook, createJsonErrorRecoveryHook, createTodoDescriptionOverrideHook, createWebFetchRedirectGuardHook, createTeamToolGating, createFsyncSkipWarningHook } from "../../hooks";
|
|
5
5
|
export type ToolGuardHooks = {
|
|
6
6
|
commentChecker: ReturnType<typeof createCommentCheckerHooks> | null;
|
|
7
7
|
toolOutputTruncator: ReturnType<typeof createToolOutputTruncatorHook> | null;
|
|
@@ -17,6 +17,8 @@ export type ToolGuardHooks = {
|
|
|
17
17
|
readImageResizer: ReturnType<typeof createReadImageResizerHook> | null;
|
|
18
18
|
todoDescriptionOverride: ReturnType<typeof createTodoDescriptionOverrideHook> | null;
|
|
19
19
|
webfetchRedirectGuard: ReturnType<typeof createWebFetchRedirectGuardHook> | null;
|
|
20
|
+
fsyncSkipWarning: ReturnType<typeof createFsyncSkipWarningHook> | null;
|
|
21
|
+
teamToolGating: ReturnType<typeof createTeamToolGating> | null;
|
|
20
22
|
};
|
|
21
23
|
export declare function createToolGuardHooks(args: {
|
|
22
24
|
ctx: PluginContext;
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import type { OhMyOpenCodeConfig } from "../../config";
|
|
2
2
|
import type { PluginContext } from "../types";
|
|
3
3
|
import type { RalphLoopHook } from "../../hooks/ralph-loop";
|
|
4
|
-
import { createClaudeCodeHooksHook, createKeywordDetectorHook, createThinkingBlockValidatorHook, createToolPairValidatorHook } from "../../hooks";
|
|
4
|
+
import { createClaudeCodeHooksHook, createKeywordDetectorHook, createTeamMailboxInjector, createTeamModeStatusInjector, createThinkingBlockValidatorHook, createToolPairValidatorHook } from "../../hooks";
|
|
5
5
|
import { createContextInjectorMessagesTransformHook } from "../../features/context-injector";
|
|
6
6
|
export type TransformHooks = {
|
|
7
7
|
claudeCodeHooks: ReturnType<typeof createClaudeCodeHooksHook> | null;
|
|
8
8
|
keywordDetector: ReturnType<typeof createKeywordDetectorHook> | null;
|
|
9
9
|
contextInjectorMessagesTransform: ReturnType<typeof createContextInjectorMessagesTransformHook>;
|
|
10
|
+
teamModeStatusInjector: ReturnType<typeof createTeamModeStatusInjector> | null;
|
|
11
|
+
teamMailboxInjector: ReturnType<typeof createTeamMailboxInjector> | null;
|
|
10
12
|
thinkingBlockValidator: ReturnType<typeof createThinkingBlockValidatorHook> | null;
|
|
11
13
|
toolPairValidator: ReturnType<typeof createToolPairValidatorHook> | null;
|
|
12
14
|
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import type { Hooks } from "@opencode-ai/plugin";
|
|
2
|
+
type SessionCompactingHook = NonNullable<Hooks["experimental.session.compacting"]>;
|
|
3
|
+
export type CompactionAutocontinueInput = {
|
|
4
|
+
sessionID: string;
|
|
5
|
+
agent?: string;
|
|
6
|
+
model?: unknown;
|
|
7
|
+
provider?: unknown;
|
|
8
|
+
message?: unknown;
|
|
9
|
+
overflow?: boolean;
|
|
10
|
+
};
|
|
11
|
+
export type CompactionAutocontinueOutput = {
|
|
12
|
+
enabled: boolean;
|
|
13
|
+
};
|
|
14
|
+
export type CompactionAutocontinueHook = (input: CompactionAutocontinueInput, output: CompactionAutocontinueOutput) => Promise<void>;
|
|
15
|
+
type CompactionHookDependencies = {
|
|
16
|
+
compactionContextInjector?: {
|
|
17
|
+
capture?: (sessionID: string) => Promise<void>;
|
|
18
|
+
inject?: (sessionID: string) => string;
|
|
19
|
+
restore?: (sessionID: string) => Promise<boolean>;
|
|
20
|
+
} | null;
|
|
21
|
+
compactionTodoPreserver?: {
|
|
22
|
+
capture?: (sessionID: string) => Promise<void>;
|
|
23
|
+
restore?: (sessionID: string) => Promise<void>;
|
|
24
|
+
} | null;
|
|
25
|
+
claudeCodeHooks?: {
|
|
26
|
+
"experimental.session.compacting"?: SessionCompactingHook;
|
|
27
|
+
} | null;
|
|
28
|
+
};
|
|
29
|
+
export declare function createSessionCompactingHandler(hooks: CompactionHookDependencies): SessionCompactingHook;
|
|
30
|
+
export declare function createCompactionAutocontinueHandler(hooks: CompactionHookDependencies): CompactionAutocontinueHook;
|
|
31
|
+
export {};
|