@wolfx/oh-my-openagent 3.17.14 → 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 (158) 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 +89536 -80765
  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 +40 -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/spawn-process.d.ts +1 -1
  148. package/dist/shared/tmux/tmux-utils/stale-session-sweep.d.ts +9 -2
  149. package/dist/shared/tmux/tmux-utils/window-spawn.d.ts +13 -1
  150. package/dist/shared/tmux/tmux-utils.d.ts +1 -1
  151. package/dist/tools/delegate-task/openai-categories.d.ts +1 -0
  152. package/dist/tools/delegate-task/skill-resolver.d.ts +1 -0
  153. package/dist/tools/delegate-task/subagent-resolver.d.ts +5 -1
  154. package/dist/tools/delegate-task/types.d.ts +1 -0
  155. package/dist/tools/index.d.ts +1 -0
  156. package/dist/tools/look-at/missing-file-error.d.ts +2 -0
  157. package/dist/tools/skill/types.d.ts +2 -0
  158. package/package.json +3 -1
@@ -45,7 +45,8 @@
45
45
  "frontend-ui-ux",
46
46
  "git-master",
47
47
  "review-work",
48
- "ai-slop-remover"
48
+ "ai-slop-remover",
49
+ "team-mode"
49
50
  ]
50
51
  }
51
52
  },
@@ -67,7 +68,8 @@
67
68
  "refactor",
68
69
  "start-work",
69
70
  "stop-continuation",
70
- "remove-ai-slops"
71
+ "remove-ai-slops",
72
+ "hyperplan"
71
73
  ]
72
74
  }
73
75
  },
@@ -128,7 +130,8 @@
128
130
  "low",
129
131
  "medium",
130
132
  "high",
131
- "xhigh"
133
+ "xhigh",
134
+ "max"
132
135
  ]
133
136
  },
134
137
  "temperature": {
@@ -194,7 +197,8 @@
194
197
  "low",
195
198
  "medium",
196
199
  "high",
197
- "xhigh"
200
+ "xhigh",
201
+ "max"
198
202
  ]
199
203
  },
200
204
  "temperature": {
@@ -397,7 +401,8 @@
397
401
  "low",
398
402
  "medium",
399
403
  "high",
400
- "xhigh"
404
+ "xhigh",
405
+ "max"
401
406
  ]
402
407
  },
403
408
  "textVerbosity": {
@@ -478,7 +483,8 @@
478
483
  "low",
479
484
  "medium",
480
485
  "high",
481
- "xhigh"
486
+ "xhigh",
487
+ "max"
482
488
  ]
483
489
  },
484
490
  "temperature": {
@@ -544,7 +550,8 @@
544
550
  "low",
545
551
  "medium",
546
552
  "high",
547
- "xhigh"
553
+ "xhigh",
554
+ "max"
548
555
  ]
549
556
  },
550
557
  "temperature": {
@@ -747,7 +754,8 @@
747
754
  "low",
748
755
  "medium",
749
756
  "high",
750
- "xhigh"
757
+ "xhigh",
758
+ "max"
751
759
  ]
752
760
  },
753
761
  "textVerbosity": {
@@ -828,7 +836,8 @@
828
836
  "low",
829
837
  "medium",
830
838
  "high",
831
- "xhigh"
839
+ "xhigh",
840
+ "max"
832
841
  ]
833
842
  },
834
843
  "temperature": {
@@ -894,7 +903,8 @@
894
903
  "low",
895
904
  "medium",
896
905
  "high",
897
- "xhigh"
906
+ "xhigh",
907
+ "max"
898
908
  ]
899
909
  },
900
910
  "temperature": {
@@ -1097,7 +1107,8 @@
1097
1107
  "low",
1098
1108
  "medium",
1099
1109
  "high",
1100
- "xhigh"
1110
+ "xhigh",
1111
+ "max"
1101
1112
  ]
1102
1113
  },
1103
1114
  "textVerbosity": {
@@ -1178,7 +1189,8 @@
1178
1189
  "low",
1179
1190
  "medium",
1180
1191
  "high",
1181
- "xhigh"
1192
+ "xhigh",
1193
+ "max"
1182
1194
  ]
1183
1195
  },
1184
1196
  "temperature": {
@@ -1244,7 +1256,8 @@
1244
1256
  "low",
1245
1257
  "medium",
1246
1258
  "high",
1247
- "xhigh"
1259
+ "xhigh",
1260
+ "max"
1248
1261
  ]
1249
1262
  },
1250
1263
  "temperature": {
@@ -1447,7 +1460,8 @@
1447
1460
  "low",
1448
1461
  "medium",
1449
1462
  "high",
1450
- "xhigh"
1463
+ "xhigh",
1464
+ "max"
1451
1465
  ]
1452
1466
  },
1453
1467
  "textVerbosity": {
@@ -1531,7 +1545,8 @@
1531
1545
  "low",
1532
1546
  "medium",
1533
1547
  "high",
1534
- "xhigh"
1548
+ "xhigh",
1549
+ "max"
1535
1550
  ]
1536
1551
  },
1537
1552
  "temperature": {
@@ -1597,7 +1612,8 @@
1597
1612
  "low",
1598
1613
  "medium",
1599
1614
  "high",
1600
- "xhigh"
1615
+ "xhigh",
1616
+ "max"
1601
1617
  ]
1602
1618
  },
1603
1619
  "temperature": {
@@ -1800,7 +1816,8 @@
1800
1816
  "low",
1801
1817
  "medium",
1802
1818
  "high",
1803
- "xhigh"
1819
+ "xhigh",
1820
+ "max"
1804
1821
  ]
1805
1822
  },
1806
1823
  "textVerbosity": {
@@ -1881,7 +1898,8 @@
1881
1898
  "low",
1882
1899
  "medium",
1883
1900
  "high",
1884
- "xhigh"
1901
+ "xhigh",
1902
+ "max"
1885
1903
  ]
1886
1904
  },
1887
1905
  "temperature": {
@@ -1947,7 +1965,8 @@
1947
1965
  "low",
1948
1966
  "medium",
1949
1967
  "high",
1950
- "xhigh"
1968
+ "xhigh",
1969
+ "max"
1951
1970
  ]
1952
1971
  },
1953
1972
  "temperature": {
@@ -2150,7 +2169,8 @@
2150
2169
  "low",
2151
2170
  "medium",
2152
2171
  "high",
2153
- "xhigh"
2172
+ "xhigh",
2173
+ "max"
2154
2174
  ]
2155
2175
  },
2156
2176
  "textVerbosity": {
@@ -2231,7 +2251,8 @@
2231
2251
  "low",
2232
2252
  "medium",
2233
2253
  "high",
2234
- "xhigh"
2254
+ "xhigh",
2255
+ "max"
2235
2256
  ]
2236
2257
  },
2237
2258
  "temperature": {
@@ -2297,7 +2318,8 @@
2297
2318
  "low",
2298
2319
  "medium",
2299
2320
  "high",
2300
- "xhigh"
2321
+ "xhigh",
2322
+ "max"
2301
2323
  ]
2302
2324
  },
2303
2325
  "temperature": {
@@ -2500,7 +2522,8 @@
2500
2522
  "low",
2501
2523
  "medium",
2502
2524
  "high",
2503
- "xhigh"
2525
+ "xhigh",
2526
+ "max"
2504
2527
  ]
2505
2528
  },
2506
2529
  "textVerbosity": {
@@ -2581,7 +2604,8 @@
2581
2604
  "low",
2582
2605
  "medium",
2583
2606
  "high",
2584
- "xhigh"
2607
+ "xhigh",
2608
+ "max"
2585
2609
  ]
2586
2610
  },
2587
2611
  "temperature": {
@@ -2647,7 +2671,8 @@
2647
2671
  "low",
2648
2672
  "medium",
2649
2673
  "high",
2650
- "xhigh"
2674
+ "xhigh",
2675
+ "max"
2651
2676
  ]
2652
2677
  },
2653
2678
  "temperature": {
@@ -2850,7 +2875,8 @@
2850
2875
  "low",
2851
2876
  "medium",
2852
2877
  "high",
2853
- "xhigh"
2878
+ "xhigh",
2879
+ "max"
2854
2880
  ]
2855
2881
  },
2856
2882
  "textVerbosity": {
@@ -2931,7 +2957,8 @@
2931
2957
  "low",
2932
2958
  "medium",
2933
2959
  "high",
2934
- "xhigh"
2960
+ "xhigh",
2961
+ "max"
2935
2962
  ]
2936
2963
  },
2937
2964
  "temperature": {
@@ -2997,7 +3024,8 @@
2997
3024
  "low",
2998
3025
  "medium",
2999
3026
  "high",
3000
- "xhigh"
3027
+ "xhigh",
3028
+ "max"
3001
3029
  ]
3002
3030
  },
3003
3031
  "temperature": {
@@ -3200,7 +3228,8 @@
3200
3228
  "low",
3201
3229
  "medium",
3202
3230
  "high",
3203
- "xhigh"
3231
+ "xhigh",
3232
+ "max"
3204
3233
  ]
3205
3234
  },
3206
3235
  "textVerbosity": {
@@ -3281,7 +3310,8 @@
3281
3310
  "low",
3282
3311
  "medium",
3283
3312
  "high",
3284
- "xhigh"
3313
+ "xhigh",
3314
+ "max"
3285
3315
  ]
3286
3316
  },
3287
3317
  "temperature": {
@@ -3347,7 +3377,8 @@
3347
3377
  "low",
3348
3378
  "medium",
3349
3379
  "high",
3350
- "xhigh"
3380
+ "xhigh",
3381
+ "max"
3351
3382
  ]
3352
3383
  },
3353
3384
  "temperature": {
@@ -3550,7 +3581,8 @@
3550
3581
  "low",
3551
3582
  "medium",
3552
3583
  "high",
3553
- "xhigh"
3584
+ "xhigh",
3585
+ "max"
3554
3586
  ]
3555
3587
  },
3556
3588
  "textVerbosity": {
@@ -3631,7 +3663,8 @@
3631
3663
  "low",
3632
3664
  "medium",
3633
3665
  "high",
3634
- "xhigh"
3666
+ "xhigh",
3667
+ "max"
3635
3668
  ]
3636
3669
  },
3637
3670
  "temperature": {
@@ -3697,7 +3730,8 @@
3697
3730
  "low",
3698
3731
  "medium",
3699
3732
  "high",
3700
- "xhigh"
3733
+ "xhigh",
3734
+ "max"
3701
3735
  ]
3702
3736
  },
3703
3737
  "temperature": {
@@ -3900,7 +3934,8 @@
3900
3934
  "low",
3901
3935
  "medium",
3902
3936
  "high",
3903
- "xhigh"
3937
+ "xhigh",
3938
+ "max"
3904
3939
  ]
3905
3940
  },
3906
3941
  "textVerbosity": {
@@ -3981,7 +4016,8 @@
3981
4016
  "low",
3982
4017
  "medium",
3983
4018
  "high",
3984
- "xhigh"
4019
+ "xhigh",
4020
+ "max"
3985
4021
  ]
3986
4022
  },
3987
4023
  "temperature": {
@@ -4047,7 +4083,8 @@
4047
4083
  "low",
4048
4084
  "medium",
4049
4085
  "high",
4050
- "xhigh"
4086
+ "xhigh",
4087
+ "max"
4051
4088
  ]
4052
4089
  },
4053
4090
  "temperature": {
@@ -4250,7 +4287,8 @@
4250
4287
  "low",
4251
4288
  "medium",
4252
4289
  "high",
4253
- "xhigh"
4290
+ "xhigh",
4291
+ "max"
4254
4292
  ]
4255
4293
  },
4256
4294
  "textVerbosity": {
@@ -4331,7 +4369,8 @@
4331
4369
  "low",
4332
4370
  "medium",
4333
4371
  "high",
4334
- "xhigh"
4372
+ "xhigh",
4373
+ "max"
4335
4374
  ]
4336
4375
  },
4337
4376
  "temperature": {
@@ -4397,7 +4436,8 @@
4397
4436
  "low",
4398
4437
  "medium",
4399
4438
  "high",
4400
- "xhigh"
4439
+ "xhigh",
4440
+ "max"
4401
4441
  ]
4402
4442
  },
4403
4443
  "temperature": {
@@ -4600,7 +4640,8 @@
4600
4640
  "low",
4601
4641
  "medium",
4602
4642
  "high",
4603
- "xhigh"
4643
+ "xhigh",
4644
+ "max"
4604
4645
  ]
4605
4646
  },
4606
4647
  "textVerbosity": {
@@ -4681,7 +4722,8 @@
4681
4722
  "low",
4682
4723
  "medium",
4683
4724
  "high",
4684
- "xhigh"
4725
+ "xhigh",
4726
+ "max"
4685
4727
  ]
4686
4728
  },
4687
4729
  "temperature": {
@@ -4747,7 +4789,8 @@
4747
4789
  "low",
4748
4790
  "medium",
4749
4791
  "high",
4750
- "xhigh"
4792
+ "xhigh",
4793
+ "max"
4751
4794
  ]
4752
4795
  },
4753
4796
  "temperature": {
@@ -4950,7 +4993,8 @@
4950
4993
  "low",
4951
4994
  "medium",
4952
4995
  "high",
4953
- "xhigh"
4996
+ "xhigh",
4997
+ "max"
4954
4998
  ]
4955
4999
  },
4956
5000
  "textVerbosity": {
@@ -5042,7 +5086,8 @@
5042
5086
  "low",
5043
5087
  "medium",
5044
5088
  "high",
5045
- "xhigh"
5089
+ "xhigh",
5090
+ "max"
5046
5091
  ]
5047
5092
  },
5048
5093
  "temperature": {
@@ -5108,7 +5153,8 @@
5108
5153
  "low",
5109
5154
  "medium",
5110
5155
  "high",
5111
- "xhigh"
5156
+ "xhigh",
5157
+ "max"
5112
5158
  ]
5113
5159
  },
5114
5160
  "temperature": {
@@ -5197,7 +5243,8 @@
5197
5243
  "low",
5198
5244
  "medium",
5199
5245
  "high",
5200
- "xhigh"
5246
+ "xhigh",
5247
+ "max"
5201
5248
  ]
5202
5249
  },
5203
5250
  "textVerbosity": {
@@ -5891,6 +5938,103 @@
5891
5938
  ],
5892
5939
  "additionalProperties": false
5893
5940
  },
5941
+ "team_mode": {
5942
+ "type": "object",
5943
+ "properties": {
5944
+ "enabled": {
5945
+ "default": false,
5946
+ "type": "boolean"
5947
+ },
5948
+ "tmux_visualization": {
5949
+ "default": false,
5950
+ "type": "boolean"
5951
+ },
5952
+ "max_parallel_members": {
5953
+ "default": 4,
5954
+ "type": "integer",
5955
+ "minimum": 1,
5956
+ "maximum": 8
5957
+ },
5958
+ "max_members": {
5959
+ "default": 8,
5960
+ "type": "integer",
5961
+ "minimum": 1,
5962
+ "maximum": 8
5963
+ },
5964
+ "max_messages_per_run": {
5965
+ "default": 10000,
5966
+ "type": "integer",
5967
+ "minimum": 1,
5968
+ "maximum": 9007199254740991
5969
+ },
5970
+ "max_wall_clock_minutes": {
5971
+ "default": 120,
5972
+ "type": "integer",
5973
+ "minimum": 1,
5974
+ "maximum": 9007199254740991
5975
+ },
5976
+ "max_member_turns": {
5977
+ "default": 500,
5978
+ "type": "integer",
5979
+ "minimum": 1,
5980
+ "maximum": 9007199254740991
5981
+ },
5982
+ "base_dir": {
5983
+ "type": "string"
5984
+ },
5985
+ "message_payload_max_bytes": {
5986
+ "default": 32768,
5987
+ "type": "integer",
5988
+ "minimum": 1024,
5989
+ "maximum": 9007199254740991
5990
+ },
5991
+ "recipient_unread_max_bytes": {
5992
+ "default": 262144,
5993
+ "type": "integer",
5994
+ "minimum": 1024,
5995
+ "maximum": 9007199254740991
5996
+ },
5997
+ "mailbox_poll_interval_ms": {
5998
+ "default": 3000,
5999
+ "type": "integer",
6000
+ "minimum": 500,
6001
+ "maximum": 9007199254740991
6002
+ }
6003
+ },
6004
+ "required": [
6005
+ "enabled",
6006
+ "tmux_visualization",
6007
+ "max_parallel_members",
6008
+ "max_members",
6009
+ "max_messages_per_run",
6010
+ "max_wall_clock_minutes",
6011
+ "max_member_turns",
6012
+ "message_payload_max_bytes",
6013
+ "recipient_unread_max_bytes",
6014
+ "mailbox_poll_interval_ms"
6015
+ ],
6016
+ "additionalProperties": false
6017
+ },
6018
+ "keyword_detector": {
6019
+ "type": "object",
6020
+ "properties": {
6021
+ "disabled_keywords": {
6022
+ "type": "array",
6023
+ "items": {
6024
+ "type": "string",
6025
+ "enum": [
6026
+ "ultrawork",
6027
+ "search",
6028
+ "analyze",
6029
+ "team",
6030
+ "hyperplan",
6031
+ "hyperplan-ultrawork"
6032
+ ]
6033
+ }
6034
+ }
6035
+ },
6036
+ "additionalProperties": false
6037
+ },
5894
6038
  "babysitting": {
5895
6039
  "type": "object",
5896
6040
  "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,7 @@ 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
+ teamToolGating: ReturnType<typeof import("../../hooks").createTeamToolGating> | null;
34
37
  contextWindowMonitor: ReturnType<typeof import("../../hooks").createContextWindowMonitorHook> | null;
35
38
  preemptiveCompaction: ReturnType<typeof import("../../hooks").createPreemptiveCompactionHook> | null;
36
39
  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 } from "../../hooks";
5
5
  export type ToolGuardHooks = {
6
6
  commentChecker: ReturnType<typeof createCommentCheckerHooks> | null;
7
7
  toolOutputTruncator: ReturnType<typeof createToolOutputTruncatorHook> | null;
@@ -17,6 +17,7 @@ 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
+ teamToolGating: ReturnType<typeof createTeamToolGating> | null;
20
21
  };
21
22
  export declare function createToolGuardHooks(args: {
22
23
  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
  };
@@ -1,6 +1,7 @@
1
1
  export declare function pruneRecentSyntheticIdles(args: {
2
2
  recentSyntheticIdles: Map<string, number>;
3
3
  recentRealIdles: Map<string, number>;
4
+ recentAnyIdles: Map<string, number>;
4
5
  now: number;
5
6
  dedupWindowMs: number;
6
7
  }): void;
@@ -1,5 +1,9 @@
1
1
  import type { AvailableCategory } from "../agents/dynamic-agent-prompt-builder";
2
2
  import type { OhMyOpenCodeConfig } from "../config";
3
+ import { createTeamApproveShutdownTool, createTeamCreateTool, createTeamDeleteTool, createTeamRejectShutdownTool, createTeamShutdownRequestTool } from "../features/team-mode/tools/lifecycle";
4
+ import { createTeamSendMessageTool } from "../features/team-mode/tools/messaging";
5
+ import { createTeamListTool, createTeamStatusTool } from "../features/team-mode/tools/query";
6
+ import { createTeamTaskCreateTool, createTeamTaskGetTool, createTeamTaskListTool, createTeamTaskUpdateTool } from "../features/team-mode/tools/tasks";
3
7
  import type { PluginContext, ToolsRecord } from "./types";
4
8
  import { builtinTools, createBackgroundTools, createCallOmoAgent, createLookAt, createSkillMcpTool, createSkillTool, createGrepTools, createGlobTools, createAstGrepTools, createSessionManagerTools, createDelegateTask, discoverCommandsSync, interactive_bash, createTaskCreateTool, createTaskGetTool, createTaskList, createTaskUpdateTool, createHashlineEditTool } from "../tools";
5
9
  import type { Managers } from "../create-managers";
@@ -23,6 +27,18 @@ type ToolRegistryFactories = {
23
27
  createTaskList: typeof createTaskList;
24
28
  createTaskUpdateTool: typeof createTaskUpdateTool;
25
29
  createHashlineEditTool: typeof createHashlineEditTool;
30
+ createTeamApproveShutdownTool: typeof createTeamApproveShutdownTool;
31
+ createTeamCreateTool: typeof createTeamCreateTool;
32
+ createTeamDeleteTool: typeof createTeamDeleteTool;
33
+ createTeamRejectShutdownTool: typeof createTeamRejectShutdownTool;
34
+ createTeamShutdownRequestTool: typeof createTeamShutdownRequestTool;
35
+ createTeamSendMessageTool: typeof createTeamSendMessageTool;
36
+ createTeamTaskCreateTool: typeof createTeamTaskCreateTool;
37
+ createTeamTaskGetTool: typeof createTeamTaskGetTool;
38
+ createTeamTaskListTool: typeof createTeamTaskListTool;
39
+ createTeamTaskUpdateTool: typeof createTeamTaskUpdateTool;
40
+ createTeamStatusTool: typeof createTeamStatusTool;
41
+ createTeamListTool: typeof createTeamListTool;
26
42
  };
27
43
  export type ToolRegistryResult = {
28
44
  filteredTools: ToolsRecord;