claudecode-omc 4.9.4 → 5.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 (3894) hide show
  1. package/README.md +43 -452
  2. package/bin/omc-manage.js +8 -0
  3. package/bundled/manifest.json +7 -0
  4. package/bundled/upstream/oh-my-claudecode/skills/conductor/SKILL.md +231 -0
  5. package/bundled/upstream/superpowers/agents/code-reviewer.md +48 -0
  6. package/bundled/upstream/superpowers/commands/brainstorm.md +5 -0
  7. package/bundled/upstream/superpowers/commands/execute-plan.md +5 -0
  8. package/bundled/upstream/superpowers/commands/write-plan.md +5 -0
  9. package/bundled/upstream/superpowers/hooks/hooks-cursor.json +10 -0
  10. package/bundled/upstream/superpowers/hooks/hooks.json +16 -0
  11. package/bundled/upstream/superpowers/hooks/run-hook.cmd +46 -0
  12. package/bundled/upstream/superpowers/hooks/session-start +57 -0
  13. package/bundled/upstream/superpowers/skills/brainstorming/SKILL.md +164 -0
  14. package/bundled/upstream/superpowers/skills/brainstorming/scripts/frame-template.html +214 -0
  15. package/bundled/upstream/superpowers/skills/brainstorming/scripts/helper.js +88 -0
  16. package/bundled/upstream/superpowers/skills/brainstorming/scripts/server.cjs +354 -0
  17. package/bundled/upstream/superpowers/skills/brainstorming/scripts/start-server.sh +148 -0
  18. package/bundled/upstream/superpowers/skills/brainstorming/scripts/stop-server.sh +56 -0
  19. package/bundled/upstream/superpowers/skills/brainstorming/spec-document-reviewer-prompt.md +49 -0
  20. package/bundled/upstream/superpowers/skills/brainstorming/visual-companion.md +287 -0
  21. package/bundled/upstream/superpowers/skills/dispatching-parallel-agents/SKILL.md +182 -0
  22. package/bundled/upstream/superpowers/skills/executing-plans/SKILL.md +70 -0
  23. package/bundled/upstream/superpowers/skills/finishing-a-development-branch/SKILL.md +200 -0
  24. package/bundled/upstream/superpowers/skills/receiving-code-review/SKILL.md +213 -0
  25. package/bundled/upstream/superpowers/skills/requesting-code-review/SKILL.md +105 -0
  26. package/bundled/upstream/superpowers/skills/requesting-code-review/code-reviewer.md +146 -0
  27. package/bundled/upstream/superpowers/skills/subagent-driven-development/SKILL.md +277 -0
  28. package/bundled/upstream/superpowers/skills/subagent-driven-development/code-quality-reviewer-prompt.md +26 -0
  29. package/bundled/upstream/superpowers/skills/subagent-driven-development/implementer-prompt.md +113 -0
  30. package/bundled/upstream/superpowers/skills/subagent-driven-development/spec-reviewer-prompt.md +61 -0
  31. package/bundled/upstream/superpowers/skills/systematic-debugging/CREATION-LOG.md +119 -0
  32. package/bundled/upstream/superpowers/skills/systematic-debugging/SKILL.md +296 -0
  33. package/bundled/upstream/superpowers/skills/systematic-debugging/condition-based-waiting-example.ts +158 -0
  34. package/bundled/upstream/superpowers/skills/systematic-debugging/condition-based-waiting.md +115 -0
  35. package/bundled/upstream/superpowers/skills/systematic-debugging/defense-in-depth.md +122 -0
  36. package/bundled/upstream/superpowers/skills/systematic-debugging/find-polluter.sh +63 -0
  37. package/bundled/upstream/superpowers/skills/systematic-debugging/root-cause-tracing.md +169 -0
  38. package/bundled/upstream/superpowers/skills/systematic-debugging/test-academic.md +14 -0
  39. package/bundled/upstream/superpowers/skills/systematic-debugging/test-pressure-1.md +58 -0
  40. package/bundled/upstream/superpowers/skills/systematic-debugging/test-pressure-2.md +68 -0
  41. package/bundled/upstream/superpowers/skills/systematic-debugging/test-pressure-3.md +69 -0
  42. package/bundled/upstream/superpowers/skills/test-driven-development/SKILL.md +371 -0
  43. package/bundled/upstream/superpowers/skills/test-driven-development/testing-anti-patterns.md +299 -0
  44. package/bundled/upstream/superpowers/skills/using-git-worktrees/SKILL.md +218 -0
  45. package/bundled/upstream/superpowers/skills/using-superpowers/SKILL.md +117 -0
  46. package/bundled/upstream/superpowers/skills/using-superpowers/references/codex-tools.md +100 -0
  47. package/bundled/upstream/superpowers/skills/using-superpowers/references/copilot-tools.md +52 -0
  48. package/bundled/upstream/superpowers/skills/using-superpowers/references/gemini-tools.md +33 -0
  49. package/bundled/upstream/superpowers/skills/verification-before-completion/SKILL.md +139 -0
  50. package/bundled/upstream/superpowers/skills/writing-plans/SKILL.md +152 -0
  51. package/bundled/upstream/superpowers/skills/writing-plans/plan-document-reviewer-prompt.md +49 -0
  52. package/bundled/upstream/superpowers/skills/writing-skills/SKILL.md +655 -0
  53. package/bundled/upstream/superpowers/skills/writing-skills/anthropic-best-practices.md +1150 -0
  54. package/bundled/upstream/superpowers/skills/writing-skills/examples/CLAUDE_MD_TESTING.md +189 -0
  55. package/bundled/upstream/superpowers/skills/writing-skills/graphviz-conventions.dot +172 -0
  56. package/bundled/upstream/superpowers/skills/writing-skills/persuasion-principles.md +187 -0
  57. package/bundled/upstream/superpowers/skills/writing-skills/render-graphs.js +168 -0
  58. package/bundled/upstream/superpowers/skills/writing-skills/testing-skills-with-subagents.md +384 -0
  59. package/package.json +28 -109
  60. package/scripts/bundle-upstream.sh +45 -0
  61. package/scripts/post-install-message.js +8 -0
  62. package/scripts/sync-upstream.sh +30 -0
  63. package/src/cli/artifact.js +154 -0
  64. package/src/cli/doctor.js +106 -0
  65. package/src/cli/index.js +77 -0
  66. package/src/cli/setup.js +284 -0
  67. package/src/cli/skill.js +9 -0
  68. package/src/cli/source.js +198 -0
  69. package/src/config/artifact-types.js +76 -0
  70. package/src/config/paths.js +142 -0
  71. package/src/config/sources.js +129 -0
  72. package/src/merge/agent-merger.js +47 -0
  73. package/src/merge/base-merger.js +257 -0
  74. package/src/merge/claude-md-merger.js +55 -0
  75. package/src/merge/command-merger.js +35 -0
  76. package/src/merge/file-merger.js +35 -0
  77. package/src/merge/hook-merger.js +99 -0
  78. package/src/merge/settings-merger.js +62 -0
  79. package/src/merge/skill-merger.js +66 -0
  80. package/src/utils/quality.js +53 -0
  81. package/templates/merge-config.json +11 -0
  82. package/.claude-plugin/marketplace.json +0 -30
  83. package/.claude-plugin/plugin.json +0 -20
  84. package/.mcp.json +0 -8
  85. package/LICENSE +0 -21
  86. package/README.de.md +0 -346
  87. package/README.es.md +0 -391
  88. package/README.fr.md +0 -346
  89. package/README.it.md +0 -346
  90. package/README.ja.md +0 -391
  91. package/README.ko.md +0 -396
  92. package/README.pt.md +0 -389
  93. package/README.ru.md +0 -346
  94. package/README.tr.md +0 -346
  95. package/README.vi.md +0 -389
  96. package/README.zh.md +0 -391
  97. package/bridge/__pycache__/gyoshu_bridge.cpython-310.pyc +0 -0
  98. package/bridge/cli.cjs +0 -85381
  99. package/bridge/codex-server.cjs +0 -18022
  100. package/bridge/gyoshu_bridge.py +0 -941
  101. package/bridge/mcp-server.cjs +0 -25767
  102. package/bridge/run-mcp-server.sh +0 -13
  103. package/bridge/runtime-cli.cjs +0 -6169
  104. package/bridge/team-bridge.cjs +0 -2038
  105. package/bridge/team-mcp.cjs +0 -18962
  106. package/bridge/team.js +0 -7383
  107. package/dist/__tests__/agent-boundary-guidance.test.d.ts +0 -2
  108. package/dist/__tests__/agent-boundary-guidance.test.d.ts.map +0 -1
  109. package/dist/__tests__/agent-boundary-guidance.test.js +0 -48
  110. package/dist/__tests__/agent-boundary-guidance.test.js.map +0 -1
  111. package/dist/__tests__/agent-registry.test.d.ts +0 -2
  112. package/dist/__tests__/agent-registry.test.d.ts.map +0 -1
  113. package/dist/__tests__/agent-registry.test.js +0 -93
  114. package/dist/__tests__/agent-registry.test.js.map +0 -1
  115. package/dist/__tests__/auto-slash-aliases.test.d.ts +0 -2
  116. package/dist/__tests__/auto-slash-aliases.test.d.ts.map +0 -1
  117. package/dist/__tests__/auto-slash-aliases.test.js +0 -198
  118. package/dist/__tests__/auto-slash-aliases.test.js.map +0 -1
  119. package/dist/__tests__/auto-update.test.d.ts +0 -2
  120. package/dist/__tests__/auto-update.test.d.ts.map +0 -1
  121. package/dist/__tests__/auto-update.test.js +0 -758
  122. package/dist/__tests__/auto-update.test.js.map +0 -1
  123. package/dist/__tests__/auto-upgrade-prompt.test.d.ts +0 -2
  124. package/dist/__tests__/auto-upgrade-prompt.test.d.ts.map +0 -1
  125. package/dist/__tests__/auto-upgrade-prompt.test.js +0 -81
  126. package/dist/__tests__/auto-upgrade-prompt.test.js.map +0 -1
  127. package/dist/__tests__/background-cleanup-directory.test.d.ts +0 -2
  128. package/dist/__tests__/background-cleanup-directory.test.d.ts.map +0 -1
  129. package/dist/__tests__/background-cleanup-directory.test.js +0 -57
  130. package/dist/__tests__/background-cleanup-directory.test.js.map +0 -1
  131. package/dist/__tests__/bash-history.test.d.ts +0 -5
  132. package/dist/__tests__/bash-history.test.d.ts.map +0 -1
  133. package/dist/__tests__/bash-history.test.js +0 -78
  134. package/dist/__tests__/bash-history.test.js.map +0 -1
  135. package/dist/__tests__/bedrock-lm-suffix-hook.test.d.ts +0 -24
  136. package/dist/__tests__/bedrock-lm-suffix-hook.test.d.ts.map +0 -1
  137. package/dist/__tests__/bedrock-lm-suffix-hook.test.js +0 -210
  138. package/dist/__tests__/bedrock-lm-suffix-hook.test.js.map +0 -1
  139. package/dist/__tests__/bedrock-model-routing.test.d.ts +0 -21
  140. package/dist/__tests__/bedrock-model-routing.test.d.ts.map +0 -1
  141. package/dist/__tests__/bedrock-model-routing.test.js +0 -397
  142. package/dist/__tests__/bedrock-model-routing.test.js.map +0 -1
  143. package/dist/__tests__/cleanup-validation.test.d.ts +0 -2
  144. package/dist/__tests__/cleanup-validation.test.d.ts.map +0 -1
  145. package/dist/__tests__/cleanup-validation.test.js +0 -50
  146. package/dist/__tests__/cleanup-validation.test.js.map +0 -1
  147. package/dist/__tests__/cli-config-stop-callback.test.d.ts +0 -2
  148. package/dist/__tests__/cli-config-stop-callback.test.d.ts.map +0 -1
  149. package/dist/__tests__/cli-config-stop-callback.test.js +0 -132
  150. package/dist/__tests__/cli-config-stop-callback.test.js.map +0 -1
  151. package/dist/__tests__/cli-interop-flags.test.d.ts +0 -2
  152. package/dist/__tests__/cli-interop-flags.test.d.ts.map +0 -1
  153. package/dist/__tests__/cli-interop-flags.test.js +0 -42
  154. package/dist/__tests__/cli-interop-flags.test.js.map +0 -1
  155. package/dist/__tests__/cli-notify-profile.test.d.ts +0 -2
  156. package/dist/__tests__/cli-notify-profile.test.d.ts.map +0 -1
  157. package/dist/__tests__/cli-notify-profile.test.js +0 -213
  158. package/dist/__tests__/cli-notify-profile.test.js.map +0 -1
  159. package/dist/__tests__/cli-win32-warning.test.d.ts +0 -2
  160. package/dist/__tests__/cli-win32-warning.test.d.ts.map +0 -1
  161. package/dist/__tests__/cli-win32-warning.test.js +0 -59
  162. package/dist/__tests__/cli-win32-warning.test.js.map +0 -1
  163. package/dist/__tests__/compact-denylist.test.d.ts +0 -9
  164. package/dist/__tests__/compact-denylist.test.d.ts.map +0 -1
  165. package/dist/__tests__/compact-denylist.test.js +0 -24
  166. package/dist/__tests__/compact-denylist.test.js.map +0 -1
  167. package/dist/__tests__/config-force-inherit-env.test.d.ts +0 -5
  168. package/dist/__tests__/config-force-inherit-env.test.d.ts.map +0 -1
  169. package/dist/__tests__/config-force-inherit-env.test.js +0 -35
  170. package/dist/__tests__/config-force-inherit-env.test.js.map +0 -1
  171. package/dist/__tests__/consensus-execution-handoff.test.d.ts +0 -16
  172. package/dist/__tests__/consensus-execution-handoff.test.d.ts.map +0 -1
  173. package/dist/__tests__/consensus-execution-handoff.test.js +0 -195
  174. package/dist/__tests__/consensus-execution-handoff.test.js.map +0 -1
  175. package/dist/__tests__/consolidation-contracts.test.d.ts +0 -2
  176. package/dist/__tests__/consolidation-contracts.test.d.ts.map +0 -1
  177. package/dist/__tests__/consolidation-contracts.test.js +0 -94
  178. package/dist/__tests__/consolidation-contracts.test.js.map +0 -1
  179. package/dist/__tests__/context-guard-stop.test.d.ts +0 -2
  180. package/dist/__tests__/context-guard-stop.test.d.ts.map +0 -1
  181. package/dist/__tests__/context-guard-stop.test.js +0 -78
  182. package/dist/__tests__/context-guard-stop.test.js.map +0 -1
  183. package/dist/__tests__/context-safety.test.d.ts +0 -2
  184. package/dist/__tests__/context-safety.test.d.ts.map +0 -1
  185. package/dist/__tests__/context-safety.test.js +0 -88
  186. package/dist/__tests__/context-safety.test.js.map +0 -1
  187. package/dist/__tests__/daemon-module-path.test.d.ts +0 -2
  188. package/dist/__tests__/daemon-module-path.test.d.ts.map +0 -1
  189. package/dist/__tests__/daemon-module-path.test.js +0 -29
  190. package/dist/__tests__/daemon-module-path.test.js.map +0 -1
  191. package/dist/__tests__/deep-interview-provider-options.test.d.ts +0 -2
  192. package/dist/__tests__/deep-interview-provider-options.test.d.ts.map +0 -1
  193. package/dist/__tests__/deep-interview-provider-options.test.js +0 -79
  194. package/dist/__tests__/deep-interview-provider-options.test.js.map +0 -1
  195. package/dist/__tests__/delegation-enforcement-levels.test.d.ts +0 -9
  196. package/dist/__tests__/delegation-enforcement-levels.test.d.ts.map +0 -1
  197. package/dist/__tests__/delegation-enforcement-levels.test.js +0 -587
  198. package/dist/__tests__/delegation-enforcement-levels.test.js.map +0 -1
  199. package/dist/__tests__/delegation-enforcer-integration.test.d.ts +0 -10
  200. package/dist/__tests__/delegation-enforcer-integration.test.d.ts.map +0 -1
  201. package/dist/__tests__/delegation-enforcer-integration.test.js +0 -140
  202. package/dist/__tests__/delegation-enforcer-integration.test.js.map +0 -1
  203. package/dist/__tests__/delegation-enforcer.test.d.ts +0 -5
  204. package/dist/__tests__/delegation-enforcer.test.d.ts.map +0 -1
  205. package/dist/__tests__/delegation-enforcer.test.js +0 -487
  206. package/dist/__tests__/delegation-enforcer.test.js.map +0 -1
  207. package/dist/__tests__/directory-context-injector.test.d.ts +0 -2
  208. package/dist/__tests__/directory-context-injector.test.d.ts.map +0 -1
  209. package/dist/__tests__/directory-context-injector.test.js +0 -186
  210. package/dist/__tests__/directory-context-injector.test.js.map +0 -1
  211. package/dist/__tests__/disable-tools.test.d.ts +0 -8
  212. package/dist/__tests__/disable-tools.test.d.ts.map +0 -1
  213. package/dist/__tests__/disable-tools.test.js +0 -186
  214. package/dist/__tests__/disable-tools.test.js.map +0 -1
  215. package/dist/__tests__/doctor-conflicts.test.d.ts +0 -8
  216. package/dist/__tests__/doctor-conflicts.test.d.ts.map +0 -1
  217. package/dist/__tests__/doctor-conflicts.test.js +0 -519
  218. package/dist/__tests__/doctor-conflicts.test.js.map +0 -1
  219. package/dist/__tests__/featured-contributors-generator.test.d.ts +0 -2
  220. package/dist/__tests__/featured-contributors-generator.test.d.ts.map +0 -1
  221. package/dist/__tests__/featured-contributors-generator.test.js +0 -118
  222. package/dist/__tests__/featured-contributors-generator.test.js.map +0 -1
  223. package/dist/__tests__/file-lock.test.d.ts +0 -2
  224. package/dist/__tests__/file-lock.test.d.ts.map +0 -1
  225. package/dist/__tests__/file-lock.test.js +0 -209
  226. package/dist/__tests__/file-lock.test.js.map +0 -1
  227. package/dist/__tests__/helpers/prompt-test-helpers.d.ts +0 -4
  228. package/dist/__tests__/helpers/prompt-test-helpers.d.ts.map +0 -1
  229. package/dist/__tests__/helpers/prompt-test-helpers.js +0 -9
  230. package/dist/__tests__/helpers/prompt-test-helpers.js.map +0 -1
  231. package/dist/__tests__/hooks/learner/bridge.test.d.ts +0 -11
  232. package/dist/__tests__/hooks/learner/bridge.test.d.ts.map +0 -1
  233. package/dist/__tests__/hooks/learner/bridge.test.js +0 -243
  234. package/dist/__tests__/hooks/learner/bridge.test.js.map +0 -1
  235. package/dist/__tests__/hooks/learner/parser.test.d.ts +0 -5
  236. package/dist/__tests__/hooks/learner/parser.test.d.ts.map +0 -1
  237. package/dist/__tests__/hooks/learner/parser.test.js +0 -219
  238. package/dist/__tests__/hooks/learner/parser.test.js.map +0 -1
  239. package/dist/__tests__/hooks/learner/transliteration-map.test.d.ts +0 -8
  240. package/dist/__tests__/hooks/learner/transliteration-map.test.d.ts.map +0 -1
  241. package/dist/__tests__/hooks/learner/transliteration-map.test.js +0 -183
  242. package/dist/__tests__/hooks/learner/transliteration-map.test.js.map +0 -1
  243. package/dist/__tests__/hooks/plugin-patterns.test.d.ts +0 -2
  244. package/dist/__tests__/hooks/plugin-patterns.test.d.ts.map +0 -1
  245. package/dist/__tests__/hooks/plugin-patterns.test.js +0 -203
  246. package/dist/__tests__/hooks/plugin-patterns.test.js.map +0 -1
  247. package/dist/__tests__/hooks-command-escaping.test.d.ts +0 -2
  248. package/dist/__tests__/hooks-command-escaping.test.d.ts.map +0 -1
  249. package/dist/__tests__/hooks-command-escaping.test.js +0 -41
  250. package/dist/__tests__/hooks-command-escaping.test.js.map +0 -1
  251. package/dist/__tests__/hooks.test.d.ts +0 -2
  252. package/dist/__tests__/hooks.test.d.ts.map +0 -1
  253. package/dist/__tests__/hooks.test.js +0 -1421
  254. package/dist/__tests__/hooks.test.js.map +0 -1
  255. package/dist/__tests__/hud/background-tasks.test.d.ts +0 -2
  256. package/dist/__tests__/hud/background-tasks.test.d.ts.map +0 -1
  257. package/dist/__tests__/hud/background-tasks.test.js +0 -90
  258. package/dist/__tests__/hud/background-tasks.test.js.map +0 -1
  259. package/dist/__tests__/hud/call-counts.test.d.ts +0 -2
  260. package/dist/__tests__/hud/call-counts.test.d.ts.map +0 -1
  261. package/dist/__tests__/hud/call-counts.test.js +0 -83
  262. package/dist/__tests__/hud/call-counts.test.js.map +0 -1
  263. package/dist/__tests__/hud/context-warning.test.d.ts +0 -2
  264. package/dist/__tests__/hud/context-warning.test.d.ts.map +0 -1
  265. package/dist/__tests__/hud/context-warning.test.js +0 -82
  266. package/dist/__tests__/hud/context-warning.test.js.map +0 -1
  267. package/dist/__tests__/hud/context.test.d.ts +0 -2
  268. package/dist/__tests__/hud/context.test.d.ts.map +0 -1
  269. package/dist/__tests__/hud/context.test.js +0 -47
  270. package/dist/__tests__/hud/context.test.js.map +0 -1
  271. package/dist/__tests__/hud/custom-rate-provider.test.d.ts +0 -5
  272. package/dist/__tests__/hud/custom-rate-provider.test.d.ts.map +0 -1
  273. package/dist/__tests__/hud/custom-rate-provider.test.js +0 -198
  274. package/dist/__tests__/hud/custom-rate-provider.test.js.map +0 -1
  275. package/dist/__tests__/hud/cwd.test.d.ts +0 -2
  276. package/dist/__tests__/hud/cwd.test.d.ts.map +0 -1
  277. package/dist/__tests__/hud/cwd.test.js +0 -62
  278. package/dist/__tests__/hud/cwd.test.js.map +0 -1
  279. package/dist/__tests__/hud/defaults.test.d.ts +0 -2
  280. package/dist/__tests__/hud/defaults.test.d.ts.map +0 -1
  281. package/dist/__tests__/hud/defaults.test.js +0 -71
  282. package/dist/__tests__/hud/defaults.test.js.map +0 -1
  283. package/dist/__tests__/hud/git.test.d.ts +0 -2
  284. package/dist/__tests__/hud/git.test.d.ts.map +0 -1
  285. package/dist/__tests__/hud/git.test.js +0 -111
  286. package/dist/__tests__/hud/git.test.js.map +0 -1
  287. package/dist/__tests__/hud/limits-error.test.d.ts +0 -5
  288. package/dist/__tests__/hud/limits-error.test.d.ts.map +0 -1
  289. package/dist/__tests__/hud/limits-error.test.js +0 -41
  290. package/dist/__tests__/hud/limits-error.test.js.map +0 -1
  291. package/dist/__tests__/hud/max-width.test.d.ts +0 -2
  292. package/dist/__tests__/hud/max-width.test.d.ts.map +0 -1
  293. package/dist/__tests__/hud/max-width.test.js +0 -149
  294. package/dist/__tests__/hud/max-width.test.js.map +0 -1
  295. package/dist/__tests__/hud/mission-board-state.test.d.ts +0 -2
  296. package/dist/__tests__/hud/mission-board-state.test.d.ts.map +0 -1
  297. package/dist/__tests__/hud/mission-board-state.test.js +0 -202
  298. package/dist/__tests__/hud/mission-board-state.test.js.map +0 -1
  299. package/dist/__tests__/hud/mission-board.test.d.ts +0 -2
  300. package/dist/__tests__/hud/mission-board.test.d.ts.map +0 -1
  301. package/dist/__tests__/hud/mission-board.test.js +0 -144
  302. package/dist/__tests__/hud/mission-board.test.js.map +0 -1
  303. package/dist/__tests__/hud/model.test.d.ts +0 -2
  304. package/dist/__tests__/hud/model.test.d.ts.map +0 -1
  305. package/dist/__tests__/hud/model.test.js +0 -63
  306. package/dist/__tests__/hud/model.test.js.map +0 -1
  307. package/dist/__tests__/hud/omc-state.test.d.ts +0 -2
  308. package/dist/__tests__/hud/omc-state.test.d.ts.map +0 -1
  309. package/dist/__tests__/hud/omc-state.test.js +0 -123
  310. package/dist/__tests__/hud/omc-state.test.js.map +0 -1
  311. package/dist/__tests__/hud/prompt-time.test.d.ts +0 -2
  312. package/dist/__tests__/hud/prompt-time.test.d.ts.map +0 -1
  313. package/dist/__tests__/hud/prompt-time.test.js +0 -24
  314. package/dist/__tests__/hud/prompt-time.test.js.map +0 -1
  315. package/dist/__tests__/hud/rate-limits-error.test.d.ts +0 -5
  316. package/dist/__tests__/hud/rate-limits-error.test.d.ts.map +0 -1
  317. package/dist/__tests__/hud/rate-limits-error.test.js +0 -89
  318. package/dist/__tests__/hud/rate-limits-error.test.js.map +0 -1
  319. package/dist/__tests__/hud/render-rate-limits-priority.test.d.ts +0 -8
  320. package/dist/__tests__/hud/render-rate-limits-priority.test.d.ts.map +0 -1
  321. package/dist/__tests__/hud/render-rate-limits-priority.test.js +0 -146
  322. package/dist/__tests__/hud/render-rate-limits-priority.test.js.map +0 -1
  323. package/dist/__tests__/hud/render.test.d.ts +0 -2
  324. package/dist/__tests__/hud/render.test.d.ts.map +0 -1
  325. package/dist/__tests__/hud/render.test.js +0 -531
  326. package/dist/__tests__/hud/render.test.js.map +0 -1
  327. package/dist/__tests__/hud/sanitize.test.d.ts +0 -10
  328. package/dist/__tests__/hud/sanitize.test.d.ts.map +0 -1
  329. package/dist/__tests__/hud/sanitize.test.js +0 -138
  330. package/dist/__tests__/hud/sanitize.test.js.map +0 -1
  331. package/dist/__tests__/hud/skills.test.d.ts +0 -2
  332. package/dist/__tests__/hud/skills.test.d.ts.map +0 -1
  333. package/dist/__tests__/hud/skills.test.js +0 -143
  334. package/dist/__tests__/hud/skills.test.js.map +0 -1
  335. package/dist/__tests__/hud/stale-indicator.test.d.ts +0 -9
  336. package/dist/__tests__/hud/stale-indicator.test.d.ts.map +0 -1
  337. package/dist/__tests__/hud/stale-indicator.test.js +0 -81
  338. package/dist/__tests__/hud/stale-indicator.test.js.map +0 -1
  339. package/dist/__tests__/hud/state.test.d.ts +0 -2
  340. package/dist/__tests__/hud/state.test.d.ts.map +0 -1
  341. package/dist/__tests__/hud/state.test.js +0 -264
  342. package/dist/__tests__/hud/state.test.js.map +0 -1
  343. package/dist/__tests__/hud/stdin.test.d.ts +0 -2
  344. package/dist/__tests__/hud/stdin.test.d.ts.map +0 -1
  345. package/dist/__tests__/hud/stdin.test.js +0 -108
  346. package/dist/__tests__/hud/stdin.test.js.map +0 -1
  347. package/dist/__tests__/hud/thinking.test.d.ts +0 -2
  348. package/dist/__tests__/hud/thinking.test.d.ts.map +0 -1
  349. package/dist/__tests__/hud/thinking.test.js +0 -32
  350. package/dist/__tests__/hud/thinking.test.js.map +0 -1
  351. package/dist/__tests__/hud/token-usage.test.d.ts +0 -2
  352. package/dist/__tests__/hud/token-usage.test.d.ts.map +0 -1
  353. package/dist/__tests__/hud/token-usage.test.js +0 -143
  354. package/dist/__tests__/hud/token-usage.test.js.map +0 -1
  355. package/dist/__tests__/hud/usage-api-lock.test.d.ts +0 -2
  356. package/dist/__tests__/hud/usage-api-lock.test.d.ts.map +0 -1
  357. package/dist/__tests__/hud/usage-api-lock.test.js +0 -248
  358. package/dist/__tests__/hud/usage-api-lock.test.js.map +0 -1
  359. package/dist/__tests__/hud/usage-api-stale.test.d.ts +0 -9
  360. package/dist/__tests__/hud/usage-api-stale.test.d.ts.map +0 -1
  361. package/dist/__tests__/hud/usage-api-stale.test.js +0 -299
  362. package/dist/__tests__/hud/usage-api-stale.test.js.map +0 -1
  363. package/dist/__tests__/hud/usage-api.test.d.ts +0 -5
  364. package/dist/__tests__/hud/usage-api.test.d.ts.map +0 -1
  365. package/dist/__tests__/hud/usage-api.test.js +0 -567
  366. package/dist/__tests__/hud/usage-api.test.js.map +0 -1
  367. package/dist/__tests__/hud/version-display.test.d.ts +0 -2
  368. package/dist/__tests__/hud/version-display.test.d.ts.map +0 -1
  369. package/dist/__tests__/hud/version-display.test.js +0 -110
  370. package/dist/__tests__/hud/version-display.test.js.map +0 -1
  371. package/dist/__tests__/hud/watch-mode-init.test.d.ts +0 -2
  372. package/dist/__tests__/hud/watch-mode-init.test.d.ts.map +0 -1
  373. package/dist/__tests__/hud/watch-mode-init.test.js +0 -155
  374. package/dist/__tests__/hud/watch-mode-init.test.js.map +0 -1
  375. package/dist/__tests__/hud/windows-platform.test.d.ts +0 -2
  376. package/dist/__tests__/hud/windows-platform.test.d.ts.map +0 -1
  377. package/dist/__tests__/hud/windows-platform.test.js +0 -187
  378. package/dist/__tests__/hud/windows-platform.test.js.map +0 -1
  379. package/dist/__tests__/hud-agents.test.d.ts +0 -7
  380. package/dist/__tests__/hud-agents.test.d.ts.map +0 -1
  381. package/dist/__tests__/hud-agents.test.js +0 -394
  382. package/dist/__tests__/hud-agents.test.js.map +0 -1
  383. package/dist/__tests__/hud-api-key-source.test.d.ts +0 -7
  384. package/dist/__tests__/hud-api-key-source.test.d.ts.map +0 -1
  385. package/dist/__tests__/hud-api-key-source.test.js +0 -112
  386. package/dist/__tests__/hud-api-key-source.test.js.map +0 -1
  387. package/dist/__tests__/hud-build-guidance.test.d.ts +0 -2
  388. package/dist/__tests__/hud-build-guidance.test.d.ts.map +0 -1
  389. package/dist/__tests__/hud-build-guidance.test.js +0 -30
  390. package/dist/__tests__/hud-build-guidance.test.js.map +0 -1
  391. package/dist/__tests__/hud-marketplace-resolution.test.d.ts +0 -2
  392. package/dist/__tests__/hud-marketplace-resolution.test.d.ts.map +0 -1
  393. package/dist/__tests__/hud-marketplace-resolution.test.js +0 -78
  394. package/dist/__tests__/hud-marketplace-resolution.test.js.map +0 -1
  395. package/dist/__tests__/hud-windows.test.d.ts +0 -2
  396. package/dist/__tests__/hud-windows.test.d.ts.map +0 -1
  397. package/dist/__tests__/hud-windows.test.js +0 -167
  398. package/dist/__tests__/hud-windows.test.js.map +0 -1
  399. package/dist/__tests__/installer-hooks-merge.test.d.ts +0 -13
  400. package/dist/__tests__/installer-hooks-merge.test.d.ts.map +0 -1
  401. package/dist/__tests__/installer-hooks-merge.test.js +0 -250
  402. package/dist/__tests__/installer-hooks-merge.test.js.map +0 -1
  403. package/dist/__tests__/installer-hud-skip.test.d.ts +0 -2
  404. package/dist/__tests__/installer-hud-skip.test.d.ts.map +0 -1
  405. package/dist/__tests__/installer-hud-skip.test.js +0 -124
  406. package/dist/__tests__/installer-hud-skip.test.js.map +0 -1
  407. package/dist/__tests__/installer-mcp-config.test.d.ts +0 -2
  408. package/dist/__tests__/installer-mcp-config.test.d.ts.map +0 -1
  409. package/dist/__tests__/installer-mcp-config.test.js +0 -119
  410. package/dist/__tests__/installer-mcp-config.test.js.map +0 -1
  411. package/dist/__tests__/installer-omc-reference.test.d.ts +0 -2
  412. package/dist/__tests__/installer-omc-reference.test.d.ts.map +0 -1
  413. package/dist/__tests__/installer-omc-reference.test.js +0 -85
  414. package/dist/__tests__/installer-omc-reference.test.js.map +0 -1
  415. package/dist/__tests__/installer-plugin-agents.test.d.ts +0 -2
  416. package/dist/__tests__/installer-plugin-agents.test.d.ts.map +0 -1
  417. package/dist/__tests__/installer-plugin-agents.test.js +0 -111
  418. package/dist/__tests__/installer-plugin-agents.test.js.map +0 -1
  419. package/dist/__tests__/installer-version-guard.test.d.ts +0 -2
  420. package/dist/__tests__/installer-version-guard.test.d.ts.map +0 -1
  421. package/dist/__tests__/installer-version-guard.test.js +0 -75
  422. package/dist/__tests__/installer-version-guard.test.js.map +0 -1
  423. package/dist/__tests__/installer.test.d.ts +0 -2
  424. package/dist/__tests__/installer.test.d.ts.map +0 -1
  425. package/dist/__tests__/installer.test.js +0 -518
  426. package/dist/__tests__/installer.test.js.map +0 -1
  427. package/dist/__tests__/job-management-sqlite.test.d.ts +0 -2
  428. package/dist/__tests__/job-management-sqlite.test.d.ts.map +0 -1
  429. package/dist/__tests__/job-management-sqlite.test.js +0 -269
  430. package/dist/__tests__/job-management-sqlite.test.js.map +0 -1
  431. package/dist/__tests__/job-management.test.d.ts +0 -2
  432. package/dist/__tests__/job-management.test.d.ts.map +0 -1
  433. package/dist/__tests__/job-management.test.js +0 -395
  434. package/dist/__tests__/job-management.test.js.map +0 -1
  435. package/dist/__tests__/job-state-db.test.d.ts +0 -2
  436. package/dist/__tests__/job-state-db.test.d.ts.map +0 -1
  437. package/dist/__tests__/job-state-db.test.js +0 -611
  438. package/dist/__tests__/job-state-db.test.js.map +0 -1
  439. package/dist/__tests__/jobid-collision-safety.test.d.ts +0 -10
  440. package/dist/__tests__/jobid-collision-safety.test.d.ts.map +0 -1
  441. package/dist/__tests__/jobid-collision-safety.test.js +0 -51
  442. package/dist/__tests__/jobid-collision-safety.test.js.map +0 -1
  443. package/dist/__tests__/learner/auto-learner.test.d.ts +0 -7
  444. package/dist/__tests__/learner/auto-learner.test.d.ts.map +0 -1
  445. package/dist/__tests__/learner/auto-learner.test.js +0 -507
  446. package/dist/__tests__/learner/auto-learner.test.js.map +0 -1
  447. package/dist/__tests__/learner/matcher.test.d.ts +0 -2
  448. package/dist/__tests__/learner/matcher.test.d.ts.map +0 -1
  449. package/dist/__tests__/learner/matcher.test.js +0 -330
  450. package/dist/__tests__/learner/matcher.test.js.map +0 -1
  451. package/dist/__tests__/live-data.test.d.ts +0 -2
  452. package/dist/__tests__/live-data.test.d.ts.map +0 -1
  453. package/dist/__tests__/live-data.test.js +0 -408
  454. package/dist/__tests__/live-data.test.js.map +0 -1
  455. package/dist/__tests__/load-agent-prompt.test.d.ts +0 -2
  456. package/dist/__tests__/load-agent-prompt.test.d.ts.map +0 -1
  457. package/dist/__tests__/load-agent-prompt.test.js +0 -78
  458. package/dist/__tests__/load-agent-prompt.test.js.map +0 -1
  459. package/dist/__tests__/lsp-servers.test.d.ts +0 -2
  460. package/dist/__tests__/lsp-servers.test.d.ts.map +0 -1
  461. package/dist/__tests__/lsp-servers.test.js +0 -133
  462. package/dist/__tests__/lsp-servers.test.js.map +0 -1
  463. package/dist/__tests__/marketplace-metadata.test.d.ts +0 -2
  464. package/dist/__tests__/marketplace-metadata.test.d.ts.map +0 -1
  465. package/dist/__tests__/marketplace-metadata.test.js +0 -20
  466. package/dist/__tests__/marketplace-metadata.test.js.map +0 -1
  467. package/dist/__tests__/mcp-comm-inbox-dedup.test.d.ts +0 -2
  468. package/dist/__tests__/mcp-comm-inbox-dedup.test.d.ts.map +0 -1
  469. package/dist/__tests__/mcp-comm-inbox-dedup.test.js +0 -105
  470. package/dist/__tests__/mcp-comm-inbox-dedup.test.js.map +0 -1
  471. package/dist/__tests__/mcp-default-config.test.d.ts +0 -2
  472. package/dist/__tests__/mcp-default-config.test.d.ts.map +0 -1
  473. package/dist/__tests__/mcp-default-config.test.js +0 -13
  474. package/dist/__tests__/mcp-default-config.test.js.map +0 -1
  475. package/dist/__tests__/mnemosyne/config.test.d.ts +0 -2
  476. package/dist/__tests__/mnemosyne/config.test.d.ts.map +0 -1
  477. package/dist/__tests__/mnemosyne/config.test.js +0 -37
  478. package/dist/__tests__/mnemosyne/config.test.js.map +0 -1
  479. package/dist/__tests__/mnemosyne/detector.test.d.ts +0 -2
  480. package/dist/__tests__/mnemosyne/detector.test.d.ts.map +0 -1
  481. package/dist/__tests__/mnemosyne/detector.test.js +0 -99
  482. package/dist/__tests__/mnemosyne/detector.test.js.map +0 -1
  483. package/dist/__tests__/mnemosyne/finder.test.d.ts +0 -2
  484. package/dist/__tests__/mnemosyne/finder.test.d.ts.map +0 -1
  485. package/dist/__tests__/mnemosyne/finder.test.js +0 -115
  486. package/dist/__tests__/mnemosyne/finder.test.js.map +0 -1
  487. package/dist/__tests__/mnemosyne/loader.test.d.ts +0 -2
  488. package/dist/__tests__/mnemosyne/loader.test.d.ts.map +0 -1
  489. package/dist/__tests__/mnemosyne/loader.test.js +0 -73
  490. package/dist/__tests__/mnemosyne/loader.test.js.map +0 -1
  491. package/dist/__tests__/mnemosyne/parser.test.d.ts +0 -2
  492. package/dist/__tests__/mnemosyne/parser.test.d.ts.map +0 -1
  493. package/dist/__tests__/mnemosyne/parser.test.js +0 -81
  494. package/dist/__tests__/mnemosyne/parser.test.js.map +0 -1
  495. package/dist/__tests__/mnemosyne/validator.test.d.ts +0 -2
  496. package/dist/__tests__/mnemosyne/validator.test.d.ts.map +0 -1
  497. package/dist/__tests__/mnemosyne/validator.test.js +0 -85
  498. package/dist/__tests__/mnemosyne/validator.test.js.map +0 -1
  499. package/dist/__tests__/mode-names-ralplan.test.d.ts +0 -2
  500. package/dist/__tests__/mode-names-ralplan.test.d.ts.map +0 -1
  501. package/dist/__tests__/mode-names-ralplan.test.js +0 -31
  502. package/dist/__tests__/mode-names-ralplan.test.js.map +0 -1
  503. package/dist/__tests__/model-routing-esm.test.d.ts +0 -2
  504. package/dist/__tests__/model-routing-esm.test.d.ts.map +0 -1
  505. package/dist/__tests__/model-routing-esm.test.js +0 -26
  506. package/dist/__tests__/model-routing-esm.test.js.map +0 -1
  507. package/dist/__tests__/model-routing.test.d.ts +0 -2
  508. package/dist/__tests__/model-routing.test.d.ts.map +0 -1
  509. package/dist/__tests__/model-routing.test.js +0 -795
  510. package/dist/__tests__/model-routing.test.js.map +0 -1
  511. package/dist/__tests__/non-claude-provider-detection.test.d.ts +0 -11
  512. package/dist/__tests__/non-claude-provider-detection.test.d.ts.map +0 -1
  513. package/dist/__tests__/non-claude-provider-detection.test.js +0 -303
  514. package/dist/__tests__/non-claude-provider-detection.test.js.map +0 -1
  515. package/dist/__tests__/notepad.test.d.ts +0 -2
  516. package/dist/__tests__/notepad.test.d.ts.map +0 -1
  517. package/dist/__tests__/notepad.test.js +0 -394
  518. package/dist/__tests__/notepad.test.js.map +0 -1
  519. package/dist/__tests__/omc-cli-rendering.test.d.ts +0 -2
  520. package/dist/__tests__/omc-cli-rendering.test.d.ts.map +0 -1
  521. package/dist/__tests__/omc-cli-rendering.test.js +0 -33
  522. package/dist/__tests__/omc-cli-rendering.test.js.map +0 -1
  523. package/dist/__tests__/omc-tools-contract.test.d.ts +0 -11
  524. package/dist/__tests__/omc-tools-contract.test.d.ts.map +0 -1
  525. package/dist/__tests__/omc-tools-contract.test.js +0 -172
  526. package/dist/__tests__/omc-tools-contract.test.js.map +0 -1
  527. package/dist/__tests__/omc-tools-server-interop.test.d.ts +0 -2
  528. package/dist/__tests__/omc-tools-server-interop.test.d.ts.map +0 -1
  529. package/dist/__tests__/omc-tools-server-interop.test.js +0 -39
  530. package/dist/__tests__/omc-tools-server-interop.test.js.map +0 -1
  531. package/dist/__tests__/omc-tools-server.test.d.ts +0 -2
  532. package/dist/__tests__/omc-tools-server.test.d.ts.map +0 -1
  533. package/dist/__tests__/omc-tools-server.test.js +0 -78
  534. package/dist/__tests__/omc-tools-server.test.js.map +0 -1
  535. package/dist/__tests__/outbox-reader-partial-lines.test.d.ts +0 -2
  536. package/dist/__tests__/outbox-reader-partial-lines.test.d.ts.map +0 -1
  537. package/dist/__tests__/outbox-reader-partial-lines.test.js +0 -49
  538. package/dist/__tests__/outbox-reader-partial-lines.test.js.map +0 -1
  539. package/dist/__tests__/package-dir-resolution-regression.test.d.ts +0 -2
  540. package/dist/__tests__/package-dir-resolution-regression.test.d.ts.map +0 -1
  541. package/dist/__tests__/package-dir-resolution-regression.test.js +0 -93
  542. package/dist/__tests__/package-dir-resolution-regression.test.js.map +0 -1
  543. package/dist/__tests__/permission-enforcement.test.d.ts +0 -2
  544. package/dist/__tests__/permission-enforcement.test.d.ts.map +0 -1
  545. package/dist/__tests__/permission-enforcement.test.js +0 -194
  546. package/dist/__tests__/permission-enforcement.test.js.map +0 -1
  547. package/dist/__tests__/pipeline-orchestrator.test.d.ts +0 -5
  548. package/dist/__tests__/pipeline-orchestrator.test.d.ts.map +0 -1
  549. package/dist/__tests__/pipeline-orchestrator.test.js +0 -244
  550. package/dist/__tests__/pipeline-orchestrator.test.js.map +0 -1
  551. package/dist/__tests__/pipeline-signal-regex-escape.test.d.ts +0 -2
  552. package/dist/__tests__/pipeline-signal-regex-escape.test.d.ts.map +0 -1
  553. package/dist/__tests__/pipeline-signal-regex-escape.test.js +0 -32
  554. package/dist/__tests__/pipeline-signal-regex-escape.test.js.map +0 -1
  555. package/dist/__tests__/plugin-setup-deps.test.d.ts +0 -2
  556. package/dist/__tests__/plugin-setup-deps.test.d.ts.map +0 -1
  557. package/dist/__tests__/plugin-setup-deps.test.js +0 -64
  558. package/dist/__tests__/plugin-setup-deps.test.js.map +0 -1
  559. package/dist/__tests__/plugin-setup-devpaths.test.d.ts +0 -2
  560. package/dist/__tests__/plugin-setup-devpaths.test.d.ts.map +0 -1
  561. package/dist/__tests__/plugin-setup-devpaths.test.js +0 -47
  562. package/dist/__tests__/plugin-setup-devpaths.test.js.map +0 -1
  563. package/dist/__tests__/pre-compact-cwd.test.d.ts +0 -2
  564. package/dist/__tests__/pre-compact-cwd.test.d.ts.map +0 -1
  565. package/dist/__tests__/pre-compact-cwd.test.js +0 -64
  566. package/dist/__tests__/pre-compact-cwd.test.js.map +0 -1
  567. package/dist/__tests__/pre-tool-agent-prefix.test.d.ts +0 -8
  568. package/dist/__tests__/pre-tool-agent-prefix.test.d.ts.map +0 -1
  569. package/dist/__tests__/pre-tool-agent-prefix.test.js +0 -131
  570. package/dist/__tests__/pre-tool-agent-prefix.test.js.map +0 -1
  571. package/dist/__tests__/pre-tool-enforcer.test.d.ts +0 -2
  572. package/dist/__tests__/pre-tool-enforcer.test.d.ts.map +0 -1
  573. package/dist/__tests__/pre-tool-enforcer.test.js +0 -331
  574. package/dist/__tests__/pre-tool-enforcer.test.js.map +0 -1
  575. package/dist/__tests__/project-memory-merge.test.d.ts +0 -2
  576. package/dist/__tests__/project-memory-merge.test.d.ts.map +0 -1
  577. package/dist/__tests__/project-memory-merge.test.js +0 -359
  578. package/dist/__tests__/project-memory-merge.test.js.map +0 -1
  579. package/dist/__tests__/prompt-injection.test.d.ts +0 -2
  580. package/dist/__tests__/prompt-injection.test.d.ts.map +0 -1
  581. package/dist/__tests__/prompt-injection.test.js +0 -214
  582. package/dist/__tests__/prompt-injection.test.js.map +0 -1
  583. package/dist/__tests__/protected-mode-regressions.test.d.ts +0 -2
  584. package/dist/__tests__/protected-mode-regressions.test.d.ts.map +0 -1
  585. package/dist/__tests__/protected-mode-regressions.test.js +0 -36
  586. package/dist/__tests__/protected-mode-regressions.test.js.map +0 -1
  587. package/dist/__tests__/providers/azure-devops.test.d.ts +0 -2
  588. package/dist/__tests__/providers/azure-devops.test.d.ts.map +0 -1
  589. package/dist/__tests__/providers/azure-devops.test.js +0 -158
  590. package/dist/__tests__/providers/azure-devops.test.js.map +0 -1
  591. package/dist/__tests__/providers/bitbucket.test.d.ts +0 -2
  592. package/dist/__tests__/providers/bitbucket.test.d.ts.map +0 -1
  593. package/dist/__tests__/providers/bitbucket.test.js +0 -184
  594. package/dist/__tests__/providers/bitbucket.test.js.map +0 -1
  595. package/dist/__tests__/providers/detection.test.d.ts +0 -2
  596. package/dist/__tests__/providers/detection.test.d.ts.map +0 -1
  597. package/dist/__tests__/providers/detection.test.js +0 -181
  598. package/dist/__tests__/providers/detection.test.js.map +0 -1
  599. package/dist/__tests__/providers/gitea.test.d.ts +0 -2
  600. package/dist/__tests__/providers/gitea.test.d.ts.map +0 -1
  601. package/dist/__tests__/providers/gitea.test.js +0 -248
  602. package/dist/__tests__/providers/gitea.test.js.map +0 -1
  603. package/dist/__tests__/providers/github.test.d.ts +0 -2
  604. package/dist/__tests__/providers/github.test.d.ts.map +0 -1
  605. package/dist/__tests__/providers/github.test.js +0 -146
  606. package/dist/__tests__/providers/github.test.js.map +0 -1
  607. package/dist/__tests__/providers/gitlab.test.d.ts +0 -2
  608. package/dist/__tests__/providers/gitlab.test.d.ts.map +0 -1
  609. package/dist/__tests__/providers/gitlab.test.js +0 -149
  610. package/dist/__tests__/providers/gitlab.test.js.map +0 -1
  611. package/dist/__tests__/purge-stale-cache.test.d.ts +0 -2
  612. package/dist/__tests__/purge-stale-cache.test.d.ts.map +0 -1
  613. package/dist/__tests__/purge-stale-cache.test.js +0 -283
  614. package/dist/__tests__/purge-stale-cache.test.js.map +0 -1
  615. package/dist/__tests__/ralph-prd-mandatory.test.d.ts +0 -2
  616. package/dist/__tests__/ralph-prd-mandatory.test.d.ts.map +0 -1
  617. package/dist/__tests__/ralph-prd-mandatory.test.js +0 -367
  618. package/dist/__tests__/ralph-prd-mandatory.test.js.map +0 -1
  619. package/dist/__tests__/ralph-prd.test.d.ts +0 -2
  620. package/dist/__tests__/ralph-prd.test.d.ts.map +0 -1
  621. package/dist/__tests__/ralph-prd.test.js +0 -308
  622. package/dist/__tests__/ralph-prd.test.js.map +0 -1
  623. package/dist/__tests__/ralph-progress.test.d.ts +0 -2
  624. package/dist/__tests__/ralph-progress.test.d.ts.map +0 -1
  625. package/dist/__tests__/ralph-progress.test.js +0 -312
  626. package/dist/__tests__/ralph-progress.test.js.map +0 -1
  627. package/dist/__tests__/rate-limit-wait/daemon-bootstrap.test.d.ts +0 -2
  628. package/dist/__tests__/rate-limit-wait/daemon-bootstrap.test.d.ts.map +0 -1
  629. package/dist/__tests__/rate-limit-wait/daemon-bootstrap.test.js +0 -98
  630. package/dist/__tests__/rate-limit-wait/daemon-bootstrap.test.js.map +0 -1
  631. package/dist/__tests__/rate-limit-wait/daemon.test.d.ts +0 -5
  632. package/dist/__tests__/rate-limit-wait/daemon.test.d.ts.map +0 -1
  633. package/dist/__tests__/rate-limit-wait/daemon.test.js +0 -321
  634. package/dist/__tests__/rate-limit-wait/daemon.test.js.map +0 -1
  635. package/dist/__tests__/rate-limit-wait/integration.test.d.ts +0 -8
  636. package/dist/__tests__/rate-limit-wait/integration.test.d.ts.map +0 -1
  637. package/dist/__tests__/rate-limit-wait/integration.test.js +0 -353
  638. package/dist/__tests__/rate-limit-wait/integration.test.js.map +0 -1
  639. package/dist/__tests__/rate-limit-wait/rate-limit-monitor.test.d.ts +0 -5
  640. package/dist/__tests__/rate-limit-wait/rate-limit-monitor.test.d.ts.map +0 -1
  641. package/dist/__tests__/rate-limit-wait/rate-limit-monitor.test.js +0 -233
  642. package/dist/__tests__/rate-limit-wait/rate-limit-monitor.test.js.map +0 -1
  643. package/dist/__tests__/rate-limit-wait/tmux-detector.test.d.ts +0 -5
  644. package/dist/__tests__/rate-limit-wait/tmux-detector.test.d.ts.map +0 -1
  645. package/dist/__tests__/rate-limit-wait/tmux-detector.test.js +0 -312
  646. package/dist/__tests__/rate-limit-wait/tmux-detector.test.js.map +0 -1
  647. package/dist/__tests__/repo-slug-dots.test.d.ts +0 -2
  648. package/dist/__tests__/repo-slug-dots.test.d.ts.map +0 -1
  649. package/dist/__tests__/repo-slug-dots.test.js +0 -24
  650. package/dist/__tests__/repo-slug-dots.test.js.map +0 -1
  651. package/dist/__tests__/resolve-node.test.d.ts +0 -8
  652. package/dist/__tests__/resolve-node.test.d.ts.map +0 -1
  653. package/dist/__tests__/resolve-node.test.js +0 -65
  654. package/dist/__tests__/resolve-node.test.js.map +0 -1
  655. package/dist/__tests__/resolve-transcript-path.test.d.ts +0 -12
  656. package/dist/__tests__/resolve-transcript-path.test.d.ts.map +0 -1
  657. package/dist/__tests__/resolve-transcript-path.test.js +0 -167
  658. package/dist/__tests__/resolve-transcript-path.test.js.map +0 -1
  659. package/dist/__tests__/routing-force-inherit.test.d.ts +0 -8
  660. package/dist/__tests__/routing-force-inherit.test.d.ts.map +0 -1
  661. package/dist/__tests__/routing-force-inherit.test.js +0 -211
  662. package/dist/__tests__/routing-force-inherit.test.js.map +0 -1
  663. package/dist/__tests__/run-cjs-graceful-fallback.test.d.ts +0 -2
  664. package/dist/__tests__/run-cjs-graceful-fallback.test.d.ts.map +0 -1
  665. package/dist/__tests__/run-cjs-graceful-fallback.test.js +0 -167
  666. package/dist/__tests__/run-cjs-graceful-fallback.test.js.map +0 -1
  667. package/dist/__tests__/runtime-task-orphan.test.d.ts +0 -2
  668. package/dist/__tests__/runtime-task-orphan.test.d.ts.map +0 -1
  669. package/dist/__tests__/runtime-task-orphan.test.js +0 -103
  670. package/dist/__tests__/runtime-task-orphan.test.js.map +0 -1
  671. package/dist/__tests__/session-history-search.test.d.ts +0 -2
  672. package/dist/__tests__/session-history-search.test.d.ts.map +0 -1
  673. package/dist/__tests__/session-history-search.test.js +0 -115
  674. package/dist/__tests__/session-history-search.test.js.map +0 -1
  675. package/dist/__tests__/session-start-cache-cleanup.test.d.ts +0 -2
  676. package/dist/__tests__/session-start-cache-cleanup.test.d.ts.map +0 -1
  677. package/dist/__tests__/session-start-cache-cleanup.test.js +0 -150
  678. package/dist/__tests__/session-start-cache-cleanup.test.js.map +0 -1
  679. package/dist/__tests__/session-start-script-context.test.d.ts +0 -2
  680. package/dist/__tests__/session-start-script-context.test.d.ts.map +0 -1
  681. package/dist/__tests__/session-start-script-context.test.js +0 -134
  682. package/dist/__tests__/session-start-script-context.test.js.map +0 -1
  683. package/dist/__tests__/session-start-timeout-cleanup.test.d.ts +0 -2
  684. package/dist/__tests__/session-start-timeout-cleanup.test.d.ts.map +0 -1
  685. package/dist/__tests__/session-start-timeout-cleanup.test.js +0 -26
  686. package/dist/__tests__/session-start-timeout-cleanup.test.js.map +0 -1
  687. package/dist/__tests__/session-summary-pid-tracking.test.d.ts +0 -2
  688. package/dist/__tests__/session-summary-pid-tracking.test.d.ts.map +0 -1
  689. package/dist/__tests__/session-summary-pid-tracking.test.js +0 -107
  690. package/dist/__tests__/session-summary-pid-tracking.test.js.map +0 -1
  691. package/dist/__tests__/setup-claude-md-script.test.d.ts +0 -2
  692. package/dist/__tests__/setup-claude-md-script.test.d.ts.map +0 -1
  693. package/dist/__tests__/setup-claude-md-script.test.js +0 -292
  694. package/dist/__tests__/setup-claude-md-script.test.js.map +0 -1
  695. package/dist/__tests__/shared-memory-concurrency.test.d.ts +0 -8
  696. package/dist/__tests__/shared-memory-concurrency.test.d.ts.map +0 -1
  697. package/dist/__tests__/shared-memory-concurrency.test.js +0 -132
  698. package/dist/__tests__/shared-memory-concurrency.test.js.map +0 -1
  699. package/dist/__tests__/shared-memory.test.d.ts +0 -2
  700. package/dist/__tests__/shared-memory.test.d.ts.map +0 -1
  701. package/dist/__tests__/shared-memory.test.js +0 -345
  702. package/dist/__tests__/shared-memory.test.js.map +0 -1
  703. package/dist/__tests__/shared-state-locking.test.d.ts +0 -10
  704. package/dist/__tests__/shared-state-locking.test.d.ts.map +0 -1
  705. package/dist/__tests__/shared-state-locking.test.js +0 -61
  706. package/dist/__tests__/shared-state-locking.test.js.map +0 -1
  707. package/dist/__tests__/skills.test.d.ts +0 -2
  708. package/dist/__tests__/skills.test.d.ts.map +0 -1
  709. package/dist/__tests__/skills.test.js +0 -372
  710. package/dist/__tests__/skills.test.js.map +0 -1
  711. package/dist/__tests__/slack-fallback-removal.test.d.ts +0 -2
  712. package/dist/__tests__/slack-fallback-removal.test.d.ts.map +0 -1
  713. package/dist/__tests__/slack-fallback-removal.test.js +0 -16
  714. package/dist/__tests__/slack-fallback-removal.test.js.map +0 -1
  715. package/dist/__tests__/slack-socket.test.d.ts +0 -5
  716. package/dist/__tests__/slack-socket.test.d.ts.map +0 -1
  717. package/dist/__tests__/slack-socket.test.js +0 -252
  718. package/dist/__tests__/slack-socket.test.js.map +0 -1
  719. package/dist/__tests__/smoke-pipeline-edge.test.d.ts +0 -8
  720. package/dist/__tests__/smoke-pipeline-edge.test.d.ts.map +0 -1
  721. package/dist/__tests__/smoke-pipeline-edge.test.js +0 -435
  722. package/dist/__tests__/smoke-pipeline-edge.test.js.map +0 -1
  723. package/dist/__tests__/smoke-slack-and-state.test.d.ts +0 -13
  724. package/dist/__tests__/smoke-slack-and-state.test.d.ts.map +0 -1
  725. package/dist/__tests__/smoke-slack-and-state.test.js +0 -632
  726. package/dist/__tests__/smoke-slack-and-state.test.js.map +0 -1
  727. package/dist/__tests__/ssrf-guard.test.d.ts +0 -2
  728. package/dist/__tests__/ssrf-guard.test.d.ts.map +0 -1
  729. package/dist/__tests__/ssrf-guard.test.js +0 -108
  730. package/dist/__tests__/ssrf-guard.test.js.map +0 -1
  731. package/dist/__tests__/standalone-server.test.d.ts +0 -2
  732. package/dist/__tests__/standalone-server.test.d.ts.map +0 -1
  733. package/dist/__tests__/standalone-server.test.js +0 -57
  734. package/dist/__tests__/standalone-server.test.js.map +0 -1
  735. package/dist/__tests__/task-continuation.test.d.ts +0 -2
  736. package/dist/__tests__/task-continuation.test.d.ts.map +0 -1
  737. package/dist/__tests__/task-continuation.test.js +0 -743
  738. package/dist/__tests__/task-continuation.test.js.map +0 -1
  739. package/dist/__tests__/team-ops-task-locking.test.d.ts +0 -2
  740. package/dist/__tests__/team-ops-task-locking.test.d.ts.map +0 -1
  741. package/dist/__tests__/team-ops-task-locking.test.js +0 -66
  742. package/dist/__tests__/team-ops-task-locking.test.js.map +0 -1
  743. package/dist/__tests__/team-server-validation.test.d.ts +0 -2
  744. package/dist/__tests__/team-server-validation.test.d.ts.map +0 -1
  745. package/dist/__tests__/team-server-validation.test.js +0 -123
  746. package/dist/__tests__/team-server-validation.test.js.map +0 -1
  747. package/dist/__tests__/team-status-failed-count.test.d.ts +0 -2
  748. package/dist/__tests__/team-status-failed-count.test.d.ts.map +0 -1
  749. package/dist/__tests__/team-status-failed-count.test.js +0 -91
  750. package/dist/__tests__/team-status-failed-count.test.js.map +0 -1
  751. package/dist/__tests__/team-status-tmux-provider.test.d.ts +0 -2
  752. package/dist/__tests__/team-status-tmux-provider.test.d.ts.map +0 -1
  753. package/dist/__tests__/team-status-tmux-provider.test.js +0 -39
  754. package/dist/__tests__/team-status-tmux-provider.test.js.map +0 -1
  755. package/dist/__tests__/tier0-contracts.test.d.ts +0 -2
  756. package/dist/__tests__/tier0-contracts.test.d.ts.map +0 -1
  757. package/dist/__tests__/tier0-contracts.test.js +0 -47
  758. package/dist/__tests__/tier0-contracts.test.js.map +0 -1
  759. package/dist/__tests__/tier0-docs-consistency.test.d.ts +0 -2
  760. package/dist/__tests__/tier0-docs-consistency.test.d.ts.map +0 -1
  761. package/dist/__tests__/tier0-docs-consistency.test.js +0 -96
  762. package/dist/__tests__/tier0-docs-consistency.test.js.map +0 -1
  763. package/dist/__tests__/tools/ast-tools.test.d.ts +0 -2
  764. package/dist/__tests__/tools/ast-tools.test.d.ts.map +0 -1
  765. package/dist/__tests__/tools/ast-tools.test.js +0 -74
  766. package/dist/__tests__/tools/ast-tools.test.js.map +0 -1
  767. package/dist/__tests__/tools/skills-tools.test.d.ts +0 -2
  768. package/dist/__tests__/tools/skills-tools.test.d.ts.map +0 -1
  769. package/dist/__tests__/tools/skills-tools.test.js +0 -63
  770. package/dist/__tests__/tools/skills-tools.test.js.map +0 -1
  771. package/dist/__tests__/tools/trace-tools.test.d.ts +0 -2
  772. package/dist/__tests__/tools/trace-tools.test.d.ts.map +0 -1
  773. package/dist/__tests__/tools/trace-tools.test.js +0 -241
  774. package/dist/__tests__/tools/trace-tools.test.js.map +0 -1
  775. package/dist/__tests__/types.test.d.ts +0 -2
  776. package/dist/__tests__/types.test.d.ts.map +0 -1
  777. package/dist/__tests__/types.test.js +0 -78
  778. package/dist/__tests__/types.test.js.map +0 -1
  779. package/dist/__tests__/version-helper.test.d.ts +0 -2
  780. package/dist/__tests__/version-helper.test.d.ts.map +0 -1
  781. package/dist/__tests__/version-helper.test.js +0 -37
  782. package/dist/__tests__/version-helper.test.js.map +0 -1
  783. package/dist/__tests__/visual-verdict-skill.test.d.ts +0 -2
  784. package/dist/__tests__/visual-verdict-skill.test.d.ts.map +0 -1
  785. package/dist/__tests__/visual-verdict-skill.test.js +0 -26
  786. package/dist/__tests__/visual-verdict-skill.test.js.map +0 -1
  787. package/dist/__tests__/webhook-timeout-cleanup.test.d.ts +0 -2
  788. package/dist/__tests__/webhook-timeout-cleanup.test.d.ts.map +0 -1
  789. package/dist/__tests__/webhook-timeout-cleanup.test.js +0 -18
  790. package/dist/__tests__/webhook-timeout-cleanup.test.js.map +0 -1
  791. package/dist/__tests__/worktree-metadata-locking.test.d.ts +0 -2
  792. package/dist/__tests__/worktree-metadata-locking.test.d.ts.map +0 -1
  793. package/dist/__tests__/worktree-metadata-locking.test.js +0 -51
  794. package/dist/__tests__/worktree-metadata-locking.test.js.map +0 -1
  795. package/dist/agents/analyst.d.ts +0 -11
  796. package/dist/agents/analyst.d.ts.map +0 -1
  797. package/dist/agents/analyst.js +0 -40
  798. package/dist/agents/analyst.js.map +0 -1
  799. package/dist/agents/architect.d.ts +0 -12
  800. package/dist/agents/architect.d.ts.map +0 -1
  801. package/dist/agents/architect.js +0 -44
  802. package/dist/agents/architect.js.map +0 -1
  803. package/dist/agents/critic.d.ts +0 -11
  804. package/dist/agents/critic.d.ts.map +0 -1
  805. package/dist/agents/critic.js +0 -39
  806. package/dist/agents/critic.js.map +0 -1
  807. package/dist/agents/definitions.d.ts +0 -90
  808. package/dist/agents/definitions.d.ts.map +0 -1
  809. package/dist/agents/definitions.js +0 -353
  810. package/dist/agents/definitions.js.map +0 -1
  811. package/dist/agents/designer.d.ts +0 -11
  812. package/dist/agents/designer.d.ts.map +0 -1
  813. package/dist/agents/designer.js +0 -44
  814. package/dist/agents/designer.js.map +0 -1
  815. package/dist/agents/document-specialist.d.ts +0 -12
  816. package/dist/agents/document-specialist.d.ts.map +0 -1
  817. package/dist/agents/document-specialist.js +0 -65
  818. package/dist/agents/document-specialist.js.map +0 -1
  819. package/dist/agents/executor.d.ts +0 -13
  820. package/dist/agents/executor.d.ts.map +0 -1
  821. package/dist/agents/executor.js +0 -40
  822. package/dist/agents/executor.js.map +0 -1
  823. package/dist/agents/explore.d.ts +0 -12
  824. package/dist/agents/explore.d.ts.map +0 -1
  825. package/dist/agents/explore.js +0 -42
  826. package/dist/agents/explore.js.map +0 -1
  827. package/dist/agents/index.d.ts +0 -25
  828. package/dist/agents/index.d.ts.map +0 -1
  829. package/dist/agents/index.js +0 -32
  830. package/dist/agents/index.js.map +0 -1
  831. package/dist/agents/planner.d.ts +0 -11
  832. package/dist/agents/planner.d.ts.map +0 -1
  833. package/dist/agents/planner.js +0 -39
  834. package/dist/agents/planner.js.map +0 -1
  835. package/dist/agents/prompt-helpers.d.ts +0 -74
  836. package/dist/agents/prompt-helpers.d.ts.map +0 -1
  837. package/dist/agents/prompt-helpers.js +0 -192
  838. package/dist/agents/prompt-helpers.js.map +0 -1
  839. package/dist/agents/prompt-sections/index.d.ts +0 -44
  840. package/dist/agents/prompt-sections/index.d.ts.map +0 -1
  841. package/dist/agents/prompt-sections/index.js +0 -200
  842. package/dist/agents/prompt-sections/index.js.map +0 -1
  843. package/dist/agents/qa-tester.d.ts +0 -16
  844. package/dist/agents/qa-tester.d.ts.map +0 -1
  845. package/dist/agents/qa-tester.js +0 -45
  846. package/dist/agents/qa-tester.js.map +0 -1
  847. package/dist/agents/scientist.d.ts +0 -16
  848. package/dist/agents/scientist.d.ts.map +0 -1
  849. package/dist/agents/scientist.js +0 -53
  850. package/dist/agents/scientist.js.map +0 -1
  851. package/dist/agents/tracer.d.ts +0 -11
  852. package/dist/agents/tracer.d.ts.map +0 -1
  853. package/dist/agents/tracer.js +0 -40
  854. package/dist/agents/tracer.js.map +0 -1
  855. package/dist/agents/types.d.ts +0 -127
  856. package/dist/agents/types.d.ts.map +0 -1
  857. package/dist/agents/types.js +0 -38
  858. package/dist/agents/types.js.map +0 -1
  859. package/dist/agents/utils.d.ts +0 -76
  860. package/dist/agents/utils.d.ts.map +0 -1
  861. package/dist/agents/utils.js +0 -308
  862. package/dist/agents/utils.js.map +0 -1
  863. package/dist/agents/writer.d.ts +0 -11
  864. package/dist/agents/writer.d.ts.map +0 -1
  865. package/dist/agents/writer.js +0 -40
  866. package/dist/agents/writer.js.map +0 -1
  867. package/dist/autoresearch/__tests__/contracts.test.d.ts +0 -2
  868. package/dist/autoresearch/__tests__/contracts.test.d.ts.map +0 -1
  869. package/dist/autoresearch/__tests__/contracts.test.js +0 -90
  870. package/dist/autoresearch/__tests__/contracts.test.js.map +0 -1
  871. package/dist/autoresearch/__tests__/runtime-parity-extra.test.d.ts +0 -2
  872. package/dist/autoresearch/__tests__/runtime-parity-extra.test.d.ts.map +0 -1
  873. package/dist/autoresearch/__tests__/runtime-parity-extra.test.js +0 -352
  874. package/dist/autoresearch/__tests__/runtime-parity-extra.test.js.map +0 -1
  875. package/dist/autoresearch/__tests__/runtime.test.d.ts +0 -2
  876. package/dist/autoresearch/__tests__/runtime.test.d.ts.map +0 -1
  877. package/dist/autoresearch/__tests__/runtime.test.js +0 -210
  878. package/dist/autoresearch/__tests__/runtime.test.js.map +0 -1
  879. package/dist/autoresearch/__tests__/setup-contract.test.d.ts +0 -2
  880. package/dist/autoresearch/__tests__/setup-contract.test.d.ts.map +0 -1
  881. package/dist/autoresearch/__tests__/setup-contract.test.js +0 -57
  882. package/dist/autoresearch/__tests__/setup-contract.test.js.map +0 -1
  883. package/dist/autoresearch/contracts.d.ts +0 -31
  884. package/dist/autoresearch/contracts.d.ts.map +0 -1
  885. package/dist/autoresearch/contracts.js +0 -189
  886. package/dist/autoresearch/contracts.js.map +0 -1
  887. package/dist/autoresearch/runtime.d.ts +0 -137
  888. package/dist/autoresearch/runtime.d.ts.map +0 -1
  889. package/dist/autoresearch/runtime.js +0 -1103
  890. package/dist/autoresearch/runtime.js.map +0 -1
  891. package/dist/autoresearch/setup-contract.d.ts +0 -18
  892. package/dist/autoresearch/setup-contract.d.ts.map +0 -1
  893. package/dist/autoresearch/setup-contract.js +0 -96
  894. package/dist/autoresearch/setup-contract.js.map +0 -1
  895. package/dist/cli/__tests__/ask.test.d.ts +0 -2
  896. package/dist/cli/__tests__/ask.test.d.ts.map +0 -1
  897. package/dist/cli/__tests__/ask.test.js +0 -431
  898. package/dist/cli/__tests__/ask.test.js.map +0 -1
  899. package/dist/cli/__tests__/autoresearch-guided.test.d.ts +0 -2
  900. package/dist/cli/__tests__/autoresearch-guided.test.d.ts.map +0 -1
  901. package/dist/cli/__tests__/autoresearch-guided.test.js +0 -389
  902. package/dist/cli/__tests__/autoresearch-guided.test.js.map +0 -1
  903. package/dist/cli/__tests__/autoresearch-intake.test.d.ts +0 -2
  904. package/dist/cli/__tests__/autoresearch-intake.test.d.ts.map +0 -1
  905. package/dist/cli/__tests__/autoresearch-intake.test.js +0 -131
  906. package/dist/cli/__tests__/autoresearch-intake.test.js.map +0 -1
  907. package/dist/cli/__tests__/autoresearch-setup-session.test.d.ts +0 -2
  908. package/dist/cli/__tests__/autoresearch-setup-session.test.d.ts.map +0 -1
  909. package/dist/cli/__tests__/autoresearch-setup-session.test.js +0 -73
  910. package/dist/cli/__tests__/autoresearch-setup-session.test.js.map +0 -1
  911. package/dist/cli/__tests__/autoresearch.test.d.ts +0 -2
  912. package/dist/cli/__tests__/autoresearch.test.d.ts.map +0 -1
  913. package/dist/cli/__tests__/autoresearch.test.js +0 -148
  914. package/dist/cli/__tests__/autoresearch.test.js.map +0 -1
  915. package/dist/cli/__tests__/cli-boot.test.d.ts +0 -8
  916. package/dist/cli/__tests__/cli-boot.test.d.ts.map +0 -1
  917. package/dist/cli/__tests__/cli-boot.test.js +0 -82
  918. package/dist/cli/__tests__/cli-boot.test.js.map +0 -1
  919. package/dist/cli/__tests__/hud-watch.test.d.ts +0 -2
  920. package/dist/cli/__tests__/hud-watch.test.d.ts.map +0 -1
  921. package/dist/cli/__tests__/hud-watch.test.js +0 -56
  922. package/dist/cli/__tests__/hud-watch.test.js.map +0 -1
  923. package/dist/cli/__tests__/launch.test.d.ts +0 -9
  924. package/dist/cli/__tests__/launch.test.d.ts.map +0 -1
  925. package/dist/cli/__tests__/launch.test.js +0 -727
  926. package/dist/cli/__tests__/launch.test.js.map +0 -1
  927. package/dist/cli/__tests__/session-search-help.test.d.ts +0 -2
  928. package/dist/cli/__tests__/session-search-help.test.d.ts.map +0 -1
  929. package/dist/cli/__tests__/session-search-help.test.js +0 -13
  930. package/dist/cli/__tests__/session-search-help.test.js.map +0 -1
  931. package/dist/cli/__tests__/session-search.test.d.ts +0 -2
  932. package/dist/cli/__tests__/session-search.test.d.ts.map +0 -1
  933. package/dist/cli/__tests__/session-search.test.js +0 -72
  934. package/dist/cli/__tests__/session-search.test.js.map +0 -1
  935. package/dist/cli/__tests__/team-command-branding.test.d.ts +0 -2
  936. package/dist/cli/__tests__/team-command-branding.test.d.ts.map +0 -1
  937. package/dist/cli/__tests__/team-command-branding.test.js +0 -14
  938. package/dist/cli/__tests__/team-command-branding.test.js.map +0 -1
  939. package/dist/cli/__tests__/team-help.test.d.ts +0 -2
  940. package/dist/cli/__tests__/team-help.test.d.ts.map +0 -1
  941. package/dist/cli/__tests__/team-help.test.js +0 -19
  942. package/dist/cli/__tests__/team-help.test.js.map +0 -1
  943. package/dist/cli/__tests__/team-runtime-boundary.test.d.ts +0 -2
  944. package/dist/cli/__tests__/team-runtime-boundary.test.d.ts.map +0 -1
  945. package/dist/cli/__tests__/team-runtime-boundary.test.js +0 -11
  946. package/dist/cli/__tests__/team-runtime-boundary.test.js.map +0 -1
  947. package/dist/cli/__tests__/team.test.d.ts +0 -2
  948. package/dist/cli/__tests__/team.test.d.ts.map +0 -1
  949. package/dist/cli/__tests__/team.test.js +0 -629
  950. package/dist/cli/__tests__/team.test.js.map +0 -1
  951. package/dist/cli/__tests__/teleport-help.test.d.ts +0 -2
  952. package/dist/cli/__tests__/teleport-help.test.d.ts.map +0 -1
  953. package/dist/cli/__tests__/teleport-help.test.js +0 -17
  954. package/dist/cli/__tests__/teleport-help.test.js.map +0 -1
  955. package/dist/cli/__tests__/tmux-utils.test.d.ts +0 -11
  956. package/dist/cli/__tests__/tmux-utils.test.d.ts.map +0 -1
  957. package/dist/cli/__tests__/tmux-utils.test.js +0 -185
  958. package/dist/cli/__tests__/tmux-utils.test.js.map +0 -1
  959. package/dist/cli/ask.d.ts +0 -13
  960. package/dist/cli/ask.d.ts.map +0 -1
  961. package/dist/cli/ask.js +0 -202
  962. package/dist/cli/ask.js.map +0 -1
  963. package/dist/cli/autoresearch-guided.d.ts +0 -37
  964. package/dist/cli/autoresearch-guided.d.ts.map +0 -1
  965. package/dist/cli/autoresearch-guided.js +0 -312
  966. package/dist/cli/autoresearch-guided.js.map +0 -1
  967. package/dist/cli/autoresearch-intake.d.ts +0 -60
  968. package/dist/cli/autoresearch-intake.d.ts.map +0 -1
  969. package/dist/cli/autoresearch-intake.js +0 -325
  970. package/dist/cli/autoresearch-intake.js.map +0 -1
  971. package/dist/cli/autoresearch-setup-session.d.ts +0 -15
  972. package/dist/cli/autoresearch-setup-session.d.ts.map +0 -1
  973. package/dist/cli/autoresearch-setup-session.js +0 -133
  974. package/dist/cli/autoresearch-setup-session.js.map +0 -1
  975. package/dist/cli/autoresearch.d.ts +0 -19
  976. package/dist/cli/autoresearch.d.ts.map +0 -1
  977. package/dist/cli/autoresearch.js +0 -330
  978. package/dist/cli/autoresearch.js.map +0 -1
  979. package/dist/cli/commands/__tests__/team.test.d.ts +0 -2
  980. package/dist/cli/commands/__tests__/team.test.d.ts.map +0 -1
  981. package/dist/cli/commands/__tests__/team.test.js +0 -314
  982. package/dist/cli/commands/__tests__/team.test.js.map +0 -1
  983. package/dist/cli/commands/__tests__/teleport.test.d.ts +0 -2
  984. package/dist/cli/commands/__tests__/teleport.test.d.ts.map +0 -1
  985. package/dist/cli/commands/__tests__/teleport.test.js +0 -110
  986. package/dist/cli/commands/__tests__/teleport.test.js.map +0 -1
  987. package/dist/cli/commands/doctor-conflicts.d.ts +0 -74
  988. package/dist/cli/commands/doctor-conflicts.d.ts.map +0 -1
  989. package/dist/cli/commands/doctor-conflicts.js +0 -461
  990. package/dist/cli/commands/doctor-conflicts.js.map +0 -1
  991. package/dist/cli/commands/ralphthon.d.ts +0 -30
  992. package/dist/cli/commands/ralphthon.d.ts.map +0 -1
  993. package/dist/cli/commands/ralphthon.js +0 -361
  994. package/dist/cli/commands/ralphthon.js.map +0 -1
  995. package/dist/cli/commands/session-search.d.ts +0 -18
  996. package/dist/cli/commands/session-search.d.ts.map +0 -1
  997. package/dist/cli/commands/session-search.js +0 -47
  998. package/dist/cli/commands/session-search.js.map +0 -1
  999. package/dist/cli/commands/team.d.ts +0 -69
  1000. package/dist/cli/commands/team.d.ts.map +0 -1
  1001. package/dist/cli/commands/team.js +0 -739
  1002. package/dist/cli/commands/team.js.map +0 -1
  1003. package/dist/cli/commands/teleport.d.ts +0 -38
  1004. package/dist/cli/commands/teleport.d.ts.map +0 -1
  1005. package/dist/cli/commands/teleport.js +0 -555
  1006. package/dist/cli/commands/teleport.js.map +0 -1
  1007. package/dist/cli/commands/wait.d.ts +0 -52
  1008. package/dist/cli/commands/wait.d.ts.map +0 -1
  1009. package/dist/cli/commands/wait.js +0 -240
  1010. package/dist/cli/commands/wait.js.map +0 -1
  1011. package/dist/cli/hud-watch.d.ts +0 -15
  1012. package/dist/cli/hud-watch.d.ts.map +0 -1
  1013. package/dist/cli/hud-watch.js +0 -37
  1014. package/dist/cli/hud-watch.js.map +0 -1
  1015. package/dist/cli/index.d.ts +0 -13
  1016. package/dist/cli/index.d.ts.map +0 -1
  1017. package/dist/cli/index.js +0 -1419
  1018. package/dist/cli/index.js.map +0 -1
  1019. package/dist/cli/interop.d.ts +0 -29
  1020. package/dist/cli/interop.d.ts.map +0 -1
  1021. package/dist/cli/interop.js +0 -141
  1022. package/dist/cli/interop.js.map +0 -1
  1023. package/dist/cli/launch.d.ts +0 -138
  1024. package/dist/cli/launch.d.ts.map +0 -1
  1025. package/dist/cli/launch.js +0 -438
  1026. package/dist/cli/launch.js.map +0 -1
  1027. package/dist/cli/team.d.ts +0 -78
  1028. package/dist/cli/team.d.ts.map +0 -1
  1029. package/dist/cli/team.js +0 -991
  1030. package/dist/cli/team.js.map +0 -1
  1031. package/dist/cli/tmux-utils.d.ts +0 -82
  1032. package/dist/cli/tmux-utils.d.ts.map +0 -1
  1033. package/dist/cli/tmux-utils.js +0 -206
  1034. package/dist/cli/tmux-utils.js.map +0 -1
  1035. package/dist/cli/utils/formatting.d.ts +0 -22
  1036. package/dist/cli/utils/formatting.d.ts.map +0 -1
  1037. package/dist/cli/utils/formatting.js +0 -70
  1038. package/dist/cli/utils/formatting.js.map +0 -1
  1039. package/dist/cli/win32-warning.d.ts +0 -7
  1040. package/dist/cli/win32-warning.d.ts.map +0 -1
  1041. package/dist/cli/win32-warning.js +0 -29
  1042. package/dist/cli/win32-warning.js.map +0 -1
  1043. package/dist/commands/index.d.ts +0 -78
  1044. package/dist/commands/index.d.ts.map +0 -1
  1045. package/dist/commands/index.js +0 -148
  1046. package/dist/commands/index.js.map +0 -1
  1047. package/dist/config/__tests__/loader.test.d.ts +0 -2
  1048. package/dist/config/__tests__/loader.test.d.ts.map +0 -1
  1049. package/dist/config/__tests__/loader.test.js +0 -199
  1050. package/dist/config/__tests__/loader.test.js.map +0 -1
  1051. package/dist/config/__tests__/models.test.d.ts +0 -2
  1052. package/dist/config/__tests__/models.test.d.ts.map +0 -1
  1053. package/dist/config/__tests__/models.test.js +0 -260
  1054. package/dist/config/__tests__/models.test.js.map +0 -1
  1055. package/dist/config/__tests__/plan-output.test.d.ts +0 -2
  1056. package/dist/config/__tests__/plan-output.test.d.ts.map +0 -1
  1057. package/dist/config/__tests__/plan-output.test.js +0 -41
  1058. package/dist/config/__tests__/plan-output.test.js.map +0 -1
  1059. package/dist/config/__tests__/test-helpers.d.ts +0 -3
  1060. package/dist/config/__tests__/test-helpers.d.ts.map +0 -1
  1061. package/dist/config/__tests__/test-helpers.js +0 -19
  1062. package/dist/config/__tests__/test-helpers.js.map +0 -1
  1063. package/dist/config/index.d.ts +0 -6
  1064. package/dist/config/index.d.ts.map +0 -1
  1065. package/dist/config/index.js +0 -6
  1066. package/dist/config/index.js.map +0 -1
  1067. package/dist/config/loader.d.ts +0 -59
  1068. package/dist/config/loader.d.ts.map +0 -1
  1069. package/dist/config/loader.js +0 -751
  1070. package/dist/config/loader.js.map +0 -1
  1071. package/dist/config/models.d.ts +0 -107
  1072. package/dist/config/models.d.ts.map +0 -1
  1073. package/dist/config/models.js +0 -286
  1074. package/dist/config/models.js.map +0 -1
  1075. package/dist/config/plan-output.d.ts +0 -12
  1076. package/dist/config/plan-output.d.ts.map +0 -1
  1077. package/dist/config/plan-output.js +0 -67
  1078. package/dist/config/plan-output.js.map +0 -1
  1079. package/dist/constants/index.d.ts +0 -5
  1080. package/dist/constants/index.d.ts.map +0 -1
  1081. package/dist/constants/index.js +0 -5
  1082. package/dist/constants/index.js.map +0 -1
  1083. package/dist/constants/names.d.ts +0 -42
  1084. package/dist/constants/names.d.ts.map +0 -1
  1085. package/dist/constants/names.js +0 -42
  1086. package/dist/constants/names.js.map +0 -1
  1087. package/dist/features/auto-update.d.ts +0 -314
  1088. package/dist/features/auto-update.d.ts.map +0 -1
  1089. package/dist/features/auto-update.js +0 -939
  1090. package/dist/features/auto-update.js.map +0 -1
  1091. package/dist/features/background-agent/concurrency.d.ts +0 -53
  1092. package/dist/features/background-agent/concurrency.d.ts.map +0 -1
  1093. package/dist/features/background-agent/concurrency.js +0 -121
  1094. package/dist/features/background-agent/concurrency.js.map +0 -1
  1095. package/dist/features/background-agent/index.d.ts +0 -12
  1096. package/dist/features/background-agent/index.d.ts.map +0 -1
  1097. package/dist/features/background-agent/index.js +0 -12
  1098. package/dist/features/background-agent/index.js.map +0 -1
  1099. package/dist/features/background-agent/manager.d.ts +0 -144
  1100. package/dist/features/background-agent/manager.d.ts.map +0 -1
  1101. package/dist/features/background-agent/manager.js +0 -494
  1102. package/dist/features/background-agent/manager.js.map +0 -1
  1103. package/dist/features/background-agent/types.d.ts +0 -128
  1104. package/dist/features/background-agent/types.d.ts.map +0 -1
  1105. package/dist/features/background-agent/types.js +0 -9
  1106. package/dist/features/background-agent/types.js.map +0 -1
  1107. package/dist/features/background-tasks.d.ts +0 -99
  1108. package/dist/features/background-tasks.d.ts.map +0 -1
  1109. package/dist/features/background-tasks.js +0 -265
  1110. package/dist/features/background-tasks.js.map +0 -1
  1111. package/dist/features/boulder-state/constants.d.ts +0 -20
  1112. package/dist/features/boulder-state/constants.d.ts.map +0 -1
  1113. package/dist/features/boulder-state/constants.js +0 -21
  1114. package/dist/features/boulder-state/constants.js.map +0 -1
  1115. package/dist/features/boulder-state/index.d.ts +0 -12
  1116. package/dist/features/boulder-state/index.d.ts.map +0 -1
  1117. package/dist/features/boulder-state/index.js +0 -13
  1118. package/dist/features/boulder-state/index.js.map +0 -1
  1119. package/dist/features/boulder-state/storage.d.ts +0 -58
  1120. package/dist/features/boulder-state/storage.d.ts.map +0 -1
  1121. package/dist/features/boulder-state/storage.js +0 -182
  1122. package/dist/features/boulder-state/storage.js.map +0 -1
  1123. package/dist/features/boulder-state/types.d.ts +0 -52
  1124. package/dist/features/boulder-state/types.d.ts.map +0 -1
  1125. package/dist/features/boulder-state/types.js +0 -10
  1126. package/dist/features/boulder-state/types.js.map +0 -1
  1127. package/dist/features/builtin-skills/index.d.ts +0 -10
  1128. package/dist/features/builtin-skills/index.d.ts.map +0 -1
  1129. package/dist/features/builtin-skills/index.js +0 -10
  1130. package/dist/features/builtin-skills/index.js.map +0 -1
  1131. package/dist/features/builtin-skills/runtime-guidance.d.ts +0 -9
  1132. package/dist/features/builtin-skills/runtime-guidance.d.ts.map +0 -1
  1133. package/dist/features/builtin-skills/runtime-guidance.js +0 -35
  1134. package/dist/features/builtin-skills/runtime-guidance.js.map +0 -1
  1135. package/dist/features/builtin-skills/skills.d.ts +0 -38
  1136. package/dist/features/builtin-skills/skills.d.ts.map +0 -1
  1137. package/dist/features/builtin-skills/skills.js +0 -194
  1138. package/dist/features/builtin-skills/skills.js.map +0 -1
  1139. package/dist/features/builtin-skills/types.d.ts +0 -71
  1140. package/dist/features/builtin-skills/types.d.ts.map +0 -1
  1141. package/dist/features/builtin-skills/types.js +0 -9
  1142. package/dist/features/builtin-skills/types.js.map +0 -1
  1143. package/dist/features/context-injector/collector.d.ts +0 -56
  1144. package/dist/features/context-injector/collector.d.ts.map +0 -1
  1145. package/dist/features/context-injector/collector.js +0 -122
  1146. package/dist/features/context-injector/collector.js.map +0 -1
  1147. package/dist/features/context-injector/index.d.ts +0 -12
  1148. package/dist/features/context-injector/index.d.ts.map +0 -1
  1149. package/dist/features/context-injector/index.js +0 -13
  1150. package/dist/features/context-injector/index.js.map +0 -1
  1151. package/dist/features/context-injector/injector.d.ts +0 -47
  1152. package/dist/features/context-injector/injector.d.ts.map +0 -1
  1153. package/dist/features/context-injector/injector.js +0 -103
  1154. package/dist/features/context-injector/injector.js.map +0 -1
  1155. package/dist/features/context-injector/types.d.ts +0 -103
  1156. package/dist/features/context-injector/types.d.ts.map +0 -1
  1157. package/dist/features/context-injector/types.js +0 -11
  1158. package/dist/features/context-injector/types.js.map +0 -1
  1159. package/dist/features/continuation-enforcement.d.ts +0 -36
  1160. package/dist/features/continuation-enforcement.d.ts.map +0 -1
  1161. package/dist/features/continuation-enforcement.js +0 -176
  1162. package/dist/features/continuation-enforcement.js.map +0 -1
  1163. package/dist/features/delegation-categories/__tests__/index.test.d.ts +0 -2
  1164. package/dist/features/delegation-categories/__tests__/index.test.d.ts.map +0 -1
  1165. package/dist/features/delegation-categories/__tests__/index.test.js +0 -19
  1166. package/dist/features/delegation-categories/__tests__/index.test.js.map +0 -1
  1167. package/dist/features/delegation-categories/index.d.ts +0 -116
  1168. package/dist/features/delegation-categories/index.d.ts.map +0 -1
  1169. package/dist/features/delegation-categories/index.js +0 -287
  1170. package/dist/features/delegation-categories/index.js.map +0 -1
  1171. package/dist/features/delegation-categories/test-categories.d.ts +0 -7
  1172. package/dist/features/delegation-categories/test-categories.d.ts.map +0 -1
  1173. package/dist/features/delegation-categories/test-categories.js +0 -88
  1174. package/dist/features/delegation-categories/test-categories.js.map +0 -1
  1175. package/dist/features/delegation-categories/types.d.ts +0 -51
  1176. package/dist/features/delegation-categories/types.d.ts.map +0 -1
  1177. package/dist/features/delegation-categories/types.js +0 -8
  1178. package/dist/features/delegation-categories/types.js.map +0 -1
  1179. package/dist/features/delegation-enforcer.d.ts +0 -69
  1180. package/dist/features/delegation-enforcer.d.ts.map +0 -1
  1181. package/dist/features/delegation-enforcer.js +0 -237
  1182. package/dist/features/delegation-enforcer.js.map +0 -1
  1183. package/dist/features/delegation-routing/__tests__/resolver.test.d.ts +0 -2
  1184. package/dist/features/delegation-routing/__tests__/resolver.test.d.ts.map +0 -1
  1185. package/dist/features/delegation-routing/__tests__/resolver.test.js +0 -346
  1186. package/dist/features/delegation-routing/__tests__/resolver.test.js.map +0 -1
  1187. package/dist/features/delegation-routing/index.d.ts +0 -10
  1188. package/dist/features/delegation-routing/index.d.ts.map +0 -1
  1189. package/dist/features/delegation-routing/index.js +0 -11
  1190. package/dist/features/delegation-routing/index.js.map +0 -1
  1191. package/dist/features/delegation-routing/resolver.d.ts +0 -24
  1192. package/dist/features/delegation-routing/resolver.d.ts.map +0 -1
  1193. package/dist/features/delegation-routing/resolver.js +0 -131
  1194. package/dist/features/delegation-routing/resolver.js.map +0 -1
  1195. package/dist/features/delegation-routing/types.d.ts +0 -29
  1196. package/dist/features/delegation-routing/types.d.ts.map +0 -1
  1197. package/dist/features/delegation-routing/types.js +0 -72
  1198. package/dist/features/delegation-routing/types.js.map +0 -1
  1199. package/dist/features/index.d.ts +0 -18
  1200. package/dist/features/index.d.ts.map +0 -1
  1201. package/dist/features/index.js +0 -81
  1202. package/dist/features/index.js.map +0 -1
  1203. package/dist/features/magic-keywords.d.ts +0 -28
  1204. package/dist/features/magic-keywords.d.ts.map +0 -1
  1205. package/dist/features/magic-keywords.js +0 -451
  1206. package/dist/features/magic-keywords.js.map +0 -1
  1207. package/dist/features/model-routing/__tests__/index.test.d.ts +0 -2
  1208. package/dist/features/model-routing/__tests__/index.test.d.ts.map +0 -1
  1209. package/dist/features/model-routing/__tests__/index.test.js +0 -21
  1210. package/dist/features/model-routing/__tests__/index.test.js.map +0 -1
  1211. package/dist/features/model-routing/index.d.ts +0 -34
  1212. package/dist/features/model-routing/index.d.ts.map +0 -1
  1213. package/dist/features/model-routing/index.js +0 -49
  1214. package/dist/features/model-routing/index.js.map +0 -1
  1215. package/dist/features/model-routing/prompts/haiku.d.ts +0 -54
  1216. package/dist/features/model-routing/prompts/haiku.d.ts.map +0 -1
  1217. package/dist/features/model-routing/prompts/haiku.js +0 -141
  1218. package/dist/features/model-routing/prompts/haiku.js.map +0 -1
  1219. package/dist/features/model-routing/prompts/index.d.ts +0 -47
  1220. package/dist/features/model-routing/prompts/index.d.ts.map +0 -1
  1221. package/dist/features/model-routing/prompts/index.js +0 -122
  1222. package/dist/features/model-routing/prompts/index.js.map +0 -1
  1223. package/dist/features/model-routing/prompts/opus.d.ts +0 -34
  1224. package/dist/features/model-routing/prompts/opus.d.ts.map +0 -1
  1225. package/dist/features/model-routing/prompts/opus.js +0 -153
  1226. package/dist/features/model-routing/prompts/opus.js.map +0 -1
  1227. package/dist/features/model-routing/prompts/sonnet.d.ts +0 -38
  1228. package/dist/features/model-routing/prompts/sonnet.d.ts.map +0 -1
  1229. package/dist/features/model-routing/prompts/sonnet.js +0 -149
  1230. package/dist/features/model-routing/prompts/sonnet.js.map +0 -1
  1231. package/dist/features/model-routing/router.d.ts +0 -78
  1232. package/dist/features/model-routing/router.d.ts.map +0 -1
  1233. package/dist/features/model-routing/router.js +0 -271
  1234. package/dist/features/model-routing/router.js.map +0 -1
  1235. package/dist/features/model-routing/rules.d.ts +0 -32
  1236. package/dist/features/model-routing/rules.d.ts.map +0 -1
  1237. package/dist/features/model-routing/rules.js +0 -216
  1238. package/dist/features/model-routing/rules.js.map +0 -1
  1239. package/dist/features/model-routing/scorer.d.ts +0 -35
  1240. package/dist/features/model-routing/scorer.d.ts.map +0 -1
  1241. package/dist/features/model-routing/scorer.js +0 -241
  1242. package/dist/features/model-routing/scorer.js.map +0 -1
  1243. package/dist/features/model-routing/signals.d.ts +0 -26
  1244. package/dist/features/model-routing/signals.d.ts.map +0 -1
  1245. package/dist/features/model-routing/signals.js +0 -283
  1246. package/dist/features/model-routing/signals.js.map +0 -1
  1247. package/dist/features/model-routing/types.d.ts +0 -206
  1248. package/dist/features/model-routing/types.d.ts.map +0 -1
  1249. package/dist/features/model-routing/types.js +0 -83
  1250. package/dist/features/model-routing/types.js.map +0 -1
  1251. package/dist/features/notepad-wisdom/extractor.d.ts +0 -30
  1252. package/dist/features/notepad-wisdom/extractor.d.ts.map +0 -1
  1253. package/dist/features/notepad-wisdom/extractor.js +0 -68
  1254. package/dist/features/notepad-wisdom/extractor.js.map +0 -1
  1255. package/dist/features/notepad-wisdom/index.d.ts +0 -39
  1256. package/dist/features/notepad-wisdom/index.d.ts.map +0 -1
  1257. package/dist/features/notepad-wisdom/index.js +0 -169
  1258. package/dist/features/notepad-wisdom/index.js.map +0 -1
  1259. package/dist/features/notepad-wisdom/types.d.ts +0 -18
  1260. package/dist/features/notepad-wisdom/types.d.ts.map +0 -1
  1261. package/dist/features/notepad-wisdom/types.js +0 -7
  1262. package/dist/features/notepad-wisdom/types.js.map +0 -1
  1263. package/dist/features/rate-limit-wait/daemon.d.ts +0 -57
  1264. package/dist/features/rate-limit-wait/daemon.d.ts.map +0 -1
  1265. package/dist/features/rate-limit-wait/daemon.js +0 -646
  1266. package/dist/features/rate-limit-wait/daemon.js.map +0 -1
  1267. package/dist/features/rate-limit-wait/index.d.ts +0 -16
  1268. package/dist/features/rate-limit-wait/index.d.ts.map +0 -1
  1269. package/dist/features/rate-limit-wait/index.js +0 -18
  1270. package/dist/features/rate-limit-wait/index.js.map +0 -1
  1271. package/dist/features/rate-limit-wait/rate-limit-monitor.d.ts +0 -31
  1272. package/dist/features/rate-limit-wait/rate-limit-monitor.d.ts.map +0 -1
  1273. package/dist/features/rate-limit-wait/rate-limit-monitor.js +0 -147
  1274. package/dist/features/rate-limit-wait/rate-limit-monitor.js.map +0 -1
  1275. package/dist/features/rate-limit-wait/tmux-detector.d.ts +0 -60
  1276. package/dist/features/rate-limit-wait/tmux-detector.d.ts.map +0 -1
  1277. package/dist/features/rate-limit-wait/tmux-detector.js +0 -317
  1278. package/dist/features/rate-limit-wait/tmux-detector.js.map +0 -1
  1279. package/dist/features/rate-limit-wait/types.d.ts +0 -136
  1280. package/dist/features/rate-limit-wait/types.d.ts.map +0 -1
  1281. package/dist/features/rate-limit-wait/types.js +0 -8
  1282. package/dist/features/rate-limit-wait/types.js.map +0 -1
  1283. package/dist/features/session-history-search/index.d.ts +0 -6
  1284. package/dist/features/session-history-search/index.d.ts.map +0 -1
  1285. package/dist/features/session-history-search/index.js +0 -480
  1286. package/dist/features/session-history-search/index.js.map +0 -1
  1287. package/dist/features/session-history-search/types.d.ts +0 -36
  1288. package/dist/features/session-history-search/types.d.ts.map +0 -1
  1289. package/dist/features/session-history-search/types.js +0 -2
  1290. package/dist/features/session-history-search/types.js.map +0 -1
  1291. package/dist/features/state-manager/__tests__/cache.test.d.ts +0 -2
  1292. package/dist/features/state-manager/__tests__/cache.test.d.ts.map +0 -1
  1293. package/dist/features/state-manager/__tests__/cache.test.js +0 -365
  1294. package/dist/features/state-manager/__tests__/cache.test.js.map +0 -1
  1295. package/dist/features/state-manager/index.d.ts +0 -133
  1296. package/dist/features/state-manager/index.d.ts.map +0 -1
  1297. package/dist/features/state-manager/index.js +0 -669
  1298. package/dist/features/state-manager/index.js.map +0 -1
  1299. package/dist/features/state-manager/types.d.ts +0 -147
  1300. package/dist/features/state-manager/types.d.ts.map +0 -1
  1301. package/dist/features/state-manager/types.js +0 -30
  1302. package/dist/features/state-manager/types.js.map +0 -1
  1303. package/dist/features/task-decomposer/index.d.ts +0 -33
  1304. package/dist/features/task-decomposer/index.d.ts.map +0 -1
  1305. package/dist/features/task-decomposer/index.js +0 -707
  1306. package/dist/features/task-decomposer/index.js.map +0 -1
  1307. package/dist/features/task-decomposer/types.d.ts +0 -133
  1308. package/dist/features/task-decomposer/types.d.ts.map +0 -1
  1309. package/dist/features/task-decomposer/types.js +0 -8
  1310. package/dist/features/task-decomposer/types.js.map +0 -1
  1311. package/dist/features/verification/index.d.ts +0 -97
  1312. package/dist/features/verification/index.d.ts.map +0 -1
  1313. package/dist/features/verification/index.js +0 -441
  1314. package/dist/features/verification/index.js.map +0 -1
  1315. package/dist/features/verification/types.d.ts +0 -142
  1316. package/dist/features/verification/types.d.ts.map +0 -1
  1317. package/dist/features/verification/types.js +0 -7
  1318. package/dist/features/verification/types.js.map +0 -1
  1319. package/dist/hooks/__tests__/askuserquestion-lifecycle.test.d.ts +0 -9
  1320. package/dist/hooks/__tests__/askuserquestion-lifecycle.test.d.ts.map +0 -1
  1321. package/dist/hooks/__tests__/askuserquestion-lifecycle.test.js +0 -110
  1322. package/dist/hooks/__tests__/askuserquestion-lifecycle.test.js.map +0 -1
  1323. package/dist/hooks/__tests__/background-process-guard.test.d.ts +0 -2
  1324. package/dist/hooks/__tests__/background-process-guard.test.d.ts.map +0 -1
  1325. package/dist/hooks/__tests__/background-process-guard.test.js +0 -477
  1326. package/dist/hooks/__tests__/background-process-guard.test.js.map +0 -1
  1327. package/dist/hooks/__tests__/bridge-openclaw.test.d.ts +0 -2
  1328. package/dist/hooks/__tests__/bridge-openclaw.test.d.ts.map +0 -1
  1329. package/dist/hooks/__tests__/bridge-openclaw.test.js +0 -150
  1330. package/dist/hooks/__tests__/bridge-openclaw.test.js.map +0 -1
  1331. package/dist/hooks/__tests__/bridge-pkill.test.d.ts +0 -8
  1332. package/dist/hooks/__tests__/bridge-pkill.test.d.ts.map +0 -1
  1333. package/dist/hooks/__tests__/bridge-pkill.test.js +0 -188
  1334. package/dist/hooks/__tests__/bridge-pkill.test.js.map +0 -1
  1335. package/dist/hooks/__tests__/bridge-routing.test.d.ts +0 -9
  1336. package/dist/hooks/__tests__/bridge-routing.test.d.ts.map +0 -1
  1337. package/dist/hooks/__tests__/bridge-routing.test.js +0 -928
  1338. package/dist/hooks/__tests__/bridge-routing.test.js.map +0 -1
  1339. package/dist/hooks/__tests__/bridge-security.test.d.ts +0 -11
  1340. package/dist/hooks/__tests__/bridge-security.test.d.ts.map +0 -1
  1341. package/dist/hooks/__tests__/bridge-security.test.js +0 -436
  1342. package/dist/hooks/__tests__/bridge-security.test.js.map +0 -1
  1343. package/dist/hooks/__tests__/bridge-team-worker-guard.test.d.ts +0 -2
  1344. package/dist/hooks/__tests__/bridge-team-worker-guard.test.d.ts.map +0 -1
  1345. package/dist/hooks/__tests__/bridge-team-worker-guard.test.js +0 -52
  1346. package/dist/hooks/__tests__/bridge-team-worker-guard.test.js.map +0 -1
  1347. package/dist/hooks/__tests__/bridge.test.d.ts +0 -2
  1348. package/dist/hooks/__tests__/bridge.test.d.ts.map +0 -1
  1349. package/dist/hooks/__tests__/bridge.test.js +0 -300
  1350. package/dist/hooks/__tests__/bridge.test.js.map +0 -1
  1351. package/dist/hooks/__tests__/codebase-map.test.d.ts +0 -7
  1352. package/dist/hooks/__tests__/codebase-map.test.d.ts.map +0 -1
  1353. package/dist/hooks/__tests__/codebase-map.test.js +0 -281
  1354. package/dist/hooks/__tests__/codebase-map.test.js.map +0 -1
  1355. package/dist/hooks/__tests__/compaction-concurrency.test.d.ts +0 -10
  1356. package/dist/hooks/__tests__/compaction-concurrency.test.d.ts.map +0 -1
  1357. package/dist/hooks/__tests__/compaction-concurrency.test.js +0 -313
  1358. package/dist/hooks/__tests__/compaction-concurrency.test.js.map +0 -1
  1359. package/dist/hooks/__tests__/stop-hook-openclaw-cooldown.test.d.ts +0 -2
  1360. package/dist/hooks/__tests__/stop-hook-openclaw-cooldown.test.d.ts.map +0 -1
  1361. package/dist/hooks/__tests__/stop-hook-openclaw-cooldown.test.js +0 -65
  1362. package/dist/hooks/__tests__/stop-hook-openclaw-cooldown.test.js.map +0 -1
  1363. package/dist/hooks/__tests__/team-worker-heartbeat.test.d.ts +0 -10
  1364. package/dist/hooks/__tests__/team-worker-heartbeat.test.d.ts.map +0 -1
  1365. package/dist/hooks/__tests__/team-worker-heartbeat.test.js +0 -87
  1366. package/dist/hooks/__tests__/team-worker-heartbeat.test.js.map +0 -1
  1367. package/dist/hooks/agent-usage-reminder/constants.d.ts +0 -17
  1368. package/dist/hooks/agent-usage-reminder/constants.d.ts.map +0 -1
  1369. package/dist/hooks/agent-usage-reminder/constants.js +0 -57
  1370. package/dist/hooks/agent-usage-reminder/constants.js.map +0 -1
  1371. package/dist/hooks/agent-usage-reminder/index.d.ts +0 -36
  1372. package/dist/hooks/agent-usage-reminder/index.d.ts.map +0 -1
  1373. package/dist/hooks/agent-usage-reminder/index.js +0 -89
  1374. package/dist/hooks/agent-usage-reminder/index.js.map +0 -1
  1375. package/dist/hooks/agent-usage-reminder/storage.d.ts +0 -12
  1376. package/dist/hooks/agent-usage-reminder/storage.d.ts.map +0 -1
  1377. package/dist/hooks/agent-usage-reminder/storage.js +0 -39
  1378. package/dist/hooks/agent-usage-reminder/storage.js.map +0 -1
  1379. package/dist/hooks/agent-usage-reminder/types.d.ts +0 -14
  1380. package/dist/hooks/agent-usage-reminder/types.d.ts.map +0 -1
  1381. package/dist/hooks/agent-usage-reminder/types.js +0 -9
  1382. package/dist/hooks/agent-usage-reminder/types.js.map +0 -1
  1383. package/dist/hooks/agents-overlay.d.ts +0 -24
  1384. package/dist/hooks/agents-overlay.d.ts.map +0 -1
  1385. package/dist/hooks/agents-overlay.js +0 -51
  1386. package/dist/hooks/agents-overlay.js.map +0 -1
  1387. package/dist/hooks/auto-slash-command/constants.d.ts +0 -19
  1388. package/dist/hooks/auto-slash-command/constants.d.ts.map +0 -1
  1389. package/dist/hooks/auto-slash-command/constants.js +0 -33
  1390. package/dist/hooks/auto-slash-command/constants.js.map +0 -1
  1391. package/dist/hooks/auto-slash-command/detector.d.ts +0 -33
  1392. package/dist/hooks/auto-slash-command/detector.d.ts.map +0 -1
  1393. package/dist/hooks/auto-slash-command/detector.js +0 -73
  1394. package/dist/hooks/auto-slash-command/detector.js.map +0 -1
  1395. package/dist/hooks/auto-slash-command/executor.d.ts +0 -36
  1396. package/dist/hooks/auto-slash-command/executor.d.ts.map +0 -1
  1397. package/dist/hooks/auto-slash-command/executor.js +0 -329
  1398. package/dist/hooks/auto-slash-command/executor.js.map +0 -1
  1399. package/dist/hooks/auto-slash-command/index.d.ts +0 -53
  1400. package/dist/hooks/auto-slash-command/index.d.ts.map +0 -1
  1401. package/dist/hooks/auto-slash-command/index.js +0 -105
  1402. package/dist/hooks/auto-slash-command/index.js.map +0 -1
  1403. package/dist/hooks/auto-slash-command/live-data.d.ts +0 -27
  1404. package/dist/hooks/auto-slash-command/live-data.d.ts.map +0 -1
  1405. package/dist/hooks/auto-slash-command/live-data.js +0 -518
  1406. package/dist/hooks/auto-slash-command/live-data.js.map +0 -1
  1407. package/dist/hooks/auto-slash-command/types.d.ts +0 -83
  1408. package/dist/hooks/auto-slash-command/types.d.ts.map +0 -1
  1409. package/dist/hooks/auto-slash-command/types.js +0 -2
  1410. package/dist/hooks/auto-slash-command/types.js.map +0 -1
  1411. package/dist/hooks/autopilot/__tests__/cancel.test.d.ts +0 -2
  1412. package/dist/hooks/autopilot/__tests__/cancel.test.d.ts.map +0 -1
  1413. package/dist/hooks/autopilot/__tests__/cancel.test.js +0 -470
  1414. package/dist/hooks/autopilot/__tests__/cancel.test.js.map +0 -1
  1415. package/dist/hooks/autopilot/__tests__/pipeline.test.d.ts +0 -2
  1416. package/dist/hooks/autopilot/__tests__/pipeline.test.d.ts.map +0 -1
  1417. package/dist/hooks/autopilot/__tests__/pipeline.test.js +0 -375
  1418. package/dist/hooks/autopilot/__tests__/pipeline.test.js.map +0 -1
  1419. package/dist/hooks/autopilot/__tests__/prompts.test.d.ts +0 -2
  1420. package/dist/hooks/autopilot/__tests__/prompts.test.d.ts.map +0 -1
  1421. package/dist/hooks/autopilot/__tests__/prompts.test.js +0 -83
  1422. package/dist/hooks/autopilot/__tests__/prompts.test.js.map +0 -1
  1423. package/dist/hooks/autopilot/__tests__/state.test.d.ts +0 -2
  1424. package/dist/hooks/autopilot/__tests__/state.test.d.ts.map +0 -1
  1425. package/dist/hooks/autopilot/__tests__/state.test.js +0 -76
  1426. package/dist/hooks/autopilot/__tests__/state.test.js.map +0 -1
  1427. package/dist/hooks/autopilot/__tests__/summary.test.d.ts +0 -2
  1428. package/dist/hooks/autopilot/__tests__/summary.test.d.ts.map +0 -1
  1429. package/dist/hooks/autopilot/__tests__/summary.test.js +0 -324
  1430. package/dist/hooks/autopilot/__tests__/summary.test.js.map +0 -1
  1431. package/dist/hooks/autopilot/__tests__/transition.test.d.ts +0 -2
  1432. package/dist/hooks/autopilot/__tests__/transition.test.d.ts.map +0 -1
  1433. package/dist/hooks/autopilot/__tests__/transition.test.js +0 -58
  1434. package/dist/hooks/autopilot/__tests__/transition.test.js.map +0 -1
  1435. package/dist/hooks/autopilot/__tests__/transitions.test.d.ts +0 -12
  1436. package/dist/hooks/autopilot/__tests__/transitions.test.d.ts.map +0 -1
  1437. package/dist/hooks/autopilot/__tests__/transitions.test.js +0 -303
  1438. package/dist/hooks/autopilot/__tests__/transitions.test.js.map +0 -1
  1439. package/dist/hooks/autopilot/__tests__/validation.test.d.ts +0 -2
  1440. package/dist/hooks/autopilot/__tests__/validation.test.d.ts.map +0 -1
  1441. package/dist/hooks/autopilot/__tests__/validation.test.js +0 -450
  1442. package/dist/hooks/autopilot/__tests__/validation.test.js.map +0 -1
  1443. package/dist/hooks/autopilot/adapters/execution-adapter.d.ts +0 -12
  1444. package/dist/hooks/autopilot/adapters/execution-adapter.d.ts.map +0 -1
  1445. package/dist/hooks/autopilot/adapters/execution-adapter.js +0 -111
  1446. package/dist/hooks/autopilot/adapters/execution-adapter.js.map +0 -1
  1447. package/dist/hooks/autopilot/adapters/index.d.ts +0 -22
  1448. package/dist/hooks/autopilot/adapters/index.d.ts.map +0 -1
  1449. package/dist/hooks/autopilot/adapters/index.js +0 -32
  1450. package/dist/hooks/autopilot/adapters/index.js.map +0 -1
  1451. package/dist/hooks/autopilot/adapters/qa-adapter.d.ts +0 -12
  1452. package/dist/hooks/autopilot/adapters/qa-adapter.d.ts.map +0 -1
  1453. package/dist/hooks/autopilot/adapters/qa-adapter.js +0 -33
  1454. package/dist/hooks/autopilot/adapters/qa-adapter.js.map +0 -1
  1455. package/dist/hooks/autopilot/adapters/ralph-adapter.d.ts +0 -15
  1456. package/dist/hooks/autopilot/adapters/ralph-adapter.d.ts.map +0 -1
  1457. package/dist/hooks/autopilot/adapters/ralph-adapter.js +0 -102
  1458. package/dist/hooks/autopilot/adapters/ralph-adapter.js.map +0 -1
  1459. package/dist/hooks/autopilot/adapters/ralplan-adapter.d.ts +0 -14
  1460. package/dist/hooks/autopilot/adapters/ralplan-adapter.d.ts.map +0 -1
  1461. package/dist/hooks/autopilot/adapters/ralplan-adapter.js +0 -82
  1462. package/dist/hooks/autopilot/adapters/ralplan-adapter.js.map +0 -1
  1463. package/dist/hooks/autopilot/cancel.d.ts +0 -50
  1464. package/dist/hooks/autopilot/cancel.d.ts.map +0 -1
  1465. package/dist/hooks/autopilot/cancel.js +0 -217
  1466. package/dist/hooks/autopilot/cancel.js.map +0 -1
  1467. package/dist/hooks/autopilot/enforcement.d.ts +0 -44
  1468. package/dist/hooks/autopilot/enforcement.d.ts.map +0 -1
  1469. package/dist/hooks/autopilot/enforcement.js +0 -417
  1470. package/dist/hooks/autopilot/enforcement.js.map +0 -1
  1471. package/dist/hooks/autopilot/index.d.ts +0 -18
  1472. package/dist/hooks/autopilot/index.d.ts.map +0 -1
  1473. package/dist/hooks/autopilot/index.js +0 -23
  1474. package/dist/hooks/autopilot/index.js.map +0 -1
  1475. package/dist/hooks/autopilot/pipeline-types.d.ts +0 -135
  1476. package/dist/hooks/autopilot/pipeline-types.d.ts.map +0 -1
  1477. package/dist/hooks/autopilot/pipeline-types.js +0 -44
  1478. package/dist/hooks/autopilot/pipeline-types.js.map +0 -1
  1479. package/dist/hooks/autopilot/pipeline.d.ts +0 -124
  1480. package/dist/hooks/autopilot/pipeline.d.ts.map +0 -1
  1481. package/dist/hooks/autopilot/pipeline.js +0 -422
  1482. package/dist/hooks/autopilot/pipeline.js.map +0 -1
  1483. package/dist/hooks/autopilot/prompts.d.ts +0 -39
  1484. package/dist/hooks/autopilot/prompts.d.ts.map +0 -1
  1485. package/dist/hooks/autopilot/prompts.js +0 -385
  1486. package/dist/hooks/autopilot/prompts.js.map +0 -1
  1487. package/dist/hooks/autopilot/state.d.ts +0 -106
  1488. package/dist/hooks/autopilot/state.d.ts.map +0 -1
  1489. package/dist/hooks/autopilot/state.js +0 -457
  1490. package/dist/hooks/autopilot/state.js.map +0 -1
  1491. package/dist/hooks/autopilot/transition-helper.d.ts +0 -22
  1492. package/dist/hooks/autopilot/transition-helper.d.ts.map +0 -1
  1493. package/dist/hooks/autopilot/transition-helper.js +0 -31
  1494. package/dist/hooks/autopilot/transition-helper.js.map +0 -1
  1495. package/dist/hooks/autopilot/types.d.ts +0 -234
  1496. package/dist/hooks/autopilot/types.d.ts.map +0 -1
  1497. package/dist/hooks/autopilot/types.js +0 -30
  1498. package/dist/hooks/autopilot/types.js.map +0 -1
  1499. package/dist/hooks/autopilot/validation.d.ts +0 -66
  1500. package/dist/hooks/autopilot/validation.d.ts.map +0 -1
  1501. package/dist/hooks/autopilot/validation.js +0 -350
  1502. package/dist/hooks/autopilot/validation.js.map +0 -1
  1503. package/dist/hooks/background-notification/index.d.ts +0 -60
  1504. package/dist/hooks/background-notification/index.d.ts.map +0 -1
  1505. package/dist/hooks/background-notification/index.js +0 -180
  1506. package/dist/hooks/background-notification/index.js.map +0 -1
  1507. package/dist/hooks/background-notification/types.d.ts +0 -64
  1508. package/dist/hooks/background-notification/types.d.ts.map +0 -1
  1509. package/dist/hooks/background-notification/types.js +0 -8
  1510. package/dist/hooks/background-notification/types.js.map +0 -1
  1511. package/dist/hooks/beads-context/__tests__/index.test.d.ts +0 -2
  1512. package/dist/hooks/beads-context/__tests__/index.test.d.ts.map +0 -1
  1513. package/dist/hooks/beads-context/__tests__/index.test.js +0 -150
  1514. package/dist/hooks/beads-context/__tests__/index.test.js.map +0 -1
  1515. package/dist/hooks/beads-context/constants.d.ts +0 -3
  1516. package/dist/hooks/beads-context/constants.d.ts.map +0 -1
  1517. package/dist/hooks/beads-context/constants.js +0 -35
  1518. package/dist/hooks/beads-context/constants.js.map +0 -1
  1519. package/dist/hooks/beads-context/index.d.ts +0 -21
  1520. package/dist/hooks/beads-context/index.d.ts.map +0 -1
  1521. package/dist/hooks/beads-context/index.js +0 -62
  1522. package/dist/hooks/beads-context/index.js.map +0 -1
  1523. package/dist/hooks/beads-context/types.d.ts +0 -7
  1524. package/dist/hooks/beads-context/types.d.ts.map +0 -1
  1525. package/dist/hooks/beads-context/types.js +0 -2
  1526. package/dist/hooks/beads-context/types.js.map +0 -1
  1527. package/dist/hooks/bridge-normalize.d.ts +0 -143
  1528. package/dist/hooks/bridge-normalize.d.ts.map +0 -1
  1529. package/dist/hooks/bridge-normalize.js +0 -193
  1530. package/dist/hooks/bridge-normalize.js.map +0 -1
  1531. package/dist/hooks/bridge.d.ts +0 -98
  1532. package/dist/hooks/bridge.d.ts.map +0 -1
  1533. package/dist/hooks/bridge.js +0 -1700
  1534. package/dist/hooks/bridge.js.map +0 -1
  1535. package/dist/hooks/code-simplifier/index.d.ts +0 -75
  1536. package/dist/hooks/code-simplifier/index.d.ts.map +0 -1
  1537. package/dist/hooks/code-simplifier/index.js +0 -148
  1538. package/dist/hooks/code-simplifier/index.js.map +0 -1
  1539. package/dist/hooks/codebase-map.d.ts +0 -59
  1540. package/dist/hooks/codebase-map.d.ts.map +0 -1
  1541. package/dist/hooks/codebase-map.js +0 -196
  1542. package/dist/hooks/codebase-map.js.map +0 -1
  1543. package/dist/hooks/comment-checker/constants.d.ts +0 -28
  1544. package/dist/hooks/comment-checker/constants.d.ts.map +0 -1
  1545. package/dist/hooks/comment-checker/constants.js +0 -189
  1546. package/dist/hooks/comment-checker/constants.js.map +0 -1
  1547. package/dist/hooks/comment-checker/filters.d.ts +0 -39
  1548. package/dist/hooks/comment-checker/filters.d.ts.map +0 -1
  1549. package/dist/hooks/comment-checker/filters.js +0 -126
  1550. package/dist/hooks/comment-checker/filters.js.map +0 -1
  1551. package/dist/hooks/comment-checker/index.d.ts +0 -58
  1552. package/dist/hooks/comment-checker/index.d.ts.map +0 -1
  1553. package/dist/hooks/comment-checker/index.js +0 -283
  1554. package/dist/hooks/comment-checker/index.js.map +0 -1
  1555. package/dist/hooks/comment-checker/types.d.ts +0 -88
  1556. package/dist/hooks/comment-checker/types.d.ts.map +0 -1
  1557. package/dist/hooks/comment-checker/types.js +0 -9
  1558. package/dist/hooks/comment-checker/types.js.map +0 -1
  1559. package/dist/hooks/conductor/__tests__/state.test.d.ts +0 -2
  1560. package/dist/hooks/conductor/__tests__/state.test.d.ts.map +0 -1
  1561. package/dist/hooks/conductor/__tests__/state.test.js +0 -492
  1562. package/dist/hooks/conductor/__tests__/state.test.js.map +0 -1
  1563. package/dist/hooks/conductor/context.d.ts +0 -77
  1564. package/dist/hooks/conductor/context.d.ts.map +0 -1
  1565. package/dist/hooks/conductor/context.js +0 -312
  1566. package/dist/hooks/conductor/context.js.map +0 -1
  1567. package/dist/hooks/conductor/index.d.ts +0 -23
  1568. package/dist/hooks/conductor/index.d.ts.map +0 -1
  1569. package/dist/hooks/conductor/index.js +0 -94
  1570. package/dist/hooks/conductor/index.js.map +0 -1
  1571. package/dist/hooks/conductor/prompts.d.ts +0 -39
  1572. package/dist/hooks/conductor/prompts.d.ts.map +0 -1
  1573. package/dist/hooks/conductor/prompts.js +0 -331
  1574. package/dist/hooks/conductor/prompts.js.map +0 -1
  1575. package/dist/hooks/conductor/revert.d.ts +0 -44
  1576. package/dist/hooks/conductor/revert.d.ts.map +0 -1
  1577. package/dist/hooks/conductor/revert.js +0 -252
  1578. package/dist/hooks/conductor/revert.js.map +0 -1
  1579. package/dist/hooks/conductor/review.d.ts +0 -24
  1580. package/dist/hooks/conductor/review.d.ts.map +0 -1
  1581. package/dist/hooks/conductor/review.js +0 -238
  1582. package/dist/hooks/conductor/review.js.map +0 -1
  1583. package/dist/hooks/conductor/state.d.ts +0 -86
  1584. package/dist/hooks/conductor/state.d.ts.map +0 -1
  1585. package/dist/hooks/conductor/state.js +0 -366
  1586. package/dist/hooks/conductor/state.js.map +0 -1
  1587. package/dist/hooks/conductor/status.d.ts +0 -19
  1588. package/dist/hooks/conductor/status.d.ts.map +0 -1
  1589. package/dist/hooks/conductor/status.js +0 -171
  1590. package/dist/hooks/conductor/status.js.map +0 -1
  1591. package/dist/hooks/conductor/track.d.ts +0 -51
  1592. package/dist/hooks/conductor/track.d.ts.map +0 -1
  1593. package/dist/hooks/conductor/track.js +0 -284
  1594. package/dist/hooks/conductor/track.js.map +0 -1
  1595. package/dist/hooks/conductor/types.d.ts +0 -147
  1596. package/dist/hooks/conductor/types.d.ts.map +0 -1
  1597. package/dist/hooks/conductor/types.js +0 -28
  1598. package/dist/hooks/conductor/types.js.map +0 -1
  1599. package/dist/hooks/directory-readme-injector/constants.d.ts +0 -19
  1600. package/dist/hooks/directory-readme-injector/constants.d.ts.map +0 -1
  1601. package/dist/hooks/directory-readme-injector/constants.js +0 -21
  1602. package/dist/hooks/directory-readme-injector/constants.js.map +0 -1
  1603. package/dist/hooks/directory-readme-injector/index.d.ts +0 -45
  1604. package/dist/hooks/directory-readme-injector/index.d.ts.map +0 -1
  1605. package/dist/hooks/directory-readme-injector/index.js +0 -185
  1606. package/dist/hooks/directory-readme-injector/index.js.map +0 -1
  1607. package/dist/hooks/directory-readme-injector/storage.d.ts +0 -20
  1608. package/dist/hooks/directory-readme-injector/storage.d.ts.map +0 -1
  1609. package/dist/hooks/directory-readme-injector/storage.js +0 -56
  1610. package/dist/hooks/directory-readme-injector/storage.js.map +0 -1
  1611. package/dist/hooks/directory-readme-injector/types.d.ts +0 -20
  1612. package/dist/hooks/directory-readme-injector/types.d.ts.map +0 -1
  1613. package/dist/hooks/directory-readme-injector/types.js +0 -9
  1614. package/dist/hooks/directory-readme-injector/types.js.map +0 -1
  1615. package/dist/hooks/empty-message-sanitizer/__tests__/index.test.d.ts +0 -2
  1616. package/dist/hooks/empty-message-sanitizer/__tests__/index.test.d.ts.map +0 -1
  1617. package/dist/hooks/empty-message-sanitizer/__tests__/index.test.js +0 -416
  1618. package/dist/hooks/empty-message-sanitizer/__tests__/index.test.js.map +0 -1
  1619. package/dist/hooks/empty-message-sanitizer/constants.d.ts +0 -33
  1620. package/dist/hooks/empty-message-sanitizer/constants.d.ts.map +0 -1
  1621. package/dist/hooks/empty-message-sanitizer/constants.js +0 -37
  1622. package/dist/hooks/empty-message-sanitizer/constants.js.map +0 -1
  1623. package/dist/hooks/empty-message-sanitizer/index.d.ts +0 -59
  1624. package/dist/hooks/empty-message-sanitizer/index.d.ts.map +0 -1
  1625. package/dist/hooks/empty-message-sanitizer/index.js +0 -171
  1626. package/dist/hooks/empty-message-sanitizer/index.js.map +0 -1
  1627. package/dist/hooks/empty-message-sanitizer/types.d.ts +0 -79
  1628. package/dist/hooks/empty-message-sanitizer/types.d.ts.map +0 -1
  1629. package/dist/hooks/empty-message-sanitizer/types.js +0 -10
  1630. package/dist/hooks/empty-message-sanitizer/types.js.map +0 -1
  1631. package/dist/hooks/factcheck/__tests__/factcheck.test.d.ts +0 -7
  1632. package/dist/hooks/factcheck/__tests__/factcheck.test.d.ts.map +0 -1
  1633. package/dist/hooks/factcheck/__tests__/factcheck.test.js +0 -153
  1634. package/dist/hooks/factcheck/__tests__/factcheck.test.js.map +0 -1
  1635. package/dist/hooks/factcheck/__tests__/sentinel-gate.test.d.ts +0 -5
  1636. package/dist/hooks/factcheck/__tests__/sentinel-gate.test.d.ts.map +0 -1
  1637. package/dist/hooks/factcheck/__tests__/sentinel-gate.test.js +0 -159
  1638. package/dist/hooks/factcheck/__tests__/sentinel-gate.test.js.map +0 -1
  1639. package/dist/hooks/factcheck/__tests__/sentinel.test.d.ts +0 -7
  1640. package/dist/hooks/factcheck/__tests__/sentinel.test.d.ts.map +0 -1
  1641. package/dist/hooks/factcheck/__tests__/sentinel.test.js +0 -117
  1642. package/dist/hooks/factcheck/__tests__/sentinel.test.js.map +0 -1
  1643. package/dist/hooks/factcheck/checks.d.ts +0 -36
  1644. package/dist/hooks/factcheck/checks.d.ts.map +0 -1
  1645. package/dist/hooks/factcheck/checks.js +0 -144
  1646. package/dist/hooks/factcheck/checks.js.map +0 -1
  1647. package/dist/hooks/factcheck/config.d.ts +0 -25
  1648. package/dist/hooks/factcheck/config.d.ts.map +0 -1
  1649. package/dist/hooks/factcheck/config.js +0 -125
  1650. package/dist/hooks/factcheck/config.js.map +0 -1
  1651. package/dist/hooks/factcheck/index.d.ts +0 -34
  1652. package/dist/hooks/factcheck/index.d.ts.map +0 -1
  1653. package/dist/hooks/factcheck/index.js +0 -120
  1654. package/dist/hooks/factcheck/index.js.map +0 -1
  1655. package/dist/hooks/factcheck/sentinel.d.ts +0 -32
  1656. package/dist/hooks/factcheck/sentinel.d.ts.map +0 -1
  1657. package/dist/hooks/factcheck/sentinel.js +0 -153
  1658. package/dist/hooks/factcheck/sentinel.js.map +0 -1
  1659. package/dist/hooks/factcheck/types.d.ts +0 -99
  1660. package/dist/hooks/factcheck/types.d.ts.map +0 -1
  1661. package/dist/hooks/factcheck/types.js +0 -27
  1662. package/dist/hooks/factcheck/types.js.map +0 -1
  1663. package/dist/hooks/index.d.ts +0 -48
  1664. package/dist/hooks/index.d.ts.map +0 -1
  1665. package/dist/hooks/index.js +0 -141
  1666. package/dist/hooks/index.js.map +0 -1
  1667. package/dist/hooks/keyword-detector/__tests__/index.test.d.ts +0 -2
  1668. package/dist/hooks/keyword-detector/__tests__/index.test.d.ts.map +0 -1
  1669. package/dist/hooks/keyword-detector/__tests__/index.test.js +0 -1509
  1670. package/dist/hooks/keyword-detector/__tests__/index.test.js.map +0 -1
  1671. package/dist/hooks/keyword-detector/index.d.ts +0 -108
  1672. package/dist/hooks/keyword-detector/index.d.ts.map +0 -1
  1673. package/dist/hooks/keyword-detector/index.js +0 -326
  1674. package/dist/hooks/keyword-detector/index.js.map +0 -1
  1675. package/dist/hooks/learner/auto-invoke.d.ts +0 -82
  1676. package/dist/hooks/learner/auto-invoke.d.ts.map +0 -1
  1677. package/dist/hooks/learner/auto-invoke.js +0 -233
  1678. package/dist/hooks/learner/auto-invoke.js.map +0 -1
  1679. package/dist/hooks/learner/auto-learner.d.ts +0 -55
  1680. package/dist/hooks/learner/auto-learner.d.ts.map +0 -1
  1681. package/dist/hooks/learner/auto-learner.js +0 -364
  1682. package/dist/hooks/learner/auto-learner.js.map +0 -1
  1683. package/dist/hooks/learner/bridge.d.ts +0 -85
  1684. package/dist/hooks/learner/bridge.d.ts.map +0 -1
  1685. package/dist/hooks/learner/bridge.js +0 -567
  1686. package/dist/hooks/learner/bridge.js.map +0 -1
  1687. package/dist/hooks/learner/config.d.ts +0 -53
  1688. package/dist/hooks/learner/config.d.ts.map +0 -1
  1689. package/dist/hooks/learner/config.js +0 -103
  1690. package/dist/hooks/learner/config.js.map +0 -1
  1691. package/dist/hooks/learner/constants.d.ts +0 -30
  1692. package/dist/hooks/learner/constants.d.ts.map +0 -1
  1693. package/dist/hooks/learner/constants.js +0 -34
  1694. package/dist/hooks/learner/constants.js.map +0 -1
  1695. package/dist/hooks/learner/detection-hook.d.ts +0 -39
  1696. package/dist/hooks/learner/detection-hook.d.ts.map +0 -1
  1697. package/dist/hooks/learner/detection-hook.js +0 -83
  1698. package/dist/hooks/learner/detection-hook.js.map +0 -1
  1699. package/dist/hooks/learner/detector.d.ts +0 -30
  1700. package/dist/hooks/learner/detector.d.ts.map +0 -1
  1701. package/dist/hooks/learner/detector.js +0 -254
  1702. package/dist/hooks/learner/detector.js.map +0 -1
  1703. package/dist/hooks/learner/finder.d.ts +0 -23
  1704. package/dist/hooks/learner/finder.d.ts.map +0 -1
  1705. package/dist/hooks/learner/finder.js +0 -172
  1706. package/dist/hooks/learner/finder.js.map +0 -1
  1707. package/dist/hooks/learner/index.d.ts +0 -65
  1708. package/dist/hooks/learner/index.d.ts.map +0 -1
  1709. package/dist/hooks/learner/index.js +0 -147
  1710. package/dist/hooks/learner/index.js.map +0 -1
  1711. package/dist/hooks/learner/loader.d.ts +0 -20
  1712. package/dist/hooks/learner/loader.d.ts.map +0 -1
  1713. package/dist/hooks/learner/loader.js +0 -112
  1714. package/dist/hooks/learner/loader.js.map +0 -1
  1715. package/dist/hooks/learner/matcher.d.ts +0 -40
  1716. package/dist/hooks/learner/matcher.d.ts.map +0 -1
  1717. package/dist/hooks/learner/matcher.js +0 -230
  1718. package/dist/hooks/learner/matcher.js.map +0 -1
  1719. package/dist/hooks/learner/parser.d.ts +0 -21
  1720. package/dist/hooks/learner/parser.d.ts.map +0 -1
  1721. package/dist/hooks/learner/parser.js +0 -200
  1722. package/dist/hooks/learner/parser.js.map +0 -1
  1723. package/dist/hooks/learner/promotion.d.ts +0 -29
  1724. package/dist/hooks/learner/promotion.d.ts.map +0 -1
  1725. package/dist/hooks/learner/promotion.js +0 -87
  1726. package/dist/hooks/learner/promotion.js.map +0 -1
  1727. package/dist/hooks/learner/transliteration-map.d.ts +0 -30
  1728. package/dist/hooks/learner/transliteration-map.d.ts.map +0 -1
  1729. package/dist/hooks/learner/transliteration-map.js +0 -51
  1730. package/dist/hooks/learner/transliteration-map.js.map +0 -1
  1731. package/dist/hooks/learner/types.d.ts +0 -111
  1732. package/dist/hooks/learner/types.d.ts.map +0 -1
  1733. package/dist/hooks/learner/types.js +0 -8
  1734. package/dist/hooks/learner/types.js.map +0 -1
  1735. package/dist/hooks/learner/validator.d.ts +0 -15
  1736. package/dist/hooks/learner/validator.d.ts.map +0 -1
  1737. package/dist/hooks/learner/validator.js +0 -87
  1738. package/dist/hooks/learner/validator.js.map +0 -1
  1739. package/dist/hooks/learner/writer.d.ts +0 -27
  1740. package/dist/hooks/learner/writer.d.ts.map +0 -1
  1741. package/dist/hooks/learner/writer.js +0 -126
  1742. package/dist/hooks/learner/writer.js.map +0 -1
  1743. package/dist/hooks/mode-registry/__tests__/session-isolation.test.d.ts +0 -2
  1744. package/dist/hooks/mode-registry/__tests__/session-isolation.test.d.ts.map +0 -1
  1745. package/dist/hooks/mode-registry/__tests__/session-isolation.test.js +0 -278
  1746. package/dist/hooks/mode-registry/__tests__/session-isolation.test.js.map +0 -1
  1747. package/dist/hooks/mode-registry/index.d.ts +0 -163
  1748. package/dist/hooks/mode-registry/index.d.ts.map +0 -1
  1749. package/dist/hooks/mode-registry/index.js +0 -580
  1750. package/dist/hooks/mode-registry/index.js.map +0 -1
  1751. package/dist/hooks/mode-registry/types.d.ts +0 -31
  1752. package/dist/hooks/mode-registry/types.d.ts.map +0 -1
  1753. package/dist/hooks/mode-registry/types.js +0 -7
  1754. package/dist/hooks/mode-registry/types.js.map +0 -1
  1755. package/dist/hooks/non-interactive-env/constants.d.ts +0 -35
  1756. package/dist/hooks/non-interactive-env/constants.d.ts.map +0 -1
  1757. package/dist/hooks/non-interactive-env/constants.js +0 -69
  1758. package/dist/hooks/non-interactive-env/constants.js.map +0 -1
  1759. package/dist/hooks/non-interactive-env/detector.d.ts +0 -2
  1760. package/dist/hooks/non-interactive-env/detector.d.ts.map +0 -1
  1761. package/dist/hooks/non-interactive-env/detector.js +0 -16
  1762. package/dist/hooks/non-interactive-env/detector.js.map +0 -1
  1763. package/dist/hooks/non-interactive-env/index.d.ts +0 -14
  1764. package/dist/hooks/non-interactive-env/index.d.ts.map +0 -1
  1765. package/dist/hooks/non-interactive-env/index.js +0 -72
  1766. package/dist/hooks/non-interactive-env/index.js.map +0 -1
  1767. package/dist/hooks/non-interactive-env/index.test.d.ts +0 -2
  1768. package/dist/hooks/non-interactive-env/index.test.d.ts.map +0 -1
  1769. package/dist/hooks/non-interactive-env/index.test.js +0 -30
  1770. package/dist/hooks/non-interactive-env/index.test.js.map +0 -1
  1771. package/dist/hooks/non-interactive-env/types.d.ts +0 -14
  1772. package/dist/hooks/non-interactive-env/types.d.ts.map +0 -1
  1773. package/dist/hooks/non-interactive-env/types.js +0 -2
  1774. package/dist/hooks/non-interactive-env/types.js.map +0 -1
  1775. package/dist/hooks/notepad/index.d.ts +0 -114
  1776. package/dist/hooks/notepad/index.d.ts.map +0 -1
  1777. package/dist/hooks/notepad/index.js +0 -404
  1778. package/dist/hooks/notepad/index.js.map +0 -1
  1779. package/dist/hooks/omc-orchestrator/audit.d.ts +0 -31
  1780. package/dist/hooks/omc-orchestrator/audit.d.ts.map +0 -1
  1781. package/dist/hooks/omc-orchestrator/audit.js +0 -67
  1782. package/dist/hooks/omc-orchestrator/audit.js.map +0 -1
  1783. package/dist/hooks/omc-orchestrator/constants.d.ts +0 -28
  1784. package/dist/hooks/omc-orchestrator/constants.d.ts.map +0 -1
  1785. package/dist/hooks/omc-orchestrator/constants.js +0 -179
  1786. package/dist/hooks/omc-orchestrator/constants.js.map +0 -1
  1787. package/dist/hooks/omc-orchestrator/index.d.ts +0 -124
  1788. package/dist/hooks/omc-orchestrator/index.d.ts.map +0 -1
  1789. package/dist/hooks/omc-orchestrator/index.js +0 -454
  1790. package/dist/hooks/omc-orchestrator/index.js.map +0 -1
  1791. package/dist/hooks/permission-handler/__tests__/index.test.d.ts +0 -2
  1792. package/dist/hooks/permission-handler/__tests__/index.test.d.ts.map +0 -1
  1793. package/dist/hooks/permission-handler/__tests__/index.test.js +0 -440
  1794. package/dist/hooks/permission-handler/__tests__/index.test.js.map +0 -1
  1795. package/dist/hooks/permission-handler/index.d.ts +0 -64
  1796. package/dist/hooks/permission-handler/index.d.ts.map +0 -1
  1797. package/dist/hooks/permission-handler/index.js +0 -293
  1798. package/dist/hooks/permission-handler/index.js.map +0 -1
  1799. package/dist/hooks/persistent-mode/__tests__/cancel-race.test.d.ts +0 -2
  1800. package/dist/hooks/persistent-mode/__tests__/cancel-race.test.d.ts.map +0 -1
  1801. package/dist/hooks/persistent-mode/__tests__/cancel-race.test.js +0 -73
  1802. package/dist/hooks/persistent-mode/__tests__/cancel-race.test.js.map +0 -1
  1803. package/dist/hooks/persistent-mode/__tests__/error-handling.test.d.ts +0 -6
  1804. package/dist/hooks/persistent-mode/__tests__/error-handling.test.d.ts.map +0 -1
  1805. package/dist/hooks/persistent-mode/__tests__/error-handling.test.js +0 -71
  1806. package/dist/hooks/persistent-mode/__tests__/error-handling.test.js.map +0 -1
  1807. package/dist/hooks/persistent-mode/__tests__/idle-cooldown.test.d.ts +0 -6
  1808. package/dist/hooks/persistent-mode/__tests__/idle-cooldown.test.d.ts.map +0 -1
  1809. package/dist/hooks/persistent-mode/__tests__/idle-cooldown.test.js +0 -363
  1810. package/dist/hooks/persistent-mode/__tests__/idle-cooldown.test.js.map +0 -1
  1811. package/dist/hooks/persistent-mode/__tests__/ralph-max-iteration.test.d.ts +0 -2
  1812. package/dist/hooks/persistent-mode/__tests__/ralph-max-iteration.test.d.ts.map +0 -1
  1813. package/dist/hooks/persistent-mode/__tests__/ralph-max-iteration.test.js +0 -38
  1814. package/dist/hooks/persistent-mode/__tests__/ralph-max-iteration.test.js.map +0 -1
  1815. package/dist/hooks/persistent-mode/__tests__/ralph-verification-flow.test.d.ts +0 -2
  1816. package/dist/hooks/persistent-mode/__tests__/ralph-verification-flow.test.d.ts.map +0 -1
  1817. package/dist/hooks/persistent-mode/__tests__/ralph-verification-flow.test.js +0 -90
  1818. package/dist/hooks/persistent-mode/__tests__/ralph-verification-flow.test.js.map +0 -1
  1819. package/dist/hooks/persistent-mode/__tests__/rate-limit-stop.test.d.ts +0 -2
  1820. package/dist/hooks/persistent-mode/__tests__/rate-limit-stop.test.d.ts.map +0 -1
  1821. package/dist/hooks/persistent-mode/__tests__/rate-limit-stop.test.js +0 -116
  1822. package/dist/hooks/persistent-mode/__tests__/rate-limit-stop.test.js.map +0 -1
  1823. package/dist/hooks/persistent-mode/__tests__/skill-state-stop.test.d.ts +0 -2
  1824. package/dist/hooks/persistent-mode/__tests__/skill-state-stop.test.d.ts.map +0 -1
  1825. package/dist/hooks/persistent-mode/__tests__/skill-state-stop.test.js +0 -191
  1826. package/dist/hooks/persistent-mode/__tests__/skill-state-stop.test.js.map +0 -1
  1827. package/dist/hooks/persistent-mode/__tests__/team-ralplan-stop.test.d.ts +0 -2
  1828. package/dist/hooks/persistent-mode/__tests__/team-ralplan-stop.test.d.ts.map +0 -1
  1829. package/dist/hooks/persistent-mode/__tests__/team-ralplan-stop.test.js +0 -646
  1830. package/dist/hooks/persistent-mode/__tests__/team-ralplan-stop.test.js.map +0 -1
  1831. package/dist/hooks/persistent-mode/__tests__/tool-error.test.d.ts +0 -6
  1832. package/dist/hooks/persistent-mode/__tests__/tool-error.test.d.ts.map +0 -1
  1833. package/dist/hooks/persistent-mode/__tests__/tool-error.test.js +0 -335
  1834. package/dist/hooks/persistent-mode/__tests__/tool-error.test.js.map +0 -1
  1835. package/dist/hooks/persistent-mode/idle-cooldown.test.d.ts +0 -6
  1836. package/dist/hooks/persistent-mode/idle-cooldown.test.d.ts.map +0 -1
  1837. package/dist/hooks/persistent-mode/idle-cooldown.test.js +0 -115
  1838. package/dist/hooks/persistent-mode/idle-cooldown.test.js.map +0 -1
  1839. package/dist/hooks/persistent-mode/index.d.ts +0 -86
  1840. package/dist/hooks/persistent-mode/index.d.ts.map +0 -1
  1841. package/dist/hooks/persistent-mode/index.js +0 -1042
  1842. package/dist/hooks/persistent-mode/index.js.map +0 -1
  1843. package/dist/hooks/persistent-mode/session-isolation.test.d.ts +0 -2
  1844. package/dist/hooks/persistent-mode/session-isolation.test.d.ts.map +0 -1
  1845. package/dist/hooks/persistent-mode/session-isolation.test.js +0 -513
  1846. package/dist/hooks/persistent-mode/session-isolation.test.js.map +0 -1
  1847. package/dist/hooks/persistent-mode/stop-hook-blocking.test.d.ts +0 -2
  1848. package/dist/hooks/persistent-mode/stop-hook-blocking.test.d.ts.map +0 -1
  1849. package/dist/hooks/persistent-mode/stop-hook-blocking.test.js +0 -691
  1850. package/dist/hooks/persistent-mode/stop-hook-blocking.test.js.map +0 -1
  1851. package/dist/hooks/plugin-patterns/__tests__/index.test.d.ts +0 -13
  1852. package/dist/hooks/plugin-patterns/__tests__/index.test.d.ts.map +0 -1
  1853. package/dist/hooks/plugin-patterns/__tests__/index.test.js +0 -100
  1854. package/dist/hooks/plugin-patterns/__tests__/index.test.js.map +0 -1
  1855. package/dist/hooks/plugin-patterns/index.d.ts +0 -119
  1856. package/dist/hooks/plugin-patterns/index.d.ts.map +0 -1
  1857. package/dist/hooks/plugin-patterns/index.js +0 -354
  1858. package/dist/hooks/plugin-patterns/index.js.map +0 -1
  1859. package/dist/hooks/pre-compact/index.d.ts +0 -117
  1860. package/dist/hooks/pre-compact/index.d.ts.map +0 -1
  1861. package/dist/hooks/pre-compact/index.js +0 -429
  1862. package/dist/hooks/pre-compact/index.js.map +0 -1
  1863. package/dist/hooks/preemptive-compaction/constants.d.ts +0 -48
  1864. package/dist/hooks/preemptive-compaction/constants.d.ts.map +0 -1
  1865. package/dist/hooks/preemptive-compaction/constants.js +0 -90
  1866. package/dist/hooks/preemptive-compaction/constants.js.map +0 -1
  1867. package/dist/hooks/preemptive-compaction/index.d.ts +0 -69
  1868. package/dist/hooks/preemptive-compaction/index.d.ts.map +0 -1
  1869. package/dist/hooks/preemptive-compaction/index.js +0 -278
  1870. package/dist/hooks/preemptive-compaction/index.js.map +0 -1
  1871. package/dist/hooks/preemptive-compaction/types.d.ts +0 -76
  1872. package/dist/hooks/preemptive-compaction/types.d.ts.map +0 -1
  1873. package/dist/hooks/preemptive-compaction/types.js +0 -9
  1874. package/dist/hooks/preemptive-compaction/types.js.map +0 -1
  1875. package/dist/hooks/project-memory/__tests__/detector.test.d.ts +0 -5
  1876. package/dist/hooks/project-memory/__tests__/detector.test.d.ts.map +0 -1
  1877. package/dist/hooks/project-memory/__tests__/detector.test.js +0 -165
  1878. package/dist/hooks/project-memory/__tests__/detector.test.js.map +0 -1
  1879. package/dist/hooks/project-memory/__tests__/formatter.test.d.ts +0 -5
  1880. package/dist/hooks/project-memory/__tests__/formatter.test.d.ts.map +0 -1
  1881. package/dist/hooks/project-memory/__tests__/formatter.test.js +0 -315
  1882. package/dist/hooks/project-memory/__tests__/formatter.test.js.map +0 -1
  1883. package/dist/hooks/project-memory/__tests__/integration.test.d.ts +0 -5
  1884. package/dist/hooks/project-memory/__tests__/integration.test.d.ts.map +0 -1
  1885. package/dist/hooks/project-memory/__tests__/integration.test.js +0 -265
  1886. package/dist/hooks/project-memory/__tests__/integration.test.js.map +0 -1
  1887. package/dist/hooks/project-memory/__tests__/learner.test.d.ts +0 -5
  1888. package/dist/hooks/project-memory/__tests__/learner.test.d.ts.map +0 -1
  1889. package/dist/hooks/project-memory/__tests__/learner.test.js +0 -159
  1890. package/dist/hooks/project-memory/__tests__/learner.test.js.map +0 -1
  1891. package/dist/hooks/project-memory/__tests__/pre-compact.test.d.ts +0 -5
  1892. package/dist/hooks/project-memory/__tests__/pre-compact.test.d.ts.map +0 -1
  1893. package/dist/hooks/project-memory/__tests__/pre-compact.test.js +0 -121
  1894. package/dist/hooks/project-memory/__tests__/pre-compact.test.js.map +0 -1
  1895. package/dist/hooks/project-memory/__tests__/storage.test.d.ts +0 -5
  1896. package/dist/hooks/project-memory/__tests__/storage.test.d.ts.map +0 -1
  1897. package/dist/hooks/project-memory/__tests__/storage.test.js +0 -244
  1898. package/dist/hooks/project-memory/__tests__/storage.test.js.map +0 -1
  1899. package/dist/hooks/project-memory/constants.d.ts +0 -33
  1900. package/dist/hooks/project-memory/constants.d.ts.map +0 -1
  1901. package/dist/hooks/project-memory/constants.js +0 -134
  1902. package/dist/hooks/project-memory/constants.js.map +0 -1
  1903. package/dist/hooks/project-memory/detector.d.ts +0 -10
  1904. package/dist/hooks/project-memory/detector.d.ts.map +0 -1
  1905. package/dist/hooks/project-memory/detector.js +0 -481
  1906. package/dist/hooks/project-memory/detector.js.map +0 -1
  1907. package/dist/hooks/project-memory/directive-detector.d.ts +0 -22
  1908. package/dist/hooks/project-memory/directive-detector.d.ts.map +0 -1
  1909. package/dist/hooks/project-memory/directive-detector.js +0 -149
  1910. package/dist/hooks/project-memory/directive-detector.js.map +0 -1
  1911. package/dist/hooks/project-memory/directory-mapper.d.ts +0 -14
  1912. package/dist/hooks/project-memory/directory-mapper.d.ts.map +0 -1
  1913. package/dist/hooks/project-memory/directory-mapper.js +0 -156
  1914. package/dist/hooks/project-memory/directory-mapper.js.map +0 -1
  1915. package/dist/hooks/project-memory/formatter.d.ts +0 -15
  1916. package/dist/hooks/project-memory/formatter.d.ts.map +0 -1
  1917. package/dist/hooks/project-memory/formatter.js +0 -241
  1918. package/dist/hooks/project-memory/formatter.js.map +0 -1
  1919. package/dist/hooks/project-memory/hot-path-tracker.d.ts +0 -18
  1920. package/dist/hooks/project-memory/hot-path-tracker.d.ts.map +0 -1
  1921. package/dist/hooks/project-memory/hot-path-tracker.js +0 -125
  1922. package/dist/hooks/project-memory/hot-path-tracker.js.map +0 -1
  1923. package/dist/hooks/project-memory/index.d.ts +0 -17
  1924. package/dist/hooks/project-memory/index.d.ts.map +0 -1
  1925. package/dist/hooks/project-memory/index.js +0 -110
  1926. package/dist/hooks/project-memory/index.js.map +0 -1
  1927. package/dist/hooks/project-memory/learner.d.ts +0 -23
  1928. package/dist/hooks/project-memory/learner.d.ts.map +0 -1
  1929. package/dist/hooks/project-memory/learner.js +0 -231
  1930. package/dist/hooks/project-memory/learner.js.map +0 -1
  1931. package/dist/hooks/project-memory/pre-compact.d.ts +0 -23
  1932. package/dist/hooks/project-memory/pre-compact.d.ts.map +0 -1
  1933. package/dist/hooks/project-memory/pre-compact.js +0 -52
  1934. package/dist/hooks/project-memory/pre-compact.js.map +0 -1
  1935. package/dist/hooks/project-memory/storage.d.ts +0 -37
  1936. package/dist/hooks/project-memory/storage.d.ts.map +0 -1
  1937. package/dist/hooks/project-memory/storage.js +0 -89
  1938. package/dist/hooks/project-memory/storage.js.map +0 -1
  1939. package/dist/hooks/project-memory/types.d.ts +0 -106
  1940. package/dist/hooks/project-memory/types.d.ts.map +0 -1
  1941. package/dist/hooks/project-memory/types.js +0 -6
  1942. package/dist/hooks/project-memory/types.js.map +0 -1
  1943. package/dist/hooks/ralph/index.d.ts +0 -11
  1944. package/dist/hooks/ralph/index.d.ts.map +0 -1
  1945. package/dist/hooks/ralph/index.js +0 -57
  1946. package/dist/hooks/ralph/index.js.map +0 -1
  1947. package/dist/hooks/ralph/loop.d.ts +0 -144
  1948. package/dist/hooks/ralph/loop.d.ts.map +0 -1
  1949. package/dist/hooks/ralph/loop.js +0 -357
  1950. package/dist/hooks/ralph/loop.js.map +0 -1
  1951. package/dist/hooks/ralph/prd.d.ts +0 -130
  1952. package/dist/hooks/ralph/prd.d.ts.map +0 -1
  1953. package/dist/hooks/ralph/prd.js +0 -311
  1954. package/dist/hooks/ralph/prd.js.map +0 -1
  1955. package/dist/hooks/ralph/progress.d.ts +0 -102
  1956. package/dist/hooks/ralph/progress.d.ts.map +0 -1
  1957. package/dist/hooks/ralph/progress.js +0 -409
  1958. package/dist/hooks/ralph/progress.js.map +0 -1
  1959. package/dist/hooks/ralph/verifier.d.ts +0 -78
  1960. package/dist/hooks/ralph/verifier.d.ts.map +0 -1
  1961. package/dist/hooks/ralph/verifier.js +0 -280
  1962. package/dist/hooks/ralph/verifier.js.map +0 -1
  1963. package/dist/hooks/recovery/__tests__/storage.test.d.ts +0 -2
  1964. package/dist/hooks/recovery/__tests__/storage.test.d.ts.map +0 -1
  1965. package/dist/hooks/recovery/__tests__/storage.test.js +0 -65
  1966. package/dist/hooks/recovery/__tests__/storage.test.js.map +0 -1
  1967. package/dist/hooks/recovery/constants.d.ts +0 -114
  1968. package/dist/hooks/recovery/constants.d.ts.map +0 -1
  1969. package/dist/hooks/recovery/constants.js +0 -221
  1970. package/dist/hooks/recovery/constants.js.map +0 -1
  1971. package/dist/hooks/recovery/context-window.d.ts +0 -28
  1972. package/dist/hooks/recovery/context-window.d.ts.map +0 -1
  1973. package/dist/hooks/recovery/context-window.js +0 -342
  1974. package/dist/hooks/recovery/context-window.js.map +0 -1
  1975. package/dist/hooks/recovery/edit-error.d.ts +0 -24
  1976. package/dist/hooks/recovery/edit-error.d.ts.map +0 -1
  1977. package/dist/hooks/recovery/edit-error.js +0 -56
  1978. package/dist/hooks/recovery/edit-error.js.map +0 -1
  1979. package/dist/hooks/recovery/index.d.ts +0 -102
  1980. package/dist/hooks/recovery/index.d.ts.map +0 -1
  1981. package/dist/hooks/recovery/index.js +0 -166
  1982. package/dist/hooks/recovery/index.js.map +0 -1
  1983. package/dist/hooks/recovery/session-recovery.d.ts +0 -24
  1984. package/dist/hooks/recovery/session-recovery.d.ts.map +0 -1
  1985. package/dist/hooks/recovery/session-recovery.js +0 -284
  1986. package/dist/hooks/recovery/session-recovery.js.map +0 -1
  1987. package/dist/hooks/recovery/storage.d.ts +0 -79
  1988. package/dist/hooks/recovery/storage.d.ts.map +0 -1
  1989. package/dist/hooks/recovery/storage.js +0 -360
  1990. package/dist/hooks/recovery/storage.js.map +0 -1
  1991. package/dist/hooks/recovery/types.d.ts +0 -196
  1992. package/dist/hooks/recovery/types.d.ts.map +0 -1
  1993. package/dist/hooks/recovery/types.js +0 -32
  1994. package/dist/hooks/recovery/types.js.map +0 -1
  1995. package/dist/hooks/rules-injector/constants.d.ts +0 -25
  1996. package/dist/hooks/rules-injector/constants.d.ts.map +0 -1
  1997. package/dist/hooks/rules-injector/constants.js +0 -40
  1998. package/dist/hooks/rules-injector/constants.js.map +0 -1
  1999. package/dist/hooks/rules-injector/finder.d.ts +0 -24
  2000. package/dist/hooks/rules-injector/finder.d.ts.map +0 -1
  2001. package/dist/hooks/rules-injector/finder.js +0 -215
  2002. package/dist/hooks/rules-injector/finder.js.map +0 -1
  2003. package/dist/hooks/rules-injector/index.d.ts +0 -45
  2004. package/dist/hooks/rules-injector/index.d.ts.map +0 -1
  2005. package/dist/hooks/rules-injector/index.js +0 -187
  2006. package/dist/hooks/rules-injector/index.js.map +0 -1
  2007. package/dist/hooks/rules-injector/matcher.d.ts +0 -25
  2008. package/dist/hooks/rules-injector/matcher.d.ts.map +0 -1
  2009. package/dist/hooks/rules-injector/matcher.js +0 -70
  2010. package/dist/hooks/rules-injector/matcher.js.map +0 -1
  2011. package/dist/hooks/rules-injector/parser.d.ts +0 -20
  2012. package/dist/hooks/rules-injector/parser.d.ts.map +0 -1
  2013. package/dist/hooks/rules-injector/parser.js +0 -181
  2014. package/dist/hooks/rules-injector/parser.js.map +0 -1
  2015. package/dist/hooks/rules-injector/storage.d.ts +0 -26
  2016. package/dist/hooks/rules-injector/storage.d.ts.map +0 -1
  2017. package/dist/hooks/rules-injector/storage.js +0 -61
  2018. package/dist/hooks/rules-injector/storage.js.map +0 -1
  2019. package/dist/hooks/rules-injector/types.d.ts +0 -101
  2020. package/dist/hooks/rules-injector/types.d.ts.map +0 -1
  2021. package/dist/hooks/rules-injector/types.js +0 -10
  2022. package/dist/hooks/rules-injector/types.js.map +0 -1
  2023. package/dist/hooks/session-end/__tests__/callbacks.test.d.ts +0 -2
  2024. package/dist/hooks/session-end/__tests__/callbacks.test.d.ts.map +0 -1
  2025. package/dist/hooks/session-end/__tests__/callbacks.test.js +0 -381
  2026. package/dist/hooks/session-end/__tests__/callbacks.test.js.map +0 -1
  2027. package/dist/hooks/session-end/__tests__/duplicate-notifications.test.d.ts +0 -2
  2028. package/dist/hooks/session-end/__tests__/duplicate-notifications.test.d.ts.map +0 -1
  2029. package/dist/hooks/session-end/__tests__/duplicate-notifications.test.js +0 -140
  2030. package/dist/hooks/session-end/__tests__/duplicate-notifications.test.js.map +0 -1
  2031. package/dist/hooks/session-end/__tests__/mode-state-cleanup.test.d.ts +0 -2
  2032. package/dist/hooks/session-end/__tests__/mode-state-cleanup.test.d.ts.map +0 -1
  2033. package/dist/hooks/session-end/__tests__/mode-state-cleanup.test.js +0 -150
  2034. package/dist/hooks/session-end/__tests__/mode-state-cleanup.test.js.map +0 -1
  2035. package/dist/hooks/session-end/__tests__/openclaw-session-end.test.d.ts +0 -2
  2036. package/dist/hooks/session-end/__tests__/openclaw-session-end.test.d.ts.map +0 -1
  2037. package/dist/hooks/session-end/__tests__/openclaw-session-end.test.js +0 -112
  2038. package/dist/hooks/session-end/__tests__/openclaw-session-end.test.js.map +0 -1
  2039. package/dist/hooks/session-end/__tests__/python-repl-cleanup.test.d.ts +0 -2
  2040. package/dist/hooks/session-end/__tests__/python-repl-cleanup.test.d.ts.map +0 -1
  2041. package/dist/hooks/session-end/__tests__/python-repl-cleanup.test.js +0 -46
  2042. package/dist/hooks/session-end/__tests__/python-repl-cleanup.test.js.map +0 -1
  2043. package/dist/hooks/session-end/__tests__/session-duration.test.d.ts +0 -2
  2044. package/dist/hooks/session-end/__tests__/session-duration.test.d.ts.map +0 -1
  2045. package/dist/hooks/session-end/__tests__/session-duration.test.js +0 -236
  2046. package/dist/hooks/session-end/__tests__/session-duration.test.js.map +0 -1
  2047. package/dist/hooks/session-end/__tests__/session-end-bridge-cleanup.test.d.ts +0 -2
  2048. package/dist/hooks/session-end/__tests__/session-end-bridge-cleanup.test.d.ts.map +0 -1
  2049. package/dist/hooks/session-end/__tests__/session-end-bridge-cleanup.test.js +0 -58
  2050. package/dist/hooks/session-end/__tests__/session-end-bridge-cleanup.test.js.map +0 -1
  2051. package/dist/hooks/session-end/__tests__/session-end-timeout.test.d.ts +0 -2
  2052. package/dist/hooks/session-end/__tests__/session-end-timeout.test.d.ts.map +0 -1
  2053. package/dist/hooks/session-end/__tests__/session-end-timeout.test.js +0 -91
  2054. package/dist/hooks/session-end/__tests__/session-end-timeout.test.js.map +0 -1
  2055. package/dist/hooks/session-end/__tests__/subdirectory-cwd.test.d.ts +0 -10
  2056. package/dist/hooks/session-end/__tests__/subdirectory-cwd.test.d.ts.map +0 -1
  2057. package/dist/hooks/session-end/__tests__/subdirectory-cwd.test.js +0 -122
  2058. package/dist/hooks/session-end/__tests__/subdirectory-cwd.test.js.map +0 -1
  2059. package/dist/hooks/session-end/__tests__/team-cleanup.test.d.ts +0 -2
  2060. package/dist/hooks/session-end/__tests__/team-cleanup.test.d.ts.map +0 -1
  2061. package/dist/hooks/session-end/__tests__/team-cleanup.test.js +0 -150
  2062. package/dist/hooks/session-end/__tests__/team-cleanup.test.js.map +0 -1
  2063. package/dist/hooks/session-end/callbacks.d.ts +0 -29
  2064. package/dist/hooks/session-end/callbacks.d.ts.map +0 -1
  2065. package/dist/hooks/session-end/callbacks.js +0 -230
  2066. package/dist/hooks/session-end/callbacks.js.map +0 -1
  2067. package/dist/hooks/session-end/index.d.ts +0 -87
  2068. package/dist/hooks/session-end/index.d.ts.map +0 -1
  2069. package/dist/hooks/session-end/index.js +0 -683
  2070. package/dist/hooks/session-end/index.js.map +0 -1
  2071. package/dist/hooks/setup/__tests__/prune.test.d.ts +0 -2
  2072. package/dist/hooks/setup/__tests__/prune.test.d.ts.map +0 -1
  2073. package/dist/hooks/setup/__tests__/prune.test.js +0 -94
  2074. package/dist/hooks/setup/__tests__/prune.test.js.map +0 -1
  2075. package/dist/hooks/setup/__tests__/windows-patch.test.d.ts +0 -2
  2076. package/dist/hooks/setup/__tests__/windows-patch.test.d.ts.map +0 -1
  2077. package/dist/hooks/setup/__tests__/windows-patch.test.js +0 -111
  2078. package/dist/hooks/setup/__tests__/windows-patch.test.js.map +0 -1
  2079. package/dist/hooks/setup/index.d.ts +0 -80
  2080. package/dist/hooks/setup/index.d.ts.map +0 -1
  2081. package/dist/hooks/setup/index.js +0 -349
  2082. package/dist/hooks/setup/index.js.map +0 -1
  2083. package/dist/hooks/setup/types.d.ts +0 -25
  2084. package/dist/hooks/setup/types.d.ts.map +0 -1
  2085. package/dist/hooks/setup/types.js +0 -5
  2086. package/dist/hooks/setup/types.js.map +0 -1
  2087. package/dist/hooks/skill-bridge.cjs +0 -512
  2088. package/dist/hooks/skill-state/__tests__/skill-state.test.d.ts +0 -2
  2089. package/dist/hooks/skill-state/__tests__/skill-state.test.d.ts.map +0 -1
  2090. package/dist/hooks/skill-state/__tests__/skill-state.test.js +0 -369
  2091. package/dist/hooks/skill-state/__tests__/skill-state.test.js.map +0 -1
  2092. package/dist/hooks/skill-state/index.d.ts +0 -88
  2093. package/dist/hooks/skill-state/index.d.ts.map +0 -1
  2094. package/dist/hooks/skill-state/index.js +0 -231
  2095. package/dist/hooks/skill-state/index.js.map +0 -1
  2096. package/dist/hooks/subagent-tracker/__tests__/flow-tracer.test.d.ts +0 -2
  2097. package/dist/hooks/subagent-tracker/__tests__/flow-tracer.test.d.ts.map +0 -1
  2098. package/dist/hooks/subagent-tracker/__tests__/flow-tracer.test.js +0 -107
  2099. package/dist/hooks/subagent-tracker/__tests__/flow-tracer.test.js.map +0 -1
  2100. package/dist/hooks/subagent-tracker/__tests__/flush-race.test.d.ts +0 -2
  2101. package/dist/hooks/subagent-tracker/__tests__/flush-race.test.d.ts.map +0 -1
  2102. package/dist/hooks/subagent-tracker/__tests__/flush-race.test.js +0 -375
  2103. package/dist/hooks/subagent-tracker/__tests__/flush-race.test.js.map +0 -1
  2104. package/dist/hooks/subagent-tracker/__tests__/index.test.d.ts +0 -2
  2105. package/dist/hooks/subagent-tracker/__tests__/index.test.d.ts.map +0 -1
  2106. package/dist/hooks/subagent-tracker/__tests__/index.test.js +0 -859
  2107. package/dist/hooks/subagent-tracker/__tests__/index.test.js.map +0 -1
  2108. package/dist/hooks/subagent-tracker/__tests__/session-replay.test.d.ts +0 -2
  2109. package/dist/hooks/subagent-tracker/__tests__/session-replay.test.d.ts.map +0 -1
  2110. package/dist/hooks/subagent-tracker/__tests__/session-replay.test.js +0 -139
  2111. package/dist/hooks/subagent-tracker/__tests__/session-replay.test.js.map +0 -1
  2112. package/dist/hooks/subagent-tracker/flow-tracer.d.ts +0 -31
  2113. package/dist/hooks/subagent-tracker/flow-tracer.d.ts.map +0 -1
  2114. package/dist/hooks/subagent-tracker/flow-tracer.js +0 -75
  2115. package/dist/hooks/subagent-tracker/flow-tracer.js.map +0 -1
  2116. package/dist/hooks/subagent-tracker/index.d.ts +0 -270
  2117. package/dist/hooks/subagent-tracker/index.d.ts.map +0 -1
  2118. package/dist/hooks/subagent-tracker/index.js +0 -1047
  2119. package/dist/hooks/subagent-tracker/index.js.map +0 -1
  2120. package/dist/hooks/subagent-tracker/session-replay.d.ts +0 -143
  2121. package/dist/hooks/subagent-tracker/session-replay.d.ts.map +0 -1
  2122. package/dist/hooks/subagent-tracker/session-replay.js +0 -390
  2123. package/dist/hooks/subagent-tracker/session-replay.js.map +0 -1
  2124. package/dist/hooks/task-size-detector/__tests__/index.test.d.ts +0 -2
  2125. package/dist/hooks/task-size-detector/__tests__/index.test.d.ts.map +0 -1
  2126. package/dist/hooks/task-size-detector/__tests__/index.test.js +0 -338
  2127. package/dist/hooks/task-size-detector/__tests__/index.test.js.map +0 -1
  2128. package/dist/hooks/task-size-detector/index.d.ts +0 -65
  2129. package/dist/hooks/task-size-detector/index.d.ts.map +0 -1
  2130. package/dist/hooks/task-size-detector/index.js +0 -194
  2131. package/dist/hooks/task-size-detector/index.js.map +0 -1
  2132. package/dist/hooks/team-dispatch-hook.d.ts +0 -65
  2133. package/dist/hooks/team-dispatch-hook.d.ts.map +0 -1
  2134. package/dist/hooks/team-dispatch-hook.js +0 -665
  2135. package/dist/hooks/team-dispatch-hook.js.map +0 -1
  2136. package/dist/hooks/team-leader-nudge-hook.d.ts +0 -42
  2137. package/dist/hooks/team-leader-nudge-hook.d.ts.map +0 -1
  2138. package/dist/hooks/team-leader-nudge-hook.js +0 -316
  2139. package/dist/hooks/team-leader-nudge-hook.js.map +0 -1
  2140. package/dist/hooks/team-pipeline/__tests__/transitions.test.d.ts +0 -2
  2141. package/dist/hooks/team-pipeline/__tests__/transitions.test.d.ts.map +0 -1
  2142. package/dist/hooks/team-pipeline/__tests__/transitions.test.js +0 -156
  2143. package/dist/hooks/team-pipeline/__tests__/transitions.test.js.map +0 -1
  2144. package/dist/hooks/team-pipeline/index.d.ts +0 -4
  2145. package/dist/hooks/team-pipeline/index.d.ts.map +0 -1
  2146. package/dist/hooks/team-pipeline/index.js +0 -4
  2147. package/dist/hooks/team-pipeline/index.js.map +0 -1
  2148. package/dist/hooks/team-pipeline/state.d.ts +0 -7
  2149. package/dist/hooks/team-pipeline/state.d.ts.map +0 -1
  2150. package/dist/hooks/team-pipeline/state.js +0 -163
  2151. package/dist/hooks/team-pipeline/state.js.map +0 -1
  2152. package/dist/hooks/team-pipeline/transitions.d.ts +0 -6
  2153. package/dist/hooks/team-pipeline/transitions.d.ts.map +0 -1
  2154. package/dist/hooks/team-pipeline/transitions.js +0 -103
  2155. package/dist/hooks/team-pipeline/transitions.js.map +0 -1
  2156. package/dist/hooks/team-pipeline/types.d.ts +0 -58
  2157. package/dist/hooks/team-pipeline/types.d.ts.map +0 -1
  2158. package/dist/hooks/team-pipeline/types.js +0 -7
  2159. package/dist/hooks/team-pipeline/types.js.map +0 -1
  2160. package/dist/hooks/team-worker-hook.d.ts +0 -45
  2161. package/dist/hooks/team-worker-hook.d.ts.map +0 -1
  2162. package/dist/hooks/team-worker-hook.js +0 -418
  2163. package/dist/hooks/team-worker-hook.js.map +0 -1
  2164. package/dist/hooks/think-mode/__tests__/index.test.d.ts +0 -2
  2165. package/dist/hooks/think-mode/__tests__/index.test.d.ts.map +0 -1
  2166. package/dist/hooks/think-mode/__tests__/index.test.js +0 -556
  2167. package/dist/hooks/think-mode/__tests__/index.test.js.map +0 -1
  2168. package/dist/hooks/think-mode/detector.d.ts +0 -28
  2169. package/dist/hooks/think-mode/detector.d.ts.map +0 -1
  2170. package/dist/hooks/think-mode/detector.js +0 -105
  2171. package/dist/hooks/think-mode/detector.js.map +0 -1
  2172. package/dist/hooks/think-mode/index.d.ts +0 -70
  2173. package/dist/hooks/think-mode/index.d.ts.map +0 -1
  2174. package/dist/hooks/think-mode/index.js +0 -144
  2175. package/dist/hooks/think-mode/index.js.map +0 -1
  2176. package/dist/hooks/think-mode/switcher.d.ts +0 -39
  2177. package/dist/hooks/think-mode/switcher.d.ts.map +0 -1
  2178. package/dist/hooks/think-mode/switcher.js +0 -184
  2179. package/dist/hooks/think-mode/switcher.js.map +0 -1
  2180. package/dist/hooks/think-mode/types.d.ts +0 -60
  2181. package/dist/hooks/think-mode/types.d.ts.map +0 -1
  2182. package/dist/hooks/think-mode/types.js +0 -9
  2183. package/dist/hooks/think-mode/types.js.map +0 -1
  2184. package/dist/hooks/thinking-block-validator/__tests__/index.test.d.ts +0 -2
  2185. package/dist/hooks/thinking-block-validator/__tests__/index.test.d.ts.map +0 -1
  2186. package/dist/hooks/thinking-block-validator/__tests__/index.test.js +0 -56
  2187. package/dist/hooks/thinking-block-validator/__tests__/index.test.js.map +0 -1
  2188. package/dist/hooks/thinking-block-validator/constants.d.ts +0 -37
  2189. package/dist/hooks/thinking-block-validator/constants.d.ts.map +0 -1
  2190. package/dist/hooks/thinking-block-validator/constants.js +0 -50
  2191. package/dist/hooks/thinking-block-validator/constants.js.map +0 -1
  2192. package/dist/hooks/thinking-block-validator/index.d.ts +0 -35
  2193. package/dist/hooks/thinking-block-validator/index.d.ts.map +0 -1
  2194. package/dist/hooks/thinking-block-validator/index.js +0 -157
  2195. package/dist/hooks/thinking-block-validator/index.js.map +0 -1
  2196. package/dist/hooks/thinking-block-validator/types.d.ts +0 -67
  2197. package/dist/hooks/thinking-block-validator/types.d.ts.map +0 -1
  2198. package/dist/hooks/thinking-block-validator/types.js +0 -9
  2199. package/dist/hooks/thinking-block-validator/types.js.map +0 -1
  2200. package/dist/hooks/todo-continuation/__tests__/isAuthenticationError.test.d.ts +0 -2
  2201. package/dist/hooks/todo-continuation/__tests__/isAuthenticationError.test.d.ts.map +0 -1
  2202. package/dist/hooks/todo-continuation/__tests__/isAuthenticationError.test.js +0 -33
  2203. package/dist/hooks/todo-continuation/__tests__/isAuthenticationError.test.js.map +0 -1
  2204. package/dist/hooks/todo-continuation/__tests__/isRateLimitStop.test.d.ts +0 -2
  2205. package/dist/hooks/todo-continuation/__tests__/isRateLimitStop.test.d.ts.map +0 -1
  2206. package/dist/hooks/todo-continuation/__tests__/isRateLimitStop.test.js +0 -88
  2207. package/dist/hooks/todo-continuation/__tests__/isRateLimitStop.test.js.map +0 -1
  2208. package/dist/hooks/todo-continuation/__tests__/isUserAbort.test.d.ts +0 -2
  2209. package/dist/hooks/todo-continuation/__tests__/isUserAbort.test.d.ts.map +0 -1
  2210. package/dist/hooks/todo-continuation/__tests__/isUserAbort.test.js +0 -119
  2211. package/dist/hooks/todo-continuation/__tests__/isUserAbort.test.js.map +0 -1
  2212. package/dist/hooks/todo-continuation/index.d.ts +0 -231
  2213. package/dist/hooks/todo-continuation/index.d.ts.map +0 -1
  2214. package/dist/hooks/todo-continuation/index.js +0 -470
  2215. package/dist/hooks/todo-continuation/index.js.map +0 -1
  2216. package/dist/hooks/ultraqa/index.d.ts +0 -96
  2217. package/dist/hooks/ultraqa/index.d.ts.map +0 -1
  2218. package/dist/hooks/ultraqa/index.js +0 -172
  2219. package/dist/hooks/ultraqa/index.js.map +0 -1
  2220. package/dist/hooks/ultrawork/index.d.ts +0 -72
  2221. package/dist/hooks/ultrawork/index.d.ts.map +0 -1
  2222. package/dist/hooks/ultrawork/index.js +0 -183
  2223. package/dist/hooks/ultrawork/index.js.map +0 -1
  2224. package/dist/hooks/ultrawork/session-isolation.test.d.ts +0 -2
  2225. package/dist/hooks/ultrawork/session-isolation.test.d.ts.map +0 -1
  2226. package/dist/hooks/ultrawork/session-isolation.test.js +0 -333
  2227. package/dist/hooks/ultrawork/session-isolation.test.js.map +0 -1
  2228. package/dist/hud/background-cleanup.d.ts +0 -28
  2229. package/dist/hud/background-cleanup.d.ts.map +0 -1
  2230. package/dist/hud/background-cleanup.js +0 -92
  2231. package/dist/hud/background-cleanup.js.map +0 -1
  2232. package/dist/hud/background-tasks.d.ts +0 -33
  2233. package/dist/hud/background-tasks.d.ts.map +0 -1
  2234. package/dist/hud/background-tasks.js +0 -199
  2235. package/dist/hud/background-tasks.js.map +0 -1
  2236. package/dist/hud/colors.d.ts +0 -54
  2237. package/dist/hud/colors.d.ts.map +0 -1
  2238. package/dist/hud/colors.js +0 -156
  2239. package/dist/hud/colors.js.map +0 -1
  2240. package/dist/hud/custom-rate-provider.d.ts +0 -33
  2241. package/dist/hud/custom-rate-provider.d.ts.map +0 -1
  2242. package/dist/hud/custom-rate-provider.js +0 -185
  2243. package/dist/hud/custom-rate-provider.js.map +0 -1
  2244. package/dist/hud/elements/agents.d.ts +0 -73
  2245. package/dist/hud/elements/agents.d.ts.map +0 -1
  2246. package/dist/hud/elements/agents.js +0 -487
  2247. package/dist/hud/elements/agents.js.map +0 -1
  2248. package/dist/hud/elements/api-key-source.d.ts +0 -30
  2249. package/dist/hud/elements/api-key-source.d.ts.map +0 -1
  2250. package/dist/hud/elements/api-key-source.js +0 -70
  2251. package/dist/hud/elements/api-key-source.js.map +0 -1
  2252. package/dist/hud/elements/autopilot.d.ts +0 -29
  2253. package/dist/hud/elements/autopilot.d.ts.map +0 -1
  2254. package/dist/hud/elements/autopilot.js +0 -97
  2255. package/dist/hud/elements/autopilot.js.map +0 -1
  2256. package/dist/hud/elements/background.d.ts +0 -20
  2257. package/dist/hud/elements/background.d.ts.map +0 -1
  2258. package/dist/hud/elements/background.js +0 -71
  2259. package/dist/hud/elements/background.js.map +0 -1
  2260. package/dist/hud/elements/call-counts.d.ts +0 -21
  2261. package/dist/hud/elements/call-counts.d.ts.map +0 -1
  2262. package/dist/hud/elements/call-counts.js +0 -41
  2263. package/dist/hud/elements/call-counts.js.map +0 -1
  2264. package/dist/hud/elements/context-warning.d.ts +0 -17
  2265. package/dist/hud/elements/context-warning.d.ts.map +0 -1
  2266. package/dist/hud/elements/context-warning.js +0 -31
  2267. package/dist/hud/elements/context-warning.js.map +0 -1
  2268. package/dist/hud/elements/context.d.ts +0 -29
  2269. package/dist/hud/elements/context.d.ts.map +0 -1
  2270. package/dist/hud/elements/context.js +0 -115
  2271. package/dist/hud/elements/context.js.map +0 -1
  2272. package/dist/hud/elements/cwd.d.ts +0 -15
  2273. package/dist/hud/elements/cwd.d.ts.map +0 -1
  2274. package/dist/hud/elements/cwd.js +0 -39
  2275. package/dist/hud/elements/cwd.js.map +0 -1
  2276. package/dist/hud/elements/git.d.ts +0 -41
  2277. package/dist/hud/elements/git.d.ts.map +0 -1
  2278. package/dist/hud/elements/git.js +0 -112
  2279. package/dist/hud/elements/git.js.map +0 -1
  2280. package/dist/hud/elements/index.d.ts +0 -25
  2281. package/dist/hud/elements/index.d.ts.map +0 -1
  2282. package/dist/hud/elements/index.js +0 -25
  2283. package/dist/hud/elements/index.js.map +0 -1
  2284. package/dist/hud/elements/limits.d.ts +0 -44
  2285. package/dist/hud/elements/limits.d.ts.map +0 -1
  2286. package/dist/hud/elements/limits.js +0 -241
  2287. package/dist/hud/elements/limits.js.map +0 -1
  2288. package/dist/hud/elements/mission-board.d.ts +0 -2
  2289. package/dist/hud/elements/mission-board.d.ts.map +0 -1
  2290. package/dist/hud/elements/mission-board.js +0 -2
  2291. package/dist/hud/elements/mission-board.js.map +0 -1
  2292. package/dist/hud/elements/model.d.ts +0 -16
  2293. package/dist/hud/elements/model.d.ts.map +0 -1
  2294. package/dist/hud/elements/model.js +0 -63
  2295. package/dist/hud/elements/model.js.map +0 -1
  2296. package/dist/hud/elements/permission.d.ts +0 -13
  2297. package/dist/hud/elements/permission.d.ts.map +0 -1
  2298. package/dist/hud/elements/permission.js +0 -20
  2299. package/dist/hud/elements/permission.js.map +0 -1
  2300. package/dist/hud/elements/prd.d.ts +0 -20
  2301. package/dist/hud/elements/prd.d.ts.map +0 -1
  2302. package/dist/hud/elements/prd.js +0 -52
  2303. package/dist/hud/elements/prd.js.map +0 -1
  2304. package/dist/hud/elements/prompt-time.d.ts +0 -13
  2305. package/dist/hud/elements/prompt-time.d.ts.map +0 -1
  2306. package/dist/hud/elements/prompt-time.js +0 -21
  2307. package/dist/hud/elements/prompt-time.js.map +0 -1
  2308. package/dist/hud/elements/ralph.d.ts +0 -14
  2309. package/dist/hud/elements/ralph.d.ts.map +0 -1
  2310. package/dist/hud/elements/ralph.js +0 -36
  2311. package/dist/hud/elements/ralph.js.map +0 -1
  2312. package/dist/hud/elements/session-summary.d.ts +0 -23
  2313. package/dist/hud/elements/session-summary.d.ts.map +0 -1
  2314. package/dist/hud/elements/session-summary.js +0 -23
  2315. package/dist/hud/elements/session-summary.js.map +0 -1
  2316. package/dist/hud/elements/session.d.ts +0 -13
  2317. package/dist/hud/elements/session.d.ts.map +0 -1
  2318. package/dist/hud/elements/session.js +0 -24
  2319. package/dist/hud/elements/session.js.map +0 -1
  2320. package/dist/hud/elements/skills.d.ts +0 -24
  2321. package/dist/hud/elements/skills.d.ts.map +0 -1
  2322. package/dist/hud/elements/skills.js +0 -93
  2323. package/dist/hud/elements/skills.js.map +0 -1
  2324. package/dist/hud/elements/thinking.d.ts +0 -15
  2325. package/dist/hud/elements/thinking.d.ts.map +0 -1
  2326. package/dist/hud/elements/thinking.js +0 -31
  2327. package/dist/hud/elements/thinking.js.map +0 -1
  2328. package/dist/hud/elements/todos.d.ts +0 -20
  2329. package/dist/hud/elements/todos.d.ts.map +0 -1
  2330. package/dist/hud/elements/todos.js +0 -71
  2331. package/dist/hud/elements/todos.js.map +0 -1
  2332. package/dist/hud/elements/token-usage.d.ts +0 -8
  2333. package/dist/hud/elements/token-usage.d.ts.map +0 -1
  2334. package/dist/hud/elements/token-usage.js +0 -24
  2335. package/dist/hud/elements/token-usage.js.map +0 -1
  2336. package/dist/hud/index.d.ts +0 -18
  2337. package/dist/hud/index.d.ts.map +0 -1
  2338. package/dist/hud/index.js +0 -392
  2339. package/dist/hud/index.js.map +0 -1
  2340. package/dist/hud/mission-board.d.ts +0 -75
  2341. package/dist/hud/mission-board.d.ts.map +0 -1
  2342. package/dist/hud/mission-board.js +0 -426
  2343. package/dist/hud/mission-board.js.map +0 -1
  2344. package/dist/hud/omc-state.d.ts +0 -38
  2345. package/dist/hud/omc-state.d.ts.map +0 -1
  2346. package/dist/hud/omc-state.js +0 -260
  2347. package/dist/hud/omc-state.js.map +0 -1
  2348. package/dist/hud/render.d.ts +0 -29
  2349. package/dist/hud/render.d.ts.map +0 -1
  2350. package/dist/hud/render.js +0 -394
  2351. package/dist/hud/render.js.map +0 -1
  2352. package/dist/hud/sanitize.d.ts +0 -54
  2353. package/dist/hud/sanitize.d.ts.map +0 -1
  2354. package/dist/hud/sanitize.js +0 -88
  2355. package/dist/hud/sanitize.js.map +0 -1
  2356. package/dist/hud/state.d.ts +0 -49
  2357. package/dist/hud/state.d.ts.map +0 -1
  2358. package/dist/hud/state.js +0 -308
  2359. package/dist/hud/state.js.map +0 -1
  2360. package/dist/hud/stdin.d.ts +0 -39
  2361. package/dist/hud/stdin.d.ts.map +0 -1
  2362. package/dist/hud/stdin.js +0 -158
  2363. package/dist/hud/stdin.js.map +0 -1
  2364. package/dist/hud/transcript.d.ts +0 -35
  2365. package/dist/hud/transcript.d.ts.map +0 -1
  2366. package/dist/hud/transcript.js +0 -486
  2367. package/dist/hud/transcript.js.map +0 -1
  2368. package/dist/hud/types.d.ts +0 -387
  2369. package/dist/hud/types.d.ts.map +0 -1
  2370. package/dist/hud/types.js +0 -255
  2371. package/dist/hud/types.js.map +0 -1
  2372. package/dist/hud/usage-api.d.ts +0 -50
  2373. package/dist/hud/usage-api.d.ts.map +0 -1
  2374. package/dist/hud/usage-api.js +0 -791
  2375. package/dist/hud/usage-api.js.map +0 -1
  2376. package/dist/index.d.ts +0 -121
  2377. package/dist/index.d.ts.map +0 -1
  2378. package/dist/index.js +0 -187
  2379. package/dist/index.js.map +0 -1
  2380. package/dist/installer/__tests__/claude-md-merge.test.d.ts +0 -6
  2381. package/dist/installer/__tests__/claude-md-merge.test.d.ts.map +0 -1
  2382. package/dist/installer/__tests__/claude-md-merge.test.js +0 -316
  2383. package/dist/installer/__tests__/claude-md-merge.test.js.map +0 -1
  2384. package/dist/installer/__tests__/hook-templates.test.d.ts +0 -2
  2385. package/dist/installer/__tests__/hook-templates.test.d.ts.map +0 -1
  2386. package/dist/installer/__tests__/hook-templates.test.js +0 -121
  2387. package/dist/installer/__tests__/hook-templates.test.js.map +0 -1
  2388. package/dist/installer/__tests__/mcp-registry.test.d.ts +0 -2
  2389. package/dist/installer/__tests__/mcp-registry.test.d.ts.map +0 -1
  2390. package/dist/installer/__tests__/mcp-registry.test.js +0 -316
  2391. package/dist/installer/__tests__/mcp-registry.test.js.map +0 -1
  2392. package/dist/installer/__tests__/safe-installer.test.d.ts +0 -6
  2393. package/dist/installer/__tests__/safe-installer.test.d.ts.map +0 -1
  2394. package/dist/installer/__tests__/safe-installer.test.js +0 -185
  2395. package/dist/installer/__tests__/safe-installer.test.js.map +0 -1
  2396. package/dist/installer/__tests__/session-start-template.test.d.ts +0 -2
  2397. package/dist/installer/__tests__/session-start-template.test.d.ts.map +0 -1
  2398. package/dist/installer/__tests__/session-start-template.test.js +0 -95
  2399. package/dist/installer/__tests__/session-start-template.test.js.map +0 -1
  2400. package/dist/installer/hooks.d.ts +0 -138
  2401. package/dist/installer/hooks.d.ts.map +0 -1
  2402. package/dist/installer/hooks.js +0 -442
  2403. package/dist/installer/hooks.js.map +0 -1
  2404. package/dist/installer/index.d.ts +0 -174
  2405. package/dist/installer/index.d.ts.map +0 -1
  2406. package/dist/installer/index.js +0 -1241
  2407. package/dist/installer/index.js.map +0 -1
  2408. package/dist/installer/mcp-registry.d.ts +0 -48
  2409. package/dist/installer/mcp-registry.d.ts.map +0 -1
  2410. package/dist/installer/mcp-registry.js +0 -453
  2411. package/dist/installer/mcp-registry.js.map +0 -1
  2412. package/dist/interop/__tests__/mcp-bridge.test.d.ts +0 -2
  2413. package/dist/interop/__tests__/mcp-bridge.test.d.ts.map +0 -1
  2414. package/dist/interop/__tests__/mcp-bridge.test.js +0 -60
  2415. package/dist/interop/__tests__/mcp-bridge.test.js.map +0 -1
  2416. package/dist/interop/mcp-bridge.d.ts +0 -66
  2417. package/dist/interop/mcp-bridge.d.ts.map +0 -1
  2418. package/dist/interop/mcp-bridge.js +0 -528
  2419. package/dist/interop/mcp-bridge.js.map +0 -1
  2420. package/dist/interop/omx-team-state.d.ts +0 -133
  2421. package/dist/interop/omx-team-state.d.ts.map +0 -1
  2422. package/dist/interop/omx-team-state.js +0 -301
  2423. package/dist/interop/omx-team-state.js.map +0 -1
  2424. package/dist/interop/shared-state.d.ts +0 -96
  2425. package/dist/interop/shared-state.d.ts.map +0 -1
  2426. package/dist/interop/shared-state.js +0 -324
  2427. package/dist/interop/shared-state.js.map +0 -1
  2428. package/dist/lib/__tests__/mode-state-io.test.d.ts +0 -2
  2429. package/dist/lib/__tests__/mode-state-io.test.d.ts.map +0 -1
  2430. package/dist/lib/__tests__/mode-state-io.test.js +0 -244
  2431. package/dist/lib/__tests__/mode-state-io.test.js.map +0 -1
  2432. package/dist/lib/__tests__/payload-limits.test.d.ts +0 -2
  2433. package/dist/lib/__tests__/payload-limits.test.d.ts.map +0 -1
  2434. package/dist/lib/__tests__/payload-limits.test.js +0 -124
  2435. package/dist/lib/__tests__/payload-limits.test.js.map +0 -1
  2436. package/dist/lib/__tests__/swallowed-error.test.d.ts +0 -2
  2437. package/dist/lib/__tests__/swallowed-error.test.d.ts.map +0 -1
  2438. package/dist/lib/__tests__/swallowed-error.test.js +0 -19
  2439. package/dist/lib/__tests__/swallowed-error.test.js.map +0 -1
  2440. package/dist/lib/__tests__/worktree-paths.test.d.ts +0 -2
  2441. package/dist/lib/__tests__/worktree-paths.test.d.ts.map +0 -1
  2442. package/dist/lib/__tests__/worktree-paths.test.js +0 -472
  2443. package/dist/lib/__tests__/worktree-paths.test.js.map +0 -1
  2444. package/dist/lib/atomic-write.d.ts +0 -56
  2445. package/dist/lib/atomic-write.d.ts.map +0 -1
  2446. package/dist/lib/atomic-write.js +0 -242
  2447. package/dist/lib/atomic-write.js.map +0 -1
  2448. package/dist/lib/featured-contributors.d.ts +0 -54
  2449. package/dist/lib/featured-contributors.d.ts.map +0 -1
  2450. package/dist/lib/featured-contributors.js +0 -290
  2451. package/dist/lib/featured-contributors.js.map +0 -1
  2452. package/dist/lib/file-lock.d.ts +0 -75
  2453. package/dist/lib/file-lock.d.ts.map +0 -1
  2454. package/dist/lib/file-lock.js +0 -244
  2455. package/dist/lib/file-lock.js.map +0 -1
  2456. package/dist/lib/job-state-db.d.ts +0 -150
  2457. package/dist/lib/job-state-db.d.ts.map +0 -1
  2458. package/dist/lib/job-state-db.js +0 -650
  2459. package/dist/lib/job-state-db.js.map +0 -1
  2460. package/dist/lib/mode-names.d.ts +0 -54
  2461. package/dist/lib/mode-names.d.ts.map +0 -1
  2462. package/dist/lib/mode-names.js +0 -75
  2463. package/dist/lib/mode-names.js.map +0 -1
  2464. package/dist/lib/mode-state-io.d.ts +0 -43
  2465. package/dist/lib/mode-state-io.d.ts.map +0 -1
  2466. package/dist/lib/mode-state-io.js +0 -173
  2467. package/dist/lib/mode-state-io.js.map +0 -1
  2468. package/dist/lib/payload-limits.d.ts +0 -31
  2469. package/dist/lib/payload-limits.d.ts.map +0 -1
  2470. package/dist/lib/payload-limits.js +0 -82
  2471. package/dist/lib/payload-limits.js.map +0 -1
  2472. package/dist/lib/project-memory-merge.d.ts +0 -36
  2473. package/dist/lib/project-memory-merge.d.ts.map +0 -1
  2474. package/dist/lib/project-memory-merge.js +0 -156
  2475. package/dist/lib/project-memory-merge.js.map +0 -1
  2476. package/dist/lib/session-isolation.d.ts +0 -32
  2477. package/dist/lib/session-isolation.d.ts.map +0 -1
  2478. package/dist/lib/session-isolation.js +0 -39
  2479. package/dist/lib/session-isolation.js.map +0 -1
  2480. package/dist/lib/shared-memory.d.ts +0 -82
  2481. package/dist/lib/shared-memory.d.ts.map +0 -1
  2482. package/dist/lib/shared-memory.js +0 -324
  2483. package/dist/lib/shared-memory.js.map +0 -1
  2484. package/dist/lib/swallowed-error.d.ts +0 -4
  2485. package/dist/lib/swallowed-error.d.ts.map +0 -1
  2486. package/dist/lib/swallowed-error.js +0 -26
  2487. package/dist/lib/swallowed-error.js.map +0 -1
  2488. package/dist/lib/version.d.ts +0 -10
  2489. package/dist/lib/version.d.ts.map +0 -1
  2490. package/dist/lib/version.js +0 -37
  2491. package/dist/lib/version.js.map +0 -1
  2492. package/dist/lib/worktree-paths.d.ts +0 -256
  2493. package/dist/lib/worktree-paths.d.ts.map +0 -1
  2494. package/dist/lib/worktree-paths.js +0 -643
  2495. package/dist/lib/worktree-paths.js.map +0 -1
  2496. package/dist/mcp/__tests__/prompt-injection.test.d.ts +0 -2
  2497. package/dist/mcp/__tests__/prompt-injection.test.d.ts.map +0 -1
  2498. package/dist/mcp/__tests__/prompt-injection.test.js +0 -121
  2499. package/dist/mcp/__tests__/prompt-injection.test.js.map +0 -1
  2500. package/dist/mcp/__tests__/standalone-shutdown.test.d.ts +0 -2
  2501. package/dist/mcp/__tests__/standalone-shutdown.test.d.ts.map +0 -1
  2502. package/dist/mcp/__tests__/standalone-shutdown.test.js +0 -57
  2503. package/dist/mcp/__tests__/standalone-shutdown.test.js.map +0 -1
  2504. package/dist/mcp/__tests__/team-cleanup.test.d.ts +0 -11
  2505. package/dist/mcp/__tests__/team-cleanup.test.d.ts.map +0 -1
  2506. package/dist/mcp/__tests__/team-cleanup.test.js +0 -228
  2507. package/dist/mcp/__tests__/team-cleanup.test.js.map +0 -1
  2508. package/dist/mcp/__tests__/team-server-artifact-convergence.test.d.ts +0 -2
  2509. package/dist/mcp/__tests__/team-server-artifact-convergence.test.d.ts.map +0 -1
  2510. package/dist/mcp/__tests__/team-server-artifact-convergence.test.js +0 -111
  2511. package/dist/mcp/__tests__/team-server-artifact-convergence.test.js.map +0 -1
  2512. package/dist/mcp/index.d.ts +0 -14
  2513. package/dist/mcp/index.d.ts.map +0 -1
  2514. package/dist/mcp/index.js +0 -17
  2515. package/dist/mcp/index.js.map +0 -1
  2516. package/dist/mcp/job-management.d.ts +0 -155
  2517. package/dist/mcp/job-management.d.ts.map +0 -1
  2518. package/dist/mcp/job-management.js +0 -655
  2519. package/dist/mcp/job-management.js.map +0 -1
  2520. package/dist/mcp/mcp-config.d.ts +0 -55
  2521. package/dist/mcp/mcp-config.d.ts.map +0 -1
  2522. package/dist/mcp/mcp-config.js +0 -94
  2523. package/dist/mcp/mcp-config.js.map +0 -1
  2524. package/dist/mcp/omc-tools-server.d.ts +0 -72
  2525. package/dist/mcp/omc-tools-server.d.ts.map +0 -1
  2526. package/dist/mcp/omc-tools-server.js +0 -188
  2527. package/dist/mcp/omc-tools-server.js.map +0 -1
  2528. package/dist/mcp/prompt-injection.d.ts +0 -23
  2529. package/dist/mcp/prompt-injection.d.ts.map +0 -1
  2530. package/dist/mcp/prompt-injection.js +0 -76
  2531. package/dist/mcp/prompt-injection.js.map +0 -1
  2532. package/dist/mcp/prompt-persistence.d.ts +0 -155
  2533. package/dist/mcp/prompt-persistence.d.ts.map +0 -1
  2534. package/dist/mcp/prompt-persistence.js +0 -374
  2535. package/dist/mcp/prompt-persistence.js.map +0 -1
  2536. package/dist/mcp/servers.d.ts +0 -61
  2537. package/dist/mcp/servers.d.ts.map +0 -1
  2538. package/dist/mcp/servers.js +0 -90
  2539. package/dist/mcp/servers.js.map +0 -1
  2540. package/dist/mcp/standalone-server.d.ts +0 -11
  2541. package/dist/mcp/standalone-server.d.ts.map +0 -1
  2542. package/dist/mcp/standalone-server.js +0 -205
  2543. package/dist/mcp/standalone-server.js.map +0 -1
  2544. package/dist/mcp/standalone-shutdown.d.ts +0 -25
  2545. package/dist/mcp/standalone-shutdown.d.ts.map +0 -1
  2546. package/dist/mcp/standalone-shutdown.js +0 -68
  2547. package/dist/mcp/standalone-shutdown.js.map +0 -1
  2548. package/dist/mcp/team-job-convergence.d.ts +0 -19
  2549. package/dist/mcp/team-job-convergence.d.ts.map +0 -1
  2550. package/dist/mcp/team-job-convergence.js +0 -101
  2551. package/dist/mcp/team-job-convergence.js.map +0 -1
  2552. package/dist/mcp/team-server.d.ts +0 -39
  2553. package/dist/mcp/team-server.d.ts.map +0 -1
  2554. package/dist/mcp/team-server.js +0 -487
  2555. package/dist/mcp/team-server.js.map +0 -1
  2556. package/dist/notifications/__tests__/config-merge.test.d.ts +0 -2
  2557. package/dist/notifications/__tests__/config-merge.test.d.ts.map +0 -1
  2558. package/dist/notifications/__tests__/config-merge.test.js +0 -345
  2559. package/dist/notifications/__tests__/config-merge.test.js.map +0 -1
  2560. package/dist/notifications/__tests__/config.test.d.ts +0 -2
  2561. package/dist/notifications/__tests__/config.test.d.ts.map +0 -1
  2562. package/dist/notifications/__tests__/config.test.js +0 -401
  2563. package/dist/notifications/__tests__/config.test.js.map +0 -1
  2564. package/dist/notifications/__tests__/custom-integration.test.d.ts +0 -8
  2565. package/dist/notifications/__tests__/custom-integration.test.d.ts.map +0 -1
  2566. package/dist/notifications/__tests__/custom-integration.test.js +0 -297
  2567. package/dist/notifications/__tests__/custom-integration.test.js.map +0 -1
  2568. package/dist/notifications/__tests__/dispatcher.test.d.ts +0 -2
  2569. package/dist/notifications/__tests__/dispatcher.test.d.ts.map +0 -1
  2570. package/dist/notifications/__tests__/dispatcher.test.js +0 -1194
  2571. package/dist/notifications/__tests__/dispatcher.test.js.map +0 -1
  2572. package/dist/notifications/__tests__/formatter.test.d.ts +0 -2
  2573. package/dist/notifications/__tests__/formatter.test.d.ts.map +0 -1
  2574. package/dist/notifications/__tests__/formatter.test.js +0 -303
  2575. package/dist/notifications/__tests__/formatter.test.js.map +0 -1
  2576. package/dist/notifications/__tests__/hook-config.test.d.ts +0 -14
  2577. package/dist/notifications/__tests__/hook-config.test.d.ts.map +0 -1
  2578. package/dist/notifications/__tests__/hook-config.test.js +0 -210
  2579. package/dist/notifications/__tests__/hook-config.test.js.map +0 -1
  2580. package/dist/notifications/__tests__/notify-registry-integration.test.d.ts +0 -2
  2581. package/dist/notifications/__tests__/notify-registry-integration.test.d.ts.map +0 -1
  2582. package/dist/notifications/__tests__/notify-registry-integration.test.js +0 -378
  2583. package/dist/notifications/__tests__/notify-registry-integration.test.js.map +0 -1
  2584. package/dist/notifications/__tests__/platform-gating.test.d.ts +0 -12
  2585. package/dist/notifications/__tests__/platform-gating.test.d.ts.map +0 -1
  2586. package/dist/notifications/__tests__/platform-gating.test.js +0 -140
  2587. package/dist/notifications/__tests__/platform-gating.test.js.map +0 -1
  2588. package/dist/notifications/__tests__/profiles.test.d.ts +0 -2
  2589. package/dist/notifications/__tests__/profiles.test.d.ts.map +0 -1
  2590. package/dist/notifications/__tests__/profiles.test.js +0 -253
  2591. package/dist/notifications/__tests__/profiles.test.js.map +0 -1
  2592. package/dist/notifications/__tests__/redact.test.d.ts +0 -2
  2593. package/dist/notifications/__tests__/redact.test.d.ts.map +0 -1
  2594. package/dist/notifications/__tests__/redact.test.js +0 -111
  2595. package/dist/notifications/__tests__/redact.test.js.map +0 -1
  2596. package/dist/notifications/__tests__/reply-config.test.d.ts +0 -2
  2597. package/dist/notifications/__tests__/reply-config.test.d.ts.map +0 -1
  2598. package/dist/notifications/__tests__/reply-config.test.js +0 -213
  2599. package/dist/notifications/__tests__/reply-config.test.js.map +0 -1
  2600. package/dist/notifications/__tests__/reply-listener.test.d.ts +0 -2
  2601. package/dist/notifications/__tests__/reply-listener.test.d.ts.map +0 -1
  2602. package/dist/notifications/__tests__/reply-listener.test.js +0 -486
  2603. package/dist/notifications/__tests__/reply-listener.test.js.map +0 -1
  2604. package/dist/notifications/__tests__/session-registry.test.d.ts +0 -2
  2605. package/dist/notifications/__tests__/session-registry.test.d.ts.map +0 -1
  2606. package/dist/notifications/__tests__/session-registry.test.js +0 -487
  2607. package/dist/notifications/__tests__/session-registry.test.js.map +0 -1
  2608. package/dist/notifications/__tests__/slack-socket.test.d.ts +0 -2
  2609. package/dist/notifications/__tests__/slack-socket.test.d.ts.map +0 -1
  2610. package/dist/notifications/__tests__/slack-socket.test.js +0 -293
  2611. package/dist/notifications/__tests__/slack-socket.test.js.map +0 -1
  2612. package/dist/notifications/__tests__/template-engine.test.d.ts +0 -13
  2613. package/dist/notifications/__tests__/template-engine.test.d.ts.map +0 -1
  2614. package/dist/notifications/__tests__/template-engine.test.js +0 -410
  2615. package/dist/notifications/__tests__/template-engine.test.js.map +0 -1
  2616. package/dist/notifications/__tests__/tmux.test.d.ts +0 -2
  2617. package/dist/notifications/__tests__/tmux.test.d.ts.map +0 -1
  2618. package/dist/notifications/__tests__/tmux.test.js +0 -137
  2619. package/dist/notifications/__tests__/tmux.test.js.map +0 -1
  2620. package/dist/notifications/__tests__/verbosity.test.d.ts +0 -2
  2621. package/dist/notifications/__tests__/verbosity.test.d.ts.map +0 -1
  2622. package/dist/notifications/__tests__/verbosity.test.js +0 -162
  2623. package/dist/notifications/__tests__/verbosity.test.js.map +0 -1
  2624. package/dist/notifications/config.d.ts +0 -155
  2625. package/dist/notifications/config.d.ts.map +0 -1
  2626. package/dist/notifications/config.js +0 -865
  2627. package/dist/notifications/config.js.map +0 -1
  2628. package/dist/notifications/dispatcher.d.ts +0 -57
  2629. package/dist/notifications/dispatcher.d.ts.map +0 -1
  2630. package/dist/notifications/dispatcher.js +0 -672
  2631. package/dist/notifications/dispatcher.js.map +0 -1
  2632. package/dist/notifications/formatter.d.ts +0 -50
  2633. package/dist/notifications/formatter.d.ts.map +0 -1
  2634. package/dist/notifications/formatter.js +0 -254
  2635. package/dist/notifications/formatter.js.map +0 -1
  2636. package/dist/notifications/hook-config-types.d.ts +0 -44
  2637. package/dist/notifications/hook-config-types.d.ts.map +0 -1
  2638. package/dist/notifications/hook-config-types.js +0 -8
  2639. package/dist/notifications/hook-config-types.js.map +0 -1
  2640. package/dist/notifications/hook-config.d.ts +0 -36
  2641. package/dist/notifications/hook-config.d.ts.map +0 -1
  2642. package/dist/notifications/hook-config.js +0 -95
  2643. package/dist/notifications/hook-config.js.map +0 -1
  2644. package/dist/notifications/index.d.ts +0 -44
  2645. package/dist/notifications/index.d.ts.map +0 -1
  2646. package/dist/notifications/index.js +0 -165
  2647. package/dist/notifications/index.js.map +0 -1
  2648. package/dist/notifications/presets.d.ts +0 -43
  2649. package/dist/notifications/presets.d.ts.map +0 -1
  2650. package/dist/notifications/presets.js +0 -122
  2651. package/dist/notifications/presets.js.map +0 -1
  2652. package/dist/notifications/redact.d.ts +0 -21
  2653. package/dist/notifications/redact.d.ts.map +0 -1
  2654. package/dist/notifications/redact.js +0 -42
  2655. package/dist/notifications/redact.js.map +0 -1
  2656. package/dist/notifications/reply-listener.d.ts +0 -140
  2657. package/dist/notifications/reply-listener.d.ts.map +0 -1
  2658. package/dist/notifications/reply-listener.js +0 -965
  2659. package/dist/notifications/reply-listener.js.map +0 -1
  2660. package/dist/notifications/session-registry.d.ts +0 -52
  2661. package/dist/notifications/session-registry.d.ts.map +0 -1
  2662. package/dist/notifications/session-registry.js +0 -382
  2663. package/dist/notifications/session-registry.js.map +0 -1
  2664. package/dist/notifications/slack-socket.d.ts +0 -242
  2665. package/dist/notifications/slack-socket.d.ts.map +0 -1
  2666. package/dist/notifications/slack-socket.js +0 -603
  2667. package/dist/notifications/slack-socket.js.map +0 -1
  2668. package/dist/notifications/template-engine.d.ts +0 -34
  2669. package/dist/notifications/template-engine.d.ts.map +0 -1
  2670. package/dist/notifications/template-engine.js +0 -252
  2671. package/dist/notifications/template-engine.js.map +0 -1
  2672. package/dist/notifications/template-variables.d.ts +0 -26
  2673. package/dist/notifications/template-variables.d.ts.map +0 -1
  2674. package/dist/notifications/template-variables.js +0 -139
  2675. package/dist/notifications/template-variables.js.map +0 -1
  2676. package/dist/notifications/tmux.d.ts +0 -27
  2677. package/dist/notifications/tmux.d.ts.map +0 -1
  2678. package/dist/notifications/tmux.js +0 -103
  2679. package/dist/notifications/tmux.js.map +0 -1
  2680. package/dist/notifications/types.d.ts +0 -257
  2681. package/dist/notifications/types.d.ts.map +0 -1
  2682. package/dist/notifications/types.js +0 -9
  2683. package/dist/notifications/types.js.map +0 -1
  2684. package/dist/notifications/validation.d.ts +0 -24
  2685. package/dist/notifications/validation.d.ts.map +0 -1
  2686. package/dist/notifications/validation.js +0 -167
  2687. package/dist/notifications/validation.js.map +0 -1
  2688. package/dist/openclaw/__tests__/config.test.d.ts +0 -2
  2689. package/dist/openclaw/__tests__/config.test.d.ts.map +0 -1
  2690. package/dist/openclaw/__tests__/config.test.js +0 -200
  2691. package/dist/openclaw/__tests__/config.test.js.map +0 -1
  2692. package/dist/openclaw/__tests__/dispatcher.test.d.ts +0 -2
  2693. package/dist/openclaw/__tests__/dispatcher.test.d.ts.map +0 -1
  2694. package/dist/openclaw/__tests__/dispatcher.test.js +0 -373
  2695. package/dist/openclaw/__tests__/dispatcher.test.js.map +0 -1
  2696. package/dist/openclaw/__tests__/index.test.d.ts +0 -2
  2697. package/dist/openclaw/__tests__/index.test.d.ts.map +0 -1
  2698. package/dist/openclaw/__tests__/index.test.js +0 -359
  2699. package/dist/openclaw/__tests__/index.test.js.map +0 -1
  2700. package/dist/openclaw/__tests__/signal.test.d.ts +0 -2
  2701. package/dist/openclaw/__tests__/signal.test.d.ts.map +0 -1
  2702. package/dist/openclaw/__tests__/signal.test.js +0 -69
  2703. package/dist/openclaw/__tests__/signal.test.js.map +0 -1
  2704. package/dist/openclaw/config.d.ts +0 -33
  2705. package/dist/openclaw/config.d.ts.map +0 -1
  2706. package/dist/openclaw/config.js +0 -83
  2707. package/dist/openclaw/config.js.map +0 -1
  2708. package/dist/openclaw/dispatcher.d.ts +0 -51
  2709. package/dist/openclaw/dispatcher.d.ts.map +0 -1
  2710. package/dist/openclaw/dispatcher.js +0 -149
  2711. package/dist/openclaw/dispatcher.js.map +0 -1
  2712. package/dist/openclaw/index.d.ts +0 -26
  2713. package/dist/openclaw/index.d.ts.map +0 -1
  2714. package/dist/openclaw/index.js +0 -169
  2715. package/dist/openclaw/index.js.map +0 -1
  2716. package/dist/openclaw/signal.d.ts +0 -3
  2717. package/dist/openclaw/signal.d.ts.map +0 -1
  2718. package/dist/openclaw/signal.js +0 -215
  2719. package/dist/openclaw/signal.js.map +0 -1
  2720. package/dist/openclaw/types.d.ts +0 -149
  2721. package/dist/openclaw/types.d.ts.map +0 -1
  2722. package/dist/openclaw/types.js +0 -8
  2723. package/dist/openclaw/types.js.map +0 -1
  2724. package/dist/planning/__tests__/artifacts.test.d.ts +0 -2
  2725. package/dist/planning/__tests__/artifacts.test.d.ts.map +0 -1
  2726. package/dist/planning/__tests__/artifacts.test.js +0 -303
  2727. package/dist/planning/__tests__/artifacts.test.js.map +0 -1
  2728. package/dist/planning/artifacts.d.ts +0 -29
  2729. package/dist/planning/artifacts.d.ts.map +0 -1
  2730. package/dist/planning/artifacts.js +0 -144
  2731. package/dist/planning/artifacts.js.map +0 -1
  2732. package/dist/platform/index.d.ts +0 -21
  2733. package/dist/platform/index.d.ts.map +0 -1
  2734. package/dist/platform/index.js +0 -46
  2735. package/dist/platform/index.js.map +0 -1
  2736. package/dist/platform/process-utils.d.ts +0 -27
  2737. package/dist/platform/process-utils.d.ts.map +0 -1
  2738. package/dist/platform/process-utils.js +0 -207
  2739. package/dist/platform/process-utils.js.map +0 -1
  2740. package/dist/providers/azure-devops.d.ts +0 -13
  2741. package/dist/providers/azure-devops.d.ts.map +0 -1
  2742. package/dist/providers/azure-devops.js +0 -77
  2743. package/dist/providers/azure-devops.js.map +0 -1
  2744. package/dist/providers/bitbucket.d.ts +0 -13
  2745. package/dist/providers/bitbucket.d.ts.map +0 -1
  2746. package/dist/providers/bitbucket.js +0 -87
  2747. package/dist/providers/bitbucket.js.map +0 -1
  2748. package/dist/providers/gitea.d.ts +0 -20
  2749. package/dist/providers/gitea.d.ts.map +0 -1
  2750. package/dist/providers/gitea.js +0 -174
  2751. package/dist/providers/gitea.js.map +0 -1
  2752. package/dist/providers/github.d.ts +0 -13
  2753. package/dist/providers/github.d.ts.map +0 -1
  2754. package/dist/providers/github.js +0 -79
  2755. package/dist/providers/github.js.map +0 -1
  2756. package/dist/providers/gitlab.d.ts +0 -14
  2757. package/dist/providers/gitlab.d.ts.map +0 -1
  2758. package/dist/providers/gitlab.js +0 -94
  2759. package/dist/providers/gitlab.js.map +0 -1
  2760. package/dist/providers/index.d.ts +0 -41
  2761. package/dist/providers/index.d.ts.map +0 -1
  2762. package/dist/providers/index.js +0 -219
  2763. package/dist/providers/index.js.map +0 -1
  2764. package/dist/providers/types.d.ts +0 -66
  2765. package/dist/providers/types.d.ts.map +0 -1
  2766. package/dist/providers/types.js +0 -8
  2767. package/dist/providers/types.js.map +0 -1
  2768. package/dist/ralphthon/__tests__/cli.test.d.ts +0 -5
  2769. package/dist/ralphthon/__tests__/cli.test.d.ts.map +0 -1
  2770. package/dist/ralphthon/__tests__/cli.test.js +0 -103
  2771. package/dist/ralphthon/__tests__/cli.test.js.map +0 -1
  2772. package/dist/ralphthon/__tests__/orchestrator.test.d.ts +0 -5
  2773. package/dist/ralphthon/__tests__/orchestrator.test.d.ts.map +0 -1
  2774. package/dist/ralphthon/__tests__/orchestrator.test.js +0 -393
  2775. package/dist/ralphthon/__tests__/orchestrator.test.js.map +0 -1
  2776. package/dist/ralphthon/__tests__/prd.test.d.ts +0 -5
  2777. package/dist/ralphthon/__tests__/prd.test.d.ts.map +0 -1
  2778. package/dist/ralphthon/__tests__/prd.test.js +0 -454
  2779. package/dist/ralphthon/__tests__/prd.test.js.map +0 -1
  2780. package/dist/ralphthon/deep-interview-prompt.d.ts +0 -2
  2781. package/dist/ralphthon/deep-interview-prompt.d.ts.map +0 -1
  2782. package/dist/ralphthon/deep-interview-prompt.js +0 -20
  2783. package/dist/ralphthon/deep-interview-prompt.js.map +0 -1
  2784. package/dist/ralphthon/index.d.ts +0 -13
  2785. package/dist/ralphthon/index.d.ts.map +0 -1
  2786. package/dist/ralphthon/index.js +0 -14
  2787. package/dist/ralphthon/index.js.map +0 -1
  2788. package/dist/ralphthon/orchestrator.d.ts +0 -112
  2789. package/dist/ralphthon/orchestrator.d.ts.map +0 -1
  2790. package/dist/ralphthon/orchestrator.js +0 -453
  2791. package/dist/ralphthon/orchestrator.js.map +0 -1
  2792. package/dist/ralphthon/prd.d.ts +0 -111
  2793. package/dist/ralphthon/prd.d.ts.map +0 -1
  2794. package/dist/ralphthon/prd.js +0 -345
  2795. package/dist/ralphthon/prd.js.map +0 -1
  2796. package/dist/ralphthon/types.d.ts +0 -213
  2797. package/dist/ralphthon/types.d.ts.map +0 -1
  2798. package/dist/ralphthon/types.js +0 -21
  2799. package/dist/ralphthon/types.js.map +0 -1
  2800. package/dist/shared/index.d.ts +0 -5
  2801. package/dist/shared/index.d.ts.map +0 -1
  2802. package/dist/shared/index.js +0 -5
  2803. package/dist/shared/index.js.map +0 -1
  2804. package/dist/shared/types.d.ts +0 -347
  2805. package/dist/shared/types.d.ts.map +0 -1
  2806. package/dist/shared/types.js +0 -5
  2807. package/dist/shared/types.js.map +0 -1
  2808. package/dist/skills/__tests__/mingw-escape.test.d.ts +0 -9
  2809. package/dist/skills/__tests__/mingw-escape.test.d.ts.map +0 -1
  2810. package/dist/skills/__tests__/mingw-escape.test.js +0 -150
  2811. package/dist/skills/__tests__/mingw-escape.test.js.map +0 -1
  2812. package/dist/team/__tests__/activity-log.test.d.ts +0 -2
  2813. package/dist/team/__tests__/activity-log.test.d.ts.map +0 -1
  2814. package/dist/team/__tests__/activity-log.test.js +0 -141
  2815. package/dist/team/__tests__/activity-log.test.js.map +0 -1
  2816. package/dist/team/__tests__/allocation-policy.test.d.ts +0 -2
  2817. package/dist/team/__tests__/allocation-policy.test.d.ts.map +0 -1
  2818. package/dist/team/__tests__/allocation-policy.test.js +0 -125
  2819. package/dist/team/__tests__/allocation-policy.test.js.map +0 -1
  2820. package/dist/team/__tests__/api-interop.cleanup.test.d.ts +0 -2
  2821. package/dist/team/__tests__/api-interop.cleanup.test.d.ts.map +0 -1
  2822. package/dist/team/__tests__/api-interop.cleanup.test.js +0 -129
  2823. package/dist/team/__tests__/api-interop.cleanup.test.js.map +0 -1
  2824. package/dist/team/__tests__/api-interop.command-dialect.test.d.ts +0 -2
  2825. package/dist/team/__tests__/api-interop.command-dialect.test.d.ts.map +0 -1
  2826. package/dist/team/__tests__/api-interop.command-dialect.test.js +0 -26
  2827. package/dist/team/__tests__/api-interop.command-dialect.test.js.map +0 -1
  2828. package/dist/team/__tests__/api-interop.compatibility.test.d.ts +0 -2
  2829. package/dist/team/__tests__/api-interop.compatibility.test.d.ts.map +0 -1
  2830. package/dist/team/__tests__/api-interop.compatibility.test.js +0 -93
  2831. package/dist/team/__tests__/api-interop.compatibility.test.js.map +0 -1
  2832. package/dist/team/__tests__/api-interop.cwd-resolution.test.d.ts +0 -2
  2833. package/dist/team/__tests__/api-interop.cwd-resolution.test.d.ts.map +0 -1
  2834. package/dist/team/__tests__/api-interop.cwd-resolution.test.js +0 -100
  2835. package/dist/team/__tests__/api-interop.cwd-resolution.test.js.map +0 -1
  2836. package/dist/team/__tests__/api-interop.dispatch.test.d.ts +0 -2
  2837. package/dist/team/__tests__/api-interop.dispatch.test.d.ts.map +0 -1
  2838. package/dist/team/__tests__/api-interop.dispatch.test.js +0 -184
  2839. package/dist/team/__tests__/api-interop.dispatch.test.js.map +0 -1
  2840. package/dist/team/__tests__/audit-log.test.d.ts +0 -2
  2841. package/dist/team/__tests__/audit-log.test.d.ts.map +0 -1
  2842. package/dist/team/__tests__/audit-log.test.js +0 -300
  2843. package/dist/team/__tests__/audit-log.test.js.map +0 -1
  2844. package/dist/team/__tests__/auto-cleanup.test.d.ts +0 -13
  2845. package/dist/team/__tests__/auto-cleanup.test.d.ts.map +0 -1
  2846. package/dist/team/__tests__/auto-cleanup.test.js +0 -176
  2847. package/dist/team/__tests__/auto-cleanup.test.js.map +0 -1
  2848. package/dist/team/__tests__/bridge-entry.guardrails.test.d.ts +0 -2
  2849. package/dist/team/__tests__/bridge-entry.guardrails.test.d.ts.map +0 -1
  2850. package/dist/team/__tests__/bridge-entry.guardrails.test.js +0 -33
  2851. package/dist/team/__tests__/bridge-entry.guardrails.test.js.map +0 -1
  2852. package/dist/team/__tests__/bridge-entry.test.d.ts +0 -2
  2853. package/dist/team/__tests__/bridge-entry.test.d.ts.map +0 -1
  2854. package/dist/team/__tests__/bridge-entry.test.js +0 -82
  2855. package/dist/team/__tests__/bridge-entry.test.js.map +0 -1
  2856. package/dist/team/__tests__/bridge-integration.test.d.ts +0 -2
  2857. package/dist/team/__tests__/bridge-integration.test.d.ts.map +0 -1
  2858. package/dist/team/__tests__/bridge-integration.test.js +0 -316
  2859. package/dist/team/__tests__/bridge-integration.test.js.map +0 -1
  2860. package/dist/team/__tests__/capabilities.test.d.ts +0 -2
  2861. package/dist/team/__tests__/capabilities.test.d.ts.map +0 -1
  2862. package/dist/team/__tests__/capabilities.test.js +0 -97
  2863. package/dist/team/__tests__/capabilities.test.js.map +0 -1
  2864. package/dist/team/__tests__/capture-file-snapshot.test.d.ts +0 -2
  2865. package/dist/team/__tests__/capture-file-snapshot.test.d.ts.map +0 -1
  2866. package/dist/team/__tests__/capture-file-snapshot.test.js +0 -48
  2867. package/dist/team/__tests__/capture-file-snapshot.test.js.map +0 -1
  2868. package/dist/team/__tests__/cli-detection.test.d.ts +0 -2
  2869. package/dist/team/__tests__/cli-detection.test.d.ts.map +0 -1
  2870. package/dist/team/__tests__/cli-detection.test.js +0 -36
  2871. package/dist/team/__tests__/cli-detection.test.js.map +0 -1
  2872. package/dist/team/__tests__/edge-cases.test.d.ts +0 -16
  2873. package/dist/team/__tests__/edge-cases.test.d.ts.map +0 -1
  2874. package/dist/team/__tests__/edge-cases.test.js +0 -745
  2875. package/dist/team/__tests__/edge-cases.test.js.map +0 -1
  2876. package/dist/team/__tests__/events.swallowed-error.test.d.ts +0 -2
  2877. package/dist/team/__tests__/events.swallowed-error.test.d.ts.map +0 -1
  2878. package/dist/team/__tests__/events.swallowed-error.test.js +0 -33
  2879. package/dist/team/__tests__/events.swallowed-error.test.js.map +0 -1
  2880. package/dist/team/__tests__/followup-planner.test.d.ts +0 -2
  2881. package/dist/team/__tests__/followup-planner.test.d.ts.map +0 -1
  2882. package/dist/team/__tests__/followup-planner.test.js +0 -197
  2883. package/dist/team/__tests__/followup-planner.test.js.map +0 -1
  2884. package/dist/team/__tests__/fs-utils.test.d.ts +0 -2
  2885. package/dist/team/__tests__/fs-utils.test.d.ts.map +0 -1
  2886. package/dist/team/__tests__/fs-utils.test.js +0 -69
  2887. package/dist/team/__tests__/fs-utils.test.js.map +0 -1
  2888. package/dist/team/__tests__/git-worktree.test.d.ts +0 -2
  2889. package/dist/team/__tests__/git-worktree.test.d.ts.map +0 -1
  2890. package/dist/team/__tests__/git-worktree.test.js +0 -90
  2891. package/dist/team/__tests__/git-worktree.test.js.map +0 -1
  2892. package/dist/team/__tests__/governance-enforcement.test.d.ts +0 -2
  2893. package/dist/team/__tests__/governance-enforcement.test.d.ts.map +0 -1
  2894. package/dist/team/__tests__/governance-enforcement.test.js +0 -138
  2895. package/dist/team/__tests__/governance-enforcement.test.js.map +0 -1
  2896. package/dist/team/__tests__/governance.test.d.ts +0 -2
  2897. package/dist/team/__tests__/governance.test.d.ts.map +0 -1
  2898. package/dist/team/__tests__/governance.test.js +0 -38
  2899. package/dist/team/__tests__/governance.test.js.map +0 -1
  2900. package/dist/team/__tests__/heartbeat.test.d.ts +0 -2
  2901. package/dist/team/__tests__/heartbeat.test.d.ts.map +0 -1
  2902. package/dist/team/__tests__/heartbeat.test.js +0 -92
  2903. package/dist/team/__tests__/heartbeat.test.js.map +0 -1
  2904. package/dist/team/__tests__/idle-nudge.test.d.ts +0 -11
  2905. package/dist/team/__tests__/idle-nudge.test.d.ts.map +0 -1
  2906. package/dist/team/__tests__/idle-nudge.test.js +0 -291
  2907. package/dist/team/__tests__/idle-nudge.test.js.map +0 -1
  2908. package/dist/team/__tests__/inbox-outbox.test.d.ts +0 -2
  2909. package/dist/team/__tests__/inbox-outbox.test.d.ts.map +0 -1
  2910. package/dist/team/__tests__/inbox-outbox.test.js +0 -217
  2911. package/dist/team/__tests__/inbox-outbox.test.js.map +0 -1
  2912. package/dist/team/__tests__/index.compat-exports.test.d.ts +0 -2
  2913. package/dist/team/__tests__/index.compat-exports.test.d.ts.map +0 -1
  2914. package/dist/team/__tests__/index.compat-exports.test.js +0 -20
  2915. package/dist/team/__tests__/index.compat-exports.test.js.map +0 -1
  2916. package/dist/team/__tests__/leader-nudge-guidance.test.d.ts +0 -2
  2917. package/dist/team/__tests__/leader-nudge-guidance.test.d.ts.map +0 -1
  2918. package/dist/team/__tests__/leader-nudge-guidance.test.js +0 -37
  2919. package/dist/team/__tests__/leader-nudge-guidance.test.js.map +0 -1
  2920. package/dist/team/__tests__/lifecycle-profile.test.d.ts +0 -2
  2921. package/dist/team/__tests__/lifecycle-profile.test.d.ts.map +0 -1
  2922. package/dist/team/__tests__/lifecycle-profile.test.js +0 -46
  2923. package/dist/team/__tests__/lifecycle-profile.test.js.map +0 -1
  2924. package/dist/team/__tests__/mcp-team-bridge.spawn-args.test.d.ts +0 -2
  2925. package/dist/team/__tests__/mcp-team-bridge.spawn-args.test.d.ts.map +0 -1
  2926. package/dist/team/__tests__/mcp-team-bridge.spawn-args.test.js +0 -18
  2927. package/dist/team/__tests__/mcp-team-bridge.spawn-args.test.js.map +0 -1
  2928. package/dist/team/__tests__/mcp-team-bridge.usage.test.d.ts +0 -2
  2929. package/dist/team/__tests__/mcp-team-bridge.usage.test.d.ts.map +0 -1
  2930. package/dist/team/__tests__/mcp-team-bridge.usage.test.js +0 -51
  2931. package/dist/team/__tests__/mcp-team-bridge.usage.test.js.map +0 -1
  2932. package/dist/team/__tests__/merge-coordinator.test.d.ts +0 -2
  2933. package/dist/team/__tests__/merge-coordinator.test.d.ts.map +0 -1
  2934. package/dist/team/__tests__/merge-coordinator.test.js +0 -128
  2935. package/dist/team/__tests__/merge-coordinator.test.js.map +0 -1
  2936. package/dist/team/__tests__/message-router.test.d.ts +0 -2
  2937. package/dist/team/__tests__/message-router.test.d.ts.map +0 -1
  2938. package/dist/team/__tests__/message-router.test.js +0 -78
  2939. package/dist/team/__tests__/message-router.test.js.map +0 -1
  2940. package/dist/team/__tests__/model-contract.test.d.ts +0 -2
  2941. package/dist/team/__tests__/model-contract.test.d.ts.map +0 -1
  2942. package/dist/team/__tests__/model-contract.test.js +0 -355
  2943. package/dist/team/__tests__/model-contract.test.js.map +0 -1
  2944. package/dist/team/__tests__/outbox-reader.test.d.ts +0 -2
  2945. package/dist/team/__tests__/outbox-reader.test.d.ts.map +0 -1
  2946. package/dist/team/__tests__/outbox-reader.test.js +0 -149
  2947. package/dist/team/__tests__/outbox-reader.test.js.map +0 -1
  2948. package/dist/team/__tests__/permissions.test.d.ts +0 -2
  2949. package/dist/team/__tests__/permissions.test.d.ts.map +0 -1
  2950. package/dist/team/__tests__/permissions.test.js +0 -170
  2951. package/dist/team/__tests__/permissions.test.js.map +0 -1
  2952. package/dist/team/__tests__/phase-controller.test.d.ts +0 -2
  2953. package/dist/team/__tests__/phase-controller.test.d.ts.map +0 -1
  2954. package/dist/team/__tests__/phase-controller.test.js +0 -45
  2955. package/dist/team/__tests__/phase-controller.test.js.map +0 -1
  2956. package/dist/team/__tests__/phase1-foundation.test.d.ts +0 -2
  2957. package/dist/team/__tests__/phase1-foundation.test.d.ts.map +0 -1
  2958. package/dist/team/__tests__/phase1-foundation.test.js +0 -151
  2959. package/dist/team/__tests__/phase1-foundation.test.js.map +0 -1
  2960. package/dist/team/__tests__/prompt-sanitization.test.d.ts +0 -2
  2961. package/dist/team/__tests__/prompt-sanitization.test.d.ts.map +0 -1
  2962. package/dist/team/__tests__/prompt-sanitization.test.js +0 -150
  2963. package/dist/team/__tests__/prompt-sanitization.test.js.map +0 -1
  2964. package/dist/team/__tests__/role-router.test.d.ts +0 -2
  2965. package/dist/team/__tests__/role-router.test.d.ts.map +0 -1
  2966. package/dist/team/__tests__/role-router.test.js +0 -122
  2967. package/dist/team/__tests__/role-router.test.js.map +0 -1
  2968. package/dist/team/__tests__/runtime-assign.test.d.ts +0 -2
  2969. package/dist/team/__tests__/runtime-assign.test.d.ts.map +0 -1
  2970. package/dist/team/__tests__/runtime-assign.test.js +0 -43
  2971. package/dist/team/__tests__/runtime-assign.test.js.map +0 -1
  2972. package/dist/team/__tests__/runtime-cli.test.d.ts +0 -2
  2973. package/dist/team/__tests__/runtime-cli.test.d.ts.map +0 -1
  2974. package/dist/team/__tests__/runtime-cli.test.js +0 -159
  2975. package/dist/team/__tests__/runtime-cli.test.js.map +0 -1
  2976. package/dist/team/__tests__/runtime-done-recovery.test.d.ts +0 -2
  2977. package/dist/team/__tests__/runtime-done-recovery.test.d.ts.map +0 -1
  2978. package/dist/team/__tests__/runtime-done-recovery.test.js +0 -78
  2979. package/dist/team/__tests__/runtime-done-recovery.test.js.map +0 -1
  2980. package/dist/team/__tests__/runtime-prompt-mode.test.d.ts +0 -2
  2981. package/dist/team/__tests__/runtime-prompt-mode.test.d.ts.map +0 -1
  2982. package/dist/team/__tests__/runtime-prompt-mode.test.js +0 -394
  2983. package/dist/team/__tests__/runtime-prompt-mode.test.js.map +0 -1
  2984. package/dist/team/__tests__/runtime-v2.dispatch.test.d.ts +0 -2
  2985. package/dist/team/__tests__/runtime-v2.dispatch.test.d.ts.map +0 -1
  2986. package/dist/team/__tests__/runtime-v2.dispatch.test.js +0 -345
  2987. package/dist/team/__tests__/runtime-v2.dispatch.test.js.map +0 -1
  2988. package/dist/team/__tests__/runtime-v2.feature-flag.test.d.ts +0 -2
  2989. package/dist/team/__tests__/runtime-v2.feature-flag.test.d.ts.map +0 -1
  2990. package/dist/team/__tests__/runtime-v2.feature-flag.test.js +0 -20
  2991. package/dist/team/__tests__/runtime-v2.feature-flag.test.js.map +0 -1
  2992. package/dist/team/__tests__/runtime-v2.monitor.test.d.ts +0 -2
  2993. package/dist/team/__tests__/runtime-v2.monitor.test.d.ts.map +0 -1
  2994. package/dist/team/__tests__/runtime-v2.monitor.test.js +0 -148
  2995. package/dist/team/__tests__/runtime-v2.monitor.test.js.map +0 -1
  2996. package/dist/team/__tests__/runtime-v2.shutdown-pane-cleanup.test.d.ts +0 -2
  2997. package/dist/team/__tests__/runtime-v2.shutdown-pane-cleanup.test.d.ts.map +0 -1
  2998. package/dist/team/__tests__/runtime-v2.shutdown-pane-cleanup.test.js +0 -110
  2999. package/dist/team/__tests__/runtime-v2.shutdown-pane-cleanup.test.js.map +0 -1
  3000. package/dist/team/__tests__/runtime-v2.shutdown.test.d.ts +0 -2
  3001. package/dist/team/__tests__/runtime-v2.shutdown.test.d.ts.map +0 -1
  3002. package/dist/team/__tests__/runtime-v2.shutdown.test.js +0 -49
  3003. package/dist/team/__tests__/runtime-v2.shutdown.test.js.map +0 -1
  3004. package/dist/team/__tests__/runtime-watchdog-retry.test.d.ts +0 -2
  3005. package/dist/team/__tests__/runtime-watchdog-retry.test.d.ts.map +0 -1
  3006. package/dist/team/__tests__/runtime-watchdog-retry.test.js +0 -411
  3007. package/dist/team/__tests__/runtime-watchdog-retry.test.js.map +0 -1
  3008. package/dist/team/__tests__/runtime.test.d.ts +0 -2
  3009. package/dist/team/__tests__/runtime.test.d.ts.map +0 -1
  3010. package/dist/team/__tests__/runtime.test.js +0 -37
  3011. package/dist/team/__tests__/runtime.test.js.map +0 -1
  3012. package/dist/team/__tests__/scaling.test.d.ts +0 -2
  3013. package/dist/team/__tests__/scaling.test.d.ts.map +0 -1
  3014. package/dist/team/__tests__/scaling.test.js +0 -44
  3015. package/dist/team/__tests__/scaling.test.js.map +0 -1
  3016. package/dist/team/__tests__/shell-affinity.test.d.ts +0 -2
  3017. package/dist/team/__tests__/shell-affinity.test.d.ts.map +0 -1
  3018. package/dist/team/__tests__/shell-affinity.test.js +0 -98
  3019. package/dist/team/__tests__/shell-affinity.test.js.map +0 -1
  3020. package/dist/team/__tests__/state-paths.test.d.ts +0 -2
  3021. package/dist/team/__tests__/state-paths.test.d.ts.map +0 -1
  3022. package/dist/team/__tests__/state-paths.test.js +0 -19
  3023. package/dist/team/__tests__/state-paths.test.js.map +0 -1
  3024. package/dist/team/__tests__/summary-report.test.d.ts +0 -2
  3025. package/dist/team/__tests__/summary-report.test.d.ts.map +0 -1
  3026. package/dist/team/__tests__/summary-report.test.js +0 -194
  3027. package/dist/team/__tests__/summary-report.test.js.map +0 -1
  3028. package/dist/team/__tests__/task-file-ops.test.d.ts +0 -2
  3029. package/dist/team/__tests__/task-file-ops.test.d.ts.map +0 -1
  3030. package/dist/team/__tests__/task-file-ops.test.js +0 -351
  3031. package/dist/team/__tests__/task-file-ops.test.js.map +0 -1
  3032. package/dist/team/__tests__/task-router.test.d.ts +0 -2
  3033. package/dist/team/__tests__/task-router.test.d.ts.map +0 -1
  3034. package/dist/team/__tests__/task-router.test.js +0 -118
  3035. package/dist/team/__tests__/task-router.test.js.map +0 -1
  3036. package/dist/team/__tests__/team-leader-nudge-hook.logging.test.d.ts +0 -2
  3037. package/dist/team/__tests__/team-leader-nudge-hook.logging.test.d.ts.map +0 -1
  3038. package/dist/team/__tests__/team-leader-nudge-hook.logging.test.js +0 -63
  3039. package/dist/team/__tests__/team-leader-nudge-hook.logging.test.js.map +0 -1
  3040. package/dist/team/__tests__/team-leader-nudge-hook.test.d.ts +0 -2
  3041. package/dist/team/__tests__/team-leader-nudge-hook.test.d.ts.map +0 -1
  3042. package/dist/team/__tests__/team-leader-nudge-hook.test.js +0 -90
  3043. package/dist/team/__tests__/team-leader-nudge-hook.test.js.map +0 -1
  3044. package/dist/team/__tests__/team-name.test.d.ts +0 -2
  3045. package/dist/team/__tests__/team-name.test.d.ts.map +0 -1
  3046. package/dist/team/__tests__/team-name.test.js +0 -18
  3047. package/dist/team/__tests__/team-name.test.js.map +0 -1
  3048. package/dist/team/__tests__/team-registration.test.d.ts +0 -2
  3049. package/dist/team/__tests__/team-registration.test.d.ts.map +0 -1
  3050. package/dist/team/__tests__/team-registration.test.js +0 -86
  3051. package/dist/team/__tests__/team-registration.test.js.map +0 -1
  3052. package/dist/team/__tests__/team-status.test.d.ts +0 -2
  3053. package/dist/team/__tests__/team-status.test.d.ts.map +0 -1
  3054. package/dist/team/__tests__/team-status.test.js +0 -186
  3055. package/dist/team/__tests__/team-status.test.js.map +0 -1
  3056. package/dist/team/__tests__/tmux-comm.test.d.ts +0 -2
  3057. package/dist/team/__tests__/tmux-comm.test.d.ts.map +0 -1
  3058. package/dist/team/__tests__/tmux-comm.test.js +0 -27
  3059. package/dist/team/__tests__/tmux-comm.test.js.map +0 -1
  3060. package/dist/team/__tests__/tmux-session.create-team.test.d.ts +0 -2
  3061. package/dist/team/__tests__/tmux-session.create-team.test.d.ts.map +0 -1
  3062. package/dist/team/__tests__/tmux-session.create-team.test.js +0 -163
  3063. package/dist/team/__tests__/tmux-session.create-team.test.js.map +0 -1
  3064. package/dist/team/__tests__/tmux-session.kill-team-session.test.d.ts +0 -2
  3065. package/dist/team/__tests__/tmux-session.kill-team-session.test.d.ts.map +0 -1
  3066. package/dist/team/__tests__/tmux-session.kill-team-session.test.js +0 -94
  3067. package/dist/team/__tests__/tmux-session.kill-team-session.test.js.map +0 -1
  3068. package/dist/team/__tests__/tmux-session.spawn.test.d.ts +0 -2
  3069. package/dist/team/__tests__/tmux-session.spawn.test.d.ts.map +0 -1
  3070. package/dist/team/__tests__/tmux-session.spawn.test.js +0 -70
  3071. package/dist/team/__tests__/tmux-session.spawn.test.js.map +0 -1
  3072. package/dist/team/__tests__/tmux-session.test.d.ts +0 -2
  3073. package/dist/team/__tests__/tmux-session.test.d.ts.map +0 -1
  3074. package/dist/team/__tests__/tmux-session.test.js +0 -298
  3075. package/dist/team/__tests__/tmux-session.test.js.map +0 -1
  3076. package/dist/team/__tests__/unified-team.test.d.ts +0 -2
  3077. package/dist/team/__tests__/unified-team.test.d.ts.map +0 -1
  3078. package/dist/team/__tests__/unified-team.test.js +0 -77
  3079. package/dist/team/__tests__/unified-team.test.js.map +0 -1
  3080. package/dist/team/__tests__/usage-tracker.test.d.ts +0 -2
  3081. package/dist/team/__tests__/usage-tracker.test.d.ts.map +0 -1
  3082. package/dist/team/__tests__/usage-tracker.test.js +0 -104
  3083. package/dist/team/__tests__/usage-tracker.test.js.map +0 -1
  3084. package/dist/team/__tests__/worker-bootstrap.test.d.ts +0 -2
  3085. package/dist/team/__tests__/worker-bootstrap.test.d.ts.map +0 -1
  3086. package/dist/team/__tests__/worker-bootstrap.test.js +0 -143
  3087. package/dist/team/__tests__/worker-bootstrap.test.js.map +0 -1
  3088. package/dist/team/__tests__/worker-canonicalization.test.d.ts +0 -2
  3089. package/dist/team/__tests__/worker-canonicalization.test.d.ts.map +0 -1
  3090. package/dist/team/__tests__/worker-canonicalization.test.js +0 -35
  3091. package/dist/team/__tests__/worker-canonicalization.test.js.map +0 -1
  3092. package/dist/team/__tests__/worker-health.test.d.ts +0 -2
  3093. package/dist/team/__tests__/worker-health.test.d.ts.map +0 -1
  3094. package/dist/team/__tests__/worker-health.test.js +0 -129
  3095. package/dist/team/__tests__/worker-health.test.js.map +0 -1
  3096. package/dist/team/__tests__/worker-restart.test.d.ts +0 -2
  3097. package/dist/team/__tests__/worker-restart.test.d.ts.map +0 -1
  3098. package/dist/team/__tests__/worker-restart.test.js +0 -124
  3099. package/dist/team/__tests__/worker-restart.test.js.map +0 -1
  3100. package/dist/team/activity-log.d.ts +0 -23
  3101. package/dist/team/activity-log.d.ts.map +0 -1
  3102. package/dist/team/activity-log.js +0 -102
  3103. package/dist/team/activity-log.js.map +0 -1
  3104. package/dist/team/allocation-policy.d.ts +0 -34
  3105. package/dist/team/allocation-policy.d.ts.map +0 -1
  3106. package/dist/team/allocation-policy.js +0 -92
  3107. package/dist/team/allocation-policy.js.map +0 -1
  3108. package/dist/team/api-interop.d.ts +0 -20
  3109. package/dist/team/api-interop.d.ts.map +0 -1
  3110. package/dist/team/api-interop.js +0 -797
  3111. package/dist/team/api-interop.js.map +0 -1
  3112. package/dist/team/audit-log.d.ts +0 -29
  3113. package/dist/team/audit-log.d.ts.map +0 -1
  3114. package/dist/team/audit-log.js +0 -93
  3115. package/dist/team/audit-log.js.map +0 -1
  3116. package/dist/team/bridge-entry.d.ts +0 -7
  3117. package/dist/team/bridge-entry.d.ts.map +0 -1
  3118. package/dist/team/bridge-entry.js +0 -193
  3119. package/dist/team/bridge-entry.js.map +0 -1
  3120. package/dist/team/capabilities.d.ts +0 -30
  3121. package/dist/team/capabilities.d.ts.map +0 -1
  3122. package/dist/team/capabilities.js +0 -54
  3123. package/dist/team/capabilities.js.map +0 -1
  3124. package/dist/team/cli-detection.d.ts +0 -9
  3125. package/dist/team/cli-detection.d.ts.map +0 -1
  3126. package/dist/team/cli-detection.js +0 -33
  3127. package/dist/team/cli-detection.js.map +0 -1
  3128. package/dist/team/contracts.d.ts +0 -14
  3129. package/dist/team/contracts.d.ts.map +0 -1
  3130. package/dist/team/contracts.js +0 -32
  3131. package/dist/team/contracts.js.map +0 -1
  3132. package/dist/team/dispatch-queue.d.ts +0 -64
  3133. package/dist/team/dispatch-queue.d.ts.map +0 -1
  3134. package/dist/team/dispatch-queue.js +0 -288
  3135. package/dist/team/dispatch-queue.js.map +0 -1
  3136. package/dist/team/events.d.ts +0 -49
  3137. package/dist/team/events.d.ts.map +0 -1
  3138. package/dist/team/events.js +0 -115
  3139. package/dist/team/events.js.map +0 -1
  3140. package/dist/team/followup-planner.d.ts +0 -32
  3141. package/dist/team/followup-planner.d.ts.map +0 -1
  3142. package/dist/team/followup-planner.js +0 -82
  3143. package/dist/team/followup-planner.js.map +0 -1
  3144. package/dist/team/fs-utils.d.ts +0 -14
  3145. package/dist/team/fs-utils.d.ts.map +0 -1
  3146. package/dist/team/fs-utils.js +0 -91
  3147. package/dist/team/fs-utils.js.map +0 -1
  3148. package/dist/team/git-worktree.d.ts +0 -26
  3149. package/dist/team/git-worktree.d.ts.map +0 -1
  3150. package/dist/team/git-worktree.js +0 -148
  3151. package/dist/team/git-worktree.js.map +0 -1
  3152. package/dist/team/governance.d.ts +0 -18
  3153. package/dist/team/governance.d.ts.map +0 -1
  3154. package/dist/team/governance.js +0 -68
  3155. package/dist/team/governance.js.map +0 -1
  3156. package/dist/team/heartbeat.d.ts +0 -18
  3157. package/dist/team/heartbeat.d.ts.map +0 -1
  3158. package/dist/team/heartbeat.js +0 -110
  3159. package/dist/team/heartbeat.js.map +0 -1
  3160. package/dist/team/idle-nudge.d.ts +0 -53
  3161. package/dist/team/idle-nudge.d.ts.map +0 -1
  3162. package/dist/team/idle-nudge.js +0 -124
  3163. package/dist/team/idle-nudge.js.map +0 -1
  3164. package/dist/team/inbox-outbox.d.ts +0 -58
  3165. package/dist/team/inbox-outbox.d.ts.map +0 -1
  3166. package/dist/team/inbox-outbox.js +0 -338
  3167. package/dist/team/inbox-outbox.js.map +0 -1
  3168. package/dist/team/index.d.ts +0 -69
  3169. package/dist/team/index.d.ts.map +0 -1
  3170. package/dist/team/index.js +0 -49
  3171. package/dist/team/index.js.map +0 -1
  3172. package/dist/team/layout-stabilizer.d.ts +0 -23
  3173. package/dist/team/layout-stabilizer.d.ts.map +0 -1
  3174. package/dist/team/layout-stabilizer.js +0 -117
  3175. package/dist/team/layout-stabilizer.js.map +0 -1
  3176. package/dist/team/leader-nudge-guidance.d.ts +0 -23
  3177. package/dist/team/leader-nudge-guidance.d.ts.map +0 -1
  3178. package/dist/team/leader-nudge-guidance.js +0 -44
  3179. package/dist/team/leader-nudge-guidance.js.map +0 -1
  3180. package/dist/team/mcp-comm.d.ts +0 -99
  3181. package/dist/team/mcp-comm.d.ts.map +0 -1
  3182. package/dist/team/mcp-comm.js +0 -249
  3183. package/dist/team/mcp-comm.js.map +0 -1
  3184. package/dist/team/mcp-team-bridge.d.ts +0 -26
  3185. package/dist/team/mcp-team-bridge.d.ts.map +0 -1
  3186. package/dist/team/mcp-team-bridge.js +0 -869
  3187. package/dist/team/mcp-team-bridge.js.map +0 -1
  3188. package/dist/team/merge-coordinator.d.ts +0 -27
  3189. package/dist/team/merge-coordinator.d.ts.map +0 -1
  3190. package/dist/team/merge-coordinator.js +0 -140
  3191. package/dist/team/merge-coordinator.js.map +0 -1
  3192. package/dist/team/message-router.d.ts +0 -21
  3193. package/dist/team/message-router.d.ts.map +0 -1
  3194. package/dist/team/message-router.js +0 -82
  3195. package/dist/team/message-router.js.map +0 -1
  3196. package/dist/team/model-contract.d.ts +0 -81
  3197. package/dist/team/model-contract.d.ts.map +0 -1
  3198. package/dist/team/model-contract.js +0 -355
  3199. package/dist/team/model-contract.js.map +0 -1
  3200. package/dist/team/monitor.d.ts +0 -45
  3201. package/dist/team/monitor.d.ts.map +0 -1
  3202. package/dist/team/monitor.js +0 -406
  3203. package/dist/team/monitor.js.map +0 -1
  3204. package/dist/team/outbox-reader.d.ts +0 -22
  3205. package/dist/team/outbox-reader.d.ts.map +0 -1
  3206. package/dist/team/outbox-reader.js +0 -116
  3207. package/dist/team/outbox-reader.js.map +0 -1
  3208. package/dist/team/permissions.d.ts +0 -47
  3209. package/dist/team/permissions.d.ts.map +0 -1
  3210. package/dist/team/permissions.js +0 -219
  3211. package/dist/team/permissions.js.map +0 -1
  3212. package/dist/team/phase-controller.d.ts +0 -33
  3213. package/dist/team/phase-controller.d.ts.map +0 -1
  3214. package/dist/team/phase-controller.js +0 -79
  3215. package/dist/team/phase-controller.js.map +0 -1
  3216. package/dist/team/role-router.d.ts +0 -36
  3217. package/dist/team/role-router.d.ts.map +0 -1
  3218. package/dist/team/role-router.js +0 -215
  3219. package/dist/team/role-router.js.map +0 -1
  3220. package/dist/team/runtime-cli.d.ts +0 -33
  3221. package/dist/team/runtime-cli.d.ts.map +0 -1
  3222. package/dist/team/runtime-cli.js +0 -444
  3223. package/dist/team/runtime-cli.js.map +0 -1
  3224. package/dist/team/runtime-v2.d.ts +0 -127
  3225. package/dist/team/runtime-v2.d.ts.map +0 -1
  3226. package/dist/team/runtime-v2.js +0 -1053
  3227. package/dist/team/runtime-v2.js.map +0 -1
  3228. package/dist/team/runtime.d.ts +0 -102
  3229. package/dist/team/runtime.d.ts.map +0 -1
  3230. package/dist/team/runtime.js +0 -824
  3231. package/dist/team/runtime.js.map +0 -1
  3232. package/dist/team/scaling.d.ts +0 -59
  3233. package/dist/team/scaling.d.ts.map +0 -1
  3234. package/dist/team/scaling.js +0 -320
  3235. package/dist/team/scaling.js.map +0 -1
  3236. package/dist/team/sentinel-gate.d.ts +0 -23
  3237. package/dist/team/sentinel-gate.d.ts.map +0 -1
  3238. package/dist/team/sentinel-gate.js +0 -127
  3239. package/dist/team/sentinel-gate.js.map +0 -1
  3240. package/dist/team/state/tasks.d.ts +0 -48
  3241. package/dist/team/state/tasks.d.ts.map +0 -1
  3242. package/dist/team/state/tasks.js +0 -184
  3243. package/dist/team/state/tasks.js.map +0 -1
  3244. package/dist/team/state-paths.d.ts +0 -88
  3245. package/dist/team/state-paths.d.ts.map +0 -1
  3246. package/dist/team/state-paths.js +0 -110
  3247. package/dist/team/state-paths.js.map +0 -1
  3248. package/dist/team/summary-report.d.ts +0 -11
  3249. package/dist/team/summary-report.d.ts.map +0 -1
  3250. package/dist/team/summary-report.js +0 -101
  3251. package/dist/team/summary-report.js.map +0 -1
  3252. package/dist/team/task-file-ops.d.ts +0 -97
  3253. package/dist/team/task-file-ops.d.ts.map +0 -1
  3254. package/dist/team/task-file-ops.js +0 -388
  3255. package/dist/team/task-file-ops.js.map +0 -1
  3256. package/dist/team/task-router.d.ts +0 -28
  3257. package/dist/team/task-router.d.ts.map +0 -1
  3258. package/dist/team/task-router.js +0 -91
  3259. package/dist/team/task-router.js.map +0 -1
  3260. package/dist/team/team-name.d.ts +0 -2
  3261. package/dist/team/team-name.d.ts.map +0 -1
  3262. package/dist/team/team-name.js +0 -8
  3263. package/dist/team/team-name.js.map +0 -1
  3264. package/dist/team/team-ops.d.ts +0 -44
  3265. package/dist/team/team-ops.d.ts.map +0 -1
  3266. package/dist/team/team-ops.js +0 -591
  3267. package/dist/team/team-ops.js.map +0 -1
  3268. package/dist/team/team-registration.d.ts +0 -30
  3269. package/dist/team/team-registration.d.ts.map +0 -1
  3270. package/dist/team/team-registration.js +0 -191
  3271. package/dist/team/team-registration.js.map +0 -1
  3272. package/dist/team/team-status.d.ts +0 -39
  3273. package/dist/team/team-status.d.ts.map +0 -1
  3274. package/dist/team/team-status.js +0 -127
  3275. package/dist/team/team-status.js.map +0 -1
  3276. package/dist/team/tmux-comm.d.ts +0 -36
  3277. package/dist/team/tmux-comm.d.ts.map +0 -1
  3278. package/dist/team/tmux-comm.js +0 -181
  3279. package/dist/team/tmux-comm.js.map +0 -1
  3280. package/dist/team/tmux-session.d.ts +0 -156
  3281. package/dist/team/tmux-session.d.ts.map +0 -1
  3282. package/dist/team/tmux-session.js +0 -886
  3283. package/dist/team/tmux-session.js.map +0 -1
  3284. package/dist/team/types.d.ts +0 -438
  3285. package/dist/team/types.d.ts.map +0 -1
  3286. package/dist/team/types.js +0 -4
  3287. package/dist/team/types.js.map +0 -1
  3288. package/dist/team/unified-team.d.ts +0 -16
  3289. package/dist/team/unified-team.d.ts.map +0 -1
  3290. package/dist/team/unified-team.js +0 -92
  3291. package/dist/team/unified-team.js.map +0 -1
  3292. package/dist/team/usage-tracker.d.ts +0 -44
  3293. package/dist/team/usage-tracker.d.ts.map +0 -1
  3294. package/dist/team/usage-tracker.js +0 -102
  3295. package/dist/team/usage-tracker.js.map +0 -1
  3296. package/dist/team/worker-bootstrap.d.ts +0 -41
  3297. package/dist/team/worker-bootstrap.d.ts.map +0 -1
  3298. package/dist/team/worker-bootstrap.js +0 -216
  3299. package/dist/team/worker-bootstrap.js.map +0 -1
  3300. package/dist/team/worker-canonicalization.d.ts +0 -8
  3301. package/dist/team/worker-canonicalization.d.ts.map +0 -1
  3302. package/dist/team/worker-canonicalization.js +0 -98
  3303. package/dist/team/worker-canonicalization.js.map +0 -1
  3304. package/dist/team/worker-health.d.ts +0 -29
  3305. package/dist/team/worker-health.d.ts.map +0 -1
  3306. package/dist/team/worker-health.js +0 -116
  3307. package/dist/team/worker-health.js.map +0 -1
  3308. package/dist/team/worker-restart.d.ts +0 -38
  3309. package/dist/team/worker-restart.d.ts.map +0 -1
  3310. package/dist/team/worker-restart.js +0 -100
  3311. package/dist/team/worker-restart.js.map +0 -1
  3312. package/dist/testing/analyzers/complexity.d.ts +0 -18
  3313. package/dist/testing/analyzers/complexity.d.ts.map +0 -1
  3314. package/dist/testing/analyzers/complexity.js +0 -121
  3315. package/dist/testing/analyzers/complexity.js.map +0 -1
  3316. package/dist/testing/analyzers/coverage.d.ts +0 -13
  3317. package/dist/testing/analyzers/coverage.d.ts.map +0 -1
  3318. package/dist/testing/analyzers/coverage.js +0 -99
  3319. package/dist/testing/analyzers/coverage.js.map +0 -1
  3320. package/dist/testing/analyzers/quality-scorer.d.ts +0 -8
  3321. package/dist/testing/analyzers/quality-scorer.d.ts.map +0 -1
  3322. package/dist/testing/analyzers/quality-scorer.js +0 -128
  3323. package/dist/testing/analyzers/quality-scorer.js.map +0 -1
  3324. package/dist/testing/analyzers/types.d.ts +0 -56
  3325. package/dist/testing/analyzers/types.d.ts.map +0 -1
  3326. package/dist/testing/analyzers/types.js +0 -2
  3327. package/dist/testing/analyzers/types.js.map +0 -1
  3328. package/dist/testing/cli/agent-integration.d.ts +0 -20
  3329. package/dist/testing/cli/agent-integration.d.ts.map +0 -1
  3330. package/dist/testing/cli/agent-integration.js +0 -60
  3331. package/dist/testing/cli/agent-integration.js.map +0 -1
  3332. package/dist/testing/cli/commands.d.ts +0 -89
  3333. package/dist/testing/cli/commands.d.ts.map +0 -1
  3334. package/dist/testing/cli/commands.js +0 -228
  3335. package/dist/testing/cli/commands.js.map +0 -1
  3336. package/dist/testing/cli/ultraqa-integration.d.ts +0 -13
  3337. package/dist/testing/cli/ultraqa-integration.d.ts.map +0 -1
  3338. package/dist/testing/cli/ultraqa-integration.js +0 -68
  3339. package/dist/testing/cli/ultraqa-integration.js.map +0 -1
  3340. package/dist/testing/detectors/go.d.ts +0 -3
  3341. package/dist/testing/detectors/go.d.ts.map +0 -1
  3342. package/dist/testing/detectors/go.js +0 -38
  3343. package/dist/testing/detectors/go.js.map +0 -1
  3344. package/dist/testing/detectors/index.d.ts +0 -8
  3345. package/dist/testing/detectors/index.d.ts.map +0 -1
  3346. package/dist/testing/detectors/index.js +0 -46
  3347. package/dist/testing/detectors/index.js.map +0 -1
  3348. package/dist/testing/detectors/package-json.d.ts +0 -3
  3349. package/dist/testing/detectors/package-json.d.ts.map +0 -1
  3350. package/dist/testing/detectors/package-json.js +0 -52
  3351. package/dist/testing/detectors/package-json.js.map +0 -1
  3352. package/dist/testing/detectors/python.d.ts +0 -3
  3353. package/dist/testing/detectors/python.d.ts.map +0 -1
  3354. package/dist/testing/detectors/python.js +0 -37
  3355. package/dist/testing/detectors/python.js.map +0 -1
  3356. package/dist/testing/detectors/rust.d.ts +0 -3
  3357. package/dist/testing/detectors/rust.d.ts.map +0 -1
  3358. package/dist/testing/detectors/rust.js +0 -39
  3359. package/dist/testing/detectors/rust.js.map +0 -1
  3360. package/dist/testing/generators/contract.d.ts +0 -14
  3361. package/dist/testing/generators/contract.d.ts.map +0 -1
  3362. package/dist/testing/generators/contract.js +0 -163
  3363. package/dist/testing/generators/contract.js.map +0 -1
  3364. package/dist/testing/generators/e2e.d.ts +0 -34
  3365. package/dist/testing/generators/e2e.d.ts.map +0 -1
  3366. package/dist/testing/generators/e2e.js +0 -74
  3367. package/dist/testing/generators/e2e.js.map +0 -1
  3368. package/dist/testing/generators/go.d.ts +0 -12
  3369. package/dist/testing/generators/go.d.ts.map +0 -1
  3370. package/dist/testing/generators/go.js +0 -144
  3371. package/dist/testing/generators/go.js.map +0 -1
  3372. package/dist/testing/generators/nodejs.d.ts +0 -12
  3373. package/dist/testing/generators/nodejs.d.ts.map +0 -1
  3374. package/dist/testing/generators/nodejs.js +0 -37
  3375. package/dist/testing/generators/nodejs.js.map +0 -1
  3376. package/dist/testing/generators/python.d.ts +0 -12
  3377. package/dist/testing/generators/python.d.ts.map +0 -1
  3378. package/dist/testing/generators/python.js +0 -163
  3379. package/dist/testing/generators/python.js.map +0 -1
  3380. package/dist/testing/generators/react.d.ts +0 -12
  3381. package/dist/testing/generators/react.d.ts.map +0 -1
  3382. package/dist/testing/generators/react.js +0 -31
  3383. package/dist/testing/generators/react.js.map +0 -1
  3384. package/dist/testing/generators/rust.d.ts +0 -11
  3385. package/dist/testing/generators/rust.d.ts.map +0 -1
  3386. package/dist/testing/generators/rust.js +0 -138
  3387. package/dist/testing/generators/rust.js.map +0 -1
  3388. package/dist/testing/index.d.ts +0 -6
  3389. package/dist/testing/index.d.ts.map +0 -1
  3390. package/dist/testing/index.js +0 -11
  3391. package/dist/testing/index.js.map +0 -1
  3392. package/dist/testing/integrations/autopilot.d.ts +0 -42
  3393. package/dist/testing/integrations/autopilot.d.ts.map +0 -1
  3394. package/dist/testing/integrations/autopilot.js +0 -55
  3395. package/dist/testing/integrations/autopilot.js.map +0 -1
  3396. package/dist/testing/integrations/cicd.d.ts +0 -26
  3397. package/dist/testing/integrations/cicd.d.ts.map +0 -1
  3398. package/dist/testing/integrations/cicd.js +0 -162
  3399. package/dist/testing/integrations/cicd.js.map +0 -1
  3400. package/dist/testing/integrations/giskard/behavioral-tests.d.ts +0 -4
  3401. package/dist/testing/integrations/giskard/behavioral-tests.d.ts.map +0 -1
  3402. package/dist/testing/integrations/giskard/behavioral-tests.js +0 -66
  3403. package/dist/testing/integrations/giskard/behavioral-tests.js.map +0 -1
  3404. package/dist/testing/integrations/giskard/types.d.ts +0 -35
  3405. package/dist/testing/integrations/giskard/types.d.ts.map +0 -1
  3406. package/dist/testing/integrations/giskard/types.js +0 -2
  3407. package/dist/testing/integrations/giskard/types.js.map +0 -1
  3408. package/dist/testing/integrations/ralph.d.ts +0 -65
  3409. package/dist/testing/integrations/ralph.d.ts.map +0 -1
  3410. package/dist/testing/integrations/ralph.js +0 -69
  3411. package/dist/testing/integrations/ralph.js.map +0 -1
  3412. package/dist/testing/performance/cache-manager.d.ts +0 -16
  3413. package/dist/testing/performance/cache-manager.d.ts.map +0 -1
  3414. package/dist/testing/performance/cache-manager.js +0 -39
  3415. package/dist/testing/performance/cache-manager.js.map +0 -1
  3416. package/dist/testing/performance/parallel-generator.d.ts +0 -23
  3417. package/dist/testing/performance/parallel-generator.d.ts.map +0 -1
  3418. package/dist/testing/performance/parallel-generator.js +0 -31
  3419. package/dist/testing/performance/parallel-generator.js.map +0 -1
  3420. package/dist/testing/types.d.ts +0 -23
  3421. package/dist/testing/types.d.ts.map +0 -1
  3422. package/dist/testing/types.js +0 -2
  3423. package/dist/testing/types.js.map +0 -1
  3424. package/dist/tools/__tests__/cancel-integration.test.d.ts +0 -2
  3425. package/dist/tools/__tests__/cancel-integration.test.d.ts.map +0 -1
  3426. package/dist/tools/__tests__/cancel-integration.test.js +0 -303
  3427. package/dist/tools/__tests__/cancel-integration.test.js.map +0 -1
  3428. package/dist/tools/__tests__/deepinit-manifest.test.d.ts +0 -7
  3429. package/dist/tools/__tests__/deepinit-manifest.test.d.ts.map +0 -1
  3430. package/dist/tools/__tests__/deepinit-manifest.test.js +0 -559
  3431. package/dist/tools/__tests__/deepinit-manifest.test.js.map +0 -1
  3432. package/dist/tools/__tests__/memory-tools.test.d.ts +0 -2
  3433. package/dist/tools/__tests__/memory-tools.test.d.ts.map +0 -1
  3434. package/dist/tools/__tests__/memory-tools.test.js +0 -94
  3435. package/dist/tools/__tests__/memory-tools.test.js.map +0 -1
  3436. package/dist/tools/__tests__/schema-conversion.test.d.ts +0 -11
  3437. package/dist/tools/__tests__/schema-conversion.test.d.ts.map +0 -1
  3438. package/dist/tools/__tests__/schema-conversion.test.js +0 -270
  3439. package/dist/tools/__tests__/schema-conversion.test.js.map +0 -1
  3440. package/dist/tools/__tests__/state-tools.test.d.ts +0 -2
  3441. package/dist/tools/__tests__/state-tools.test.d.ts.map +0 -1
  3442. package/dist/tools/__tests__/state-tools.test.js +0 -450
  3443. package/dist/tools/__tests__/state-tools.test.js.map +0 -1
  3444. package/dist/tools/ast-tools.d.ts +0 -63
  3445. package/dist/tools/ast-tools.d.ts.map +0 -1
  3446. package/dist/tools/ast-tools.js +0 -507
  3447. package/dist/tools/ast-tools.js.map +0 -1
  3448. package/dist/tools/deepinit-manifest.d.ts +0 -88
  3449. package/dist/tools/deepinit-manifest.d.ts.map +0 -1
  3450. package/dist/tools/deepinit-manifest.js +0 -373
  3451. package/dist/tools/deepinit-manifest.js.map +0 -1
  3452. package/dist/tools/diagnostics/index.d.ts +0 -29
  3453. package/dist/tools/diagnostics/index.d.ts.map +0 -1
  3454. package/dist/tools/diagnostics/index.js +0 -118
  3455. package/dist/tools/diagnostics/index.js.map +0 -1
  3456. package/dist/tools/diagnostics/lsp-aggregator.d.ts +0 -26
  3457. package/dist/tools/diagnostics/lsp-aggregator.d.ts.map +0 -1
  3458. package/dist/tools/diagnostics/lsp-aggregator.js +0 -99
  3459. package/dist/tools/diagnostics/lsp-aggregator.js.map +0 -1
  3460. package/dist/tools/diagnostics/tsc-runner.d.ts +0 -26
  3461. package/dist/tools/diagnostics/tsc-runner.d.ts.map +0 -1
  3462. package/dist/tools/diagnostics/tsc-runner.js +0 -70
  3463. package/dist/tools/diagnostics/tsc-runner.js.map +0 -1
  3464. package/dist/tools/index.d.ts +0 -53
  3465. package/dist/tools/index.d.ts.map +0 -1
  3466. package/dist/tools/index.js +0 -123
  3467. package/dist/tools/index.js.map +0 -1
  3468. package/dist/tools/lsp/__tests__/client-devcontainer.test.d.ts +0 -2
  3469. package/dist/tools/lsp/__tests__/client-devcontainer.test.d.ts.map +0 -1
  3470. package/dist/tools/lsp/__tests__/client-devcontainer.test.js +0 -185
  3471. package/dist/tools/lsp/__tests__/client-devcontainer.test.js.map +0 -1
  3472. package/dist/tools/lsp/__tests__/client-eviction.test.d.ts +0 -2
  3473. package/dist/tools/lsp/__tests__/client-eviction.test.d.ts.map +0 -1
  3474. package/dist/tools/lsp/__tests__/client-eviction.test.js +0 -343
  3475. package/dist/tools/lsp/__tests__/client-eviction.test.js.map +0 -1
  3476. package/dist/tools/lsp/__tests__/client-handle-data.test.d.ts +0 -2
  3477. package/dist/tools/lsp/__tests__/client-handle-data.test.d.ts.map +0 -1
  3478. package/dist/tools/lsp/__tests__/client-handle-data.test.js +0 -138
  3479. package/dist/tools/lsp/__tests__/client-handle-data.test.js.map +0 -1
  3480. package/dist/tools/lsp/__tests__/client-singleton.test.d.ts +0 -2
  3481. package/dist/tools/lsp/__tests__/client-singleton.test.d.ts.map +0 -1
  3482. package/dist/tools/lsp/__tests__/client-singleton.test.js +0 -17
  3483. package/dist/tools/lsp/__tests__/client-singleton.test.js.map +0 -1
  3484. package/dist/tools/lsp/__tests__/client-timeout-env.test.d.ts +0 -2
  3485. package/dist/tools/lsp/__tests__/client-timeout-env.test.d.ts.map +0 -1
  3486. package/dist/tools/lsp/__tests__/client-timeout-env.test.js +0 -55
  3487. package/dist/tools/lsp/__tests__/client-timeout-env.test.js.map +0 -1
  3488. package/dist/tools/lsp/__tests__/client-win32-spawn.test.d.ts +0 -2
  3489. package/dist/tools/lsp/__tests__/client-win32-spawn.test.d.ts.map +0 -1
  3490. package/dist/tools/lsp/__tests__/client-win32-spawn.test.js +0 -84
  3491. package/dist/tools/lsp/__tests__/client-win32-spawn.test.js.map +0 -1
  3492. package/dist/tools/lsp/__tests__/devcontainer.test.d.ts +0 -2
  3493. package/dist/tools/lsp/__tests__/devcontainer.test.d.ts.map +0 -1
  3494. package/dist/tools/lsp/__tests__/devcontainer.test.js +0 -311
  3495. package/dist/tools/lsp/__tests__/devcontainer.test.js.map +0 -1
  3496. package/dist/tools/lsp/client.d.ts +0 -278
  3497. package/dist/tools/lsp/client.d.ts.map +0 -1
  3498. package/dist/tools/lsp/client.js +0 -873
  3499. package/dist/tools/lsp/client.js.map +0 -1
  3500. package/dist/tools/lsp/devcontainer.d.ts +0 -12
  3501. package/dist/tools/lsp/devcontainer.d.ts.map +0 -1
  3502. package/dist/tools/lsp/devcontainer.js +0 -276
  3503. package/dist/tools/lsp/devcontainer.js.map +0 -1
  3504. package/dist/tools/lsp/index.d.ts +0 -11
  3505. package/dist/tools/lsp/index.d.ts.map +0 -1
  3506. package/dist/tools/lsp/index.js +0 -8
  3507. package/dist/tools/lsp/index.js.map +0 -1
  3508. package/dist/tools/lsp/servers.d.ts +0 -38
  3509. package/dist/tools/lsp/servers.d.ts.map +0 -1
  3510. package/dist/tools/lsp/servers.js +0 -237
  3511. package/dist/tools/lsp/servers.js.map +0 -1
  3512. package/dist/tools/lsp/utils.d.ts +0 -58
  3513. package/dist/tools/lsp/utils.d.ts.map +0 -1
  3514. package/dist/tools/lsp/utils.js +0 -248
  3515. package/dist/tools/lsp/utils.js.map +0 -1
  3516. package/dist/tools/lsp-tools.d.ts +0 -151
  3517. package/dist/tools/lsp-tools.d.ts.map +0 -1
  3518. package/dist/tools/lsp-tools.js +0 -410
  3519. package/dist/tools/lsp-tools.js.map +0 -1
  3520. package/dist/tools/memory-tools.d.ts +0 -48
  3521. package/dist/tools/memory-tools.d.ts.map +0 -1
  3522. package/dist/tools/memory-tools.js +0 -231
  3523. package/dist/tools/memory-tools.js.map +0 -1
  3524. package/dist/tools/notepad-tools.d.ts +0 -49
  3525. package/dist/tools/notepad-tools.d.ts.map +0 -1
  3526. package/dist/tools/notepad-tools.js +0 -303
  3527. package/dist/tools/notepad-tools.js.map +0 -1
  3528. package/dist/tools/python-repl/__tests__/bridge-manager-cleanup.test.d.ts +0 -2
  3529. package/dist/tools/python-repl/__tests__/bridge-manager-cleanup.test.d.ts.map +0 -1
  3530. package/dist/tools/python-repl/__tests__/bridge-manager-cleanup.test.js +0 -109
  3531. package/dist/tools/python-repl/__tests__/bridge-manager-cleanup.test.js.map +0 -1
  3532. package/dist/tools/python-repl/__tests__/tcp-fallback.test.d.ts +0 -2
  3533. package/dist/tools/python-repl/__tests__/tcp-fallback.test.d.ts.map +0 -1
  3534. package/dist/tools/python-repl/__tests__/tcp-fallback.test.js +0 -138
  3535. package/dist/tools/python-repl/__tests__/tcp-fallback.test.js.map +0 -1
  3536. package/dist/tools/python-repl/bridge-manager.d.ts +0 -93
  3537. package/dist/tools/python-repl/bridge-manager.d.ts.map +0 -1
  3538. package/dist/tools/python-repl/bridge-manager.js +0 -744
  3539. package/dist/tools/python-repl/bridge-manager.js.map +0 -1
  3540. package/dist/tools/python-repl/index.d.ts +0 -40
  3541. package/dist/tools/python-repl/index.d.ts.map +0 -1
  3542. package/dist/tools/python-repl/index.js +0 -36
  3543. package/dist/tools/python-repl/index.js.map +0 -1
  3544. package/dist/tools/python-repl/paths.d.ts +0 -92
  3545. package/dist/tools/python-repl/paths.d.ts.map +0 -1
  3546. package/dist/tools/python-repl/paths.js +0 -228
  3547. package/dist/tools/python-repl/paths.js.map +0 -1
  3548. package/dist/tools/python-repl/session-lock.d.ts +0 -111
  3549. package/dist/tools/python-repl/session-lock.d.ts.map +0 -1
  3550. package/dist/tools/python-repl/session-lock.js +0 -494
  3551. package/dist/tools/python-repl/session-lock.js.map +0 -1
  3552. package/dist/tools/python-repl/socket-client.d.ts +0 -42
  3553. package/dist/tools/python-repl/socket-client.d.ts.map +0 -1
  3554. package/dist/tools/python-repl/socket-client.js +0 -194
  3555. package/dist/tools/python-repl/socket-client.js.map +0 -1
  3556. package/dist/tools/python-repl/tool.d.ts +0 -100
  3557. package/dist/tools/python-repl/tool.d.ts.map +0 -1
  3558. package/dist/tools/python-repl/tool.js +0 -571
  3559. package/dist/tools/python-repl/tool.js.map +0 -1
  3560. package/dist/tools/python-repl/types.d.ts +0 -95
  3561. package/dist/tools/python-repl/types.d.ts.map +0 -1
  3562. package/dist/tools/python-repl/types.js +0 -2
  3563. package/dist/tools/python-repl/types.js.map +0 -1
  3564. package/dist/tools/resume-session.d.ts +0 -63
  3565. package/dist/tools/resume-session.d.ts.map +0 -1
  3566. package/dist/tools/resume-session.js +0 -106
  3567. package/dist/tools/resume-session.js.map +0 -1
  3568. package/dist/tools/session-history-tools.d.ts +0 -23
  3569. package/dist/tools/session-history-tools.d.ts.map +0 -1
  3570. package/dist/tools/session-history-tools.js +0 -41
  3571. package/dist/tools/session-history-tools.js.map +0 -1
  3572. package/dist/tools/shared-memory-tools.d.ts +0 -55
  3573. package/dist/tools/shared-memory-tools.d.ts.map +0 -1
  3574. package/dist/tools/shared-memory-tools.js +0 -250
  3575. package/dist/tools/shared-memory-tools.js.map +0 -1
  3576. package/dist/tools/skills-tools.d.ts +0 -75
  3577. package/dist/tools/skills-tools.d.ts.map +0 -1
  3578. package/dist/tools/skills-tools.js +0 -151
  3579. package/dist/tools/skills-tools.js.map +0 -1
  3580. package/dist/tools/state-tools.d.ts +0 -74
  3581. package/dist/tools/state-tools.d.ts.map +0 -1
  3582. package/dist/tools/state-tools.js +0 -888
  3583. package/dist/tools/state-tools.js.map +0 -1
  3584. package/dist/tools/trace-tools.d.ts +0 -40
  3585. package/dist/tools/trace-tools.d.ts.map +0 -1
  3586. package/dist/tools/trace-tools.js +0 -415
  3587. package/dist/tools/trace-tools.js.map +0 -1
  3588. package/dist/tools/types.d.ts +0 -48
  3589. package/dist/tools/types.d.ts.map +0 -1
  3590. package/dist/tools/types.js +0 -8
  3591. package/dist/tools/types.js.map +0 -1
  3592. package/dist/utils/__tests__/frontmatter.test.d.ts +0 -2
  3593. package/dist/utils/__tests__/frontmatter.test.d.ts.map +0 -1
  3594. package/dist/utils/__tests__/frontmatter.test.js +0 -147
  3595. package/dist/utils/__tests__/frontmatter.test.js.map +0 -1
  3596. package/dist/utils/__tests__/paths.test.d.ts +0 -2
  3597. package/dist/utils/__tests__/paths.test.d.ts.map +0 -1
  3598. package/dist/utils/__tests__/paths.test.js +0 -173
  3599. package/dist/utils/__tests__/paths.test.js.map +0 -1
  3600. package/dist/utils/__tests__/string-width.test.d.ts +0 -6
  3601. package/dist/utils/__tests__/string-width.test.d.ts.map +0 -1
  3602. package/dist/utils/__tests__/string-width.test.js +0 -173
  3603. package/dist/utils/__tests__/string-width.test.js.map +0 -1
  3604. package/dist/utils/config-dir.d.ts +0 -2
  3605. package/dist/utils/config-dir.d.ts.map +0 -1
  3606. package/dist/utils/config-dir.js +0 -6
  3607. package/dist/utils/config-dir.js.map +0 -1
  3608. package/dist/utils/daemon-module-path.d.ts +0 -9
  3609. package/dist/utils/daemon-module-path.d.ts.map +0 -1
  3610. package/dist/utils/daemon-module-path.js +0 -23
  3611. package/dist/utils/daemon-module-path.js.map +0 -1
  3612. package/dist/utils/frontmatter.d.ts +0 -29
  3613. package/dist/utils/frontmatter.d.ts.map +0 -1
  3614. package/dist/utils/frontmatter.js +0 -84
  3615. package/dist/utils/frontmatter.js.map +0 -1
  3616. package/dist/utils/jsonc.d.ts +0 -16
  3617. package/dist/utils/jsonc.d.ts.map +0 -1
  3618. package/dist/utils/jsonc.js +0 -68
  3619. package/dist/utils/jsonc.js.map +0 -1
  3620. package/dist/utils/omc-cli-rendering.d.ts +0 -8
  3621. package/dist/utils/omc-cli-rendering.d.ts.map +0 -1
  3622. package/dist/utils/omc-cli-rendering.js +0 -37
  3623. package/dist/utils/omc-cli-rendering.js.map +0 -1
  3624. package/dist/utils/paths.d.ts +0 -92
  3625. package/dist/utils/paths.d.ts.map +0 -1
  3626. package/dist/utils/paths.js +0 -308
  3627. package/dist/utils/paths.js.map +0 -1
  3628. package/dist/utils/resolve-node.d.ts +0 -26
  3629. package/dist/utils/resolve-node.d.ts.map +0 -1
  3630. package/dist/utils/resolve-node.js +0 -112
  3631. package/dist/utils/resolve-node.js.map +0 -1
  3632. package/dist/utils/skill-pipeline.d.ts +0 -9
  3633. package/dist/utils/skill-pipeline.d.ts.map +0 -1
  3634. package/dist/utils/skill-pipeline.js +0 -97
  3635. package/dist/utils/skill-pipeline.js.map +0 -1
  3636. package/dist/utils/skill-resources.d.ts +0 -7
  3637. package/dist/utils/skill-resources.d.ts.map +0 -1
  3638. package/dist/utils/skill-resources.js +0 -53
  3639. package/dist/utils/skill-resources.js.map +0 -1
  3640. package/dist/utils/ssrf-guard.d.ts +0 -26
  3641. package/dist/utils/ssrf-guard.d.ts.map +0 -1
  3642. package/dist/utils/ssrf-guard.js +0 -125
  3643. package/dist/utils/ssrf-guard.js.map +0 -1
  3644. package/dist/utils/string-width.d.ts +0 -80
  3645. package/dist/utils/string-width.d.ts.map +0 -1
  3646. package/dist/utils/string-width.js +0 -230
  3647. package/dist/utils/string-width.js.map +0 -1
  3648. package/dist/verification/tier-selector.d.ts +0 -40
  3649. package/dist/verification/tier-selector.d.ts.map +0 -1
  3650. package/dist/verification/tier-selector.js +0 -95
  3651. package/dist/verification/tier-selector.js.map +0 -1
  3652. package/dist/verification/tier-selector.test.d.ts +0 -2
  3653. package/dist/verification/tier-selector.test.d.ts.map +0 -1
  3654. package/dist/verification/tier-selector.test.js +0 -282
  3655. package/dist/verification/tier-selector.test.js.map +0 -1
  3656. package/docs/2026-03-06-llm-testing-system-phase1.md +0 -0
  3657. package/docs/AGENTS.md +0 -102
  3658. package/docs/ANALYTICS-SYSTEM.md +0 -38
  3659. package/docs/ARCHITECTURE.md +0 -583
  3660. package/docs/CJK-IME-KNOWN-ISSUES.md +0 -179
  3661. package/docs/CLAUDE.md +0 -85
  3662. package/docs/COMPATIBILITY.md +0 -1068
  3663. package/docs/DELEGATION-ENFORCER.md +0 -277
  3664. package/docs/FEATURES.md +0 -582
  3665. package/docs/LOCAL_PLUGIN_INSTALL.md +0 -108
  3666. package/docs/MIGRATION.md +0 -987
  3667. package/docs/OPENCLAW-ROUTING.md +0 -102
  3668. package/docs/PERFORMANCE-MONITORING.md +0 -505
  3669. package/docs/REFERENCE.md +0 -843
  3670. package/docs/SYNC-SYSTEM.md +0 -526
  3671. package/docs/TIERED_AGENTS_V2.md +0 -323
  3672. package/docs/agent-templates/README.md +0 -110
  3673. package/docs/agent-templates/base-agent.md +0 -63
  3674. package/docs/agent-templates/tier-instructions.md +0 -94
  3675. package/docs/design/CONSOLIDATION_PHASE3_ROADMAP.md +0 -97
  3676. package/docs/design/SKILLS_2_0_ADAPTATION.md +0 -115
  3677. package/docs/design/SKILL_AUDIT_1445.md +0 -75
  3678. package/docs/design/project-session-manager.md +0 -1033
  3679. package/docs/fixes/agent-prefix-routing-fix.md +0 -105
  3680. package/docs/issues/windows-hud-missing.png +0 -0
  3681. package/docs/ko/ARCHITECTURE.md +0 -152
  3682. package/docs/ko/FEATURES.md +0 -582
  3683. package/docs/ko/MIGRATION.md +0 -987
  3684. package/docs/ko/REFERENCE.md +0 -723
  3685. package/docs/partials/agent-tiers.md +0 -156
  3686. package/docs/partials/features.md +0 -122
  3687. package/docs/partials/mode-hierarchy.md +0 -105
  3688. package/docs/partials/mode-selection-guide.md +0 -92
  3689. package/docs/partials/verification-tiers.md +0 -107
  3690. package/docs/plans/2026-02-26-skill-optimization-design.md +0 -158
  3691. package/docs/plans/2026-02-26-skill-optimization-impl.md +0 -606
  3692. package/docs/plans/2026-03-06-llm-testing-system-design.md +0 -311
  3693. package/docs/plans/2026-03-06-llm-testing-system-phase1.md +0 -1268
  3694. package/docs/plans/2026-03-06-llm-testing-system-phase2.md +0 -3053
  3695. package/docs/plans/2026-03-06-llm-testing-system-phase3.md +0 -1830
  3696. package/docs/shared/agent-tiers.md +0 -156
  3697. package/docs/shared/features.md +0 -122
  3698. package/docs/shared/mode-hierarchy.md +0 -105
  3699. package/docs/shared/mode-selection-guide.md +0 -92
  3700. package/docs/shared/verification-tiers.md +0 -107
  3701. package/docs/testing/IMPLEMENTATION.md +0 -804
  3702. package/docs/testing/PHASE2.md +0 -266
  3703. package/docs/testing/PHASE3.md +0 -601
  3704. package/docs/testing/README.md +0 -634
  3705. package/scripts/build-bridge-entry.mjs +0 -52
  3706. package/scripts/build-cli.mjs +0 -47
  3707. package/scripts/build-mcp-server.mjs +0 -54
  3708. package/scripts/build-runtime-cli.mjs +0 -26
  3709. package/scripts/build-skill-bridge.mjs +0 -32
  3710. package/scripts/build-team-server.mjs +0 -28
  3711. package/scripts/cleanup-orphans.mjs +0 -209
  3712. package/scripts/code-simplifier.mjs +0 -193
  3713. package/scripts/compose-docs.mjs +0 -44
  3714. package/scripts/context-guard-stop.mjs +0 -268
  3715. package/scripts/context-safety.mjs +0 -28
  3716. package/scripts/demo-team.mjs +0 -26
  3717. package/scripts/eval-autoresearch-json.mjs +0 -49
  3718. package/scripts/eval-autoresearch-timed-json.mjs +0 -62
  3719. package/scripts/find-node.sh +0 -90
  3720. package/scripts/generate-featured-contributors.ts +0 -43
  3721. package/scripts/keyword-detector.mjs +0 -647
  3722. package/scripts/lib/atomic-write.mjs +0 -95
  3723. package/scripts/lib/stdin.mjs +0 -64
  3724. package/scripts/openclaw-gateway-demo.mjs +0 -168
  3725. package/scripts/permission-handler.mjs +0 -21
  3726. package/scripts/persistent-mode.cjs +0 -1098
  3727. package/scripts/persistent-mode.mjs +0 -963
  3728. package/scripts/plugin-setup.mjs +0 -265
  3729. package/scripts/post-tool-use-failure.mjs +0 -177
  3730. package/scripts/post-tool-verifier.mjs +0 -498
  3731. package/scripts/pre-compact.mjs +0 -21
  3732. package/scripts/pre-tool-enforcer.mjs +0 -699
  3733. package/scripts/project-memory-posttool.mjs +0 -79
  3734. package/scripts/project-memory-precompact.mjs +0 -33
  3735. package/scripts/project-memory-session.mjs +0 -80
  3736. package/scripts/qa-tests/test-custom-integration.mjs +0 -144
  3737. package/scripts/release.ts +0 -511
  3738. package/scripts/run-provider-advisor.js +0 -253
  3739. package/scripts/run.cjs +0 -114
  3740. package/scripts/session-end.mjs +0 -22
  3741. package/scripts/session-start.mjs +0 -676
  3742. package/scripts/session-summary.mjs +0 -241
  3743. package/scripts/setup-claude-md.sh +0 -296
  3744. package/scripts/setup-init.mjs +0 -21
  3745. package/scripts/setup-maintenance.mjs +0 -21
  3746. package/scripts/setup-progress.sh +0 -123
  3747. package/scripts/skill-injector.mjs +0 -293
  3748. package/scripts/status.mjs +0 -144
  3749. package/scripts/subagent-tracker.mjs +0 -34
  3750. package/scripts/sync-metadata.ts +0 -407
  3751. package/scripts/sync-version.sh +0 -42
  3752. package/scripts/test-max-attempts.ts +0 -94
  3753. package/scripts/test-mutual-exclusion.ts +0 -152
  3754. package/scripts/test-notepad-integration.ts +0 -495
  3755. package/scripts/test-pr25.sh +0 -525
  3756. package/scripts/test-remember-tags.ts +0 -121
  3757. package/scripts/test-session-injection.ts +0 -41
  3758. package/scripts/uninstall.sh +0 -169
  3759. package/scripts/verify-deliverables.mjs +0 -234
  3760. package/skills/conductor/SKILL.md +0 -200
  3761. package/templates/deliverables.json +0 -25
  3762. package/templates/hooks/code-simplifier.mjs +0 -200
  3763. package/templates/hooks/keyword-detector.mjs +0 -578
  3764. package/templates/hooks/lib/atomic-write.mjs +0 -93
  3765. package/templates/hooks/lib/stdin.mjs +0 -62
  3766. package/templates/hooks/persistent-mode.mjs +0 -1113
  3767. package/templates/hooks/post-tool-use-failure.mjs +0 -180
  3768. package/templates/hooks/post-tool-use.mjs +0 -203
  3769. package/templates/hooks/pre-tool-use.mjs +0 -403
  3770. package/templates/hooks/session-start.mjs +0 -457
  3771. package/templates/hooks/stop-continuation.mjs +0 -20
  3772. package/templates/rules/README.md +0 -41
  3773. package/templates/rules/coding-style.md +0 -74
  3774. package/templates/rules/git-workflow.md +0 -41
  3775. package/templates/rules/karpathy-guidelines.md +0 -59
  3776. package/templates/rules/performance.md +0 -40
  3777. package/templates/rules/security.md +0 -41
  3778. package/templates/rules/testing.md +0 -42
  3779. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/analyst.md +0 -0
  3780. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/architect.md +0 -0
  3781. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/code-reviewer.md +0 -0
  3782. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/code-simplifier.md +0 -0
  3783. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/critic.md +0 -0
  3784. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/debugger.md +0 -0
  3785. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/designer.md +0 -0
  3786. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/document-specialist.md +0 -0
  3787. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/executor.md +0 -0
  3788. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/explore.md +0 -0
  3789. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/git-master.md +0 -0
  3790. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/planner.md +0 -0
  3791. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/qa-tester.md +0 -0
  3792. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/scientist.md +0 -0
  3793. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/security-reviewer.md +0 -0
  3794. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/test-engineer.md +0 -0
  3795. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/tracer.md +0 -0
  3796. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/verifier.md +0 -0
  3797. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/writer.md +0 -0
  3798. /package/{hooks → bundled/upstream/oh-my-claudecode/hooks}/hooks.json +0 -0
  3799. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/AGENTS.md +0 -0
  3800. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/ai-commenting/SKILL.md +0 -0
  3801. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/ai-slop-cleaner/SKILL.md +0 -0
  3802. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/analyze/SKILL.md +0 -0
  3803. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/ask/SKILL.md +0 -0
  3804. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/autopilot/SKILL.md +0 -0
  3805. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/bdd-generator/SKILL.md +0 -0
  3806. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/cancel/SKILL.md +0 -0
  3807. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/ccg/SKILL.md +0 -0
  3808. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/configure-notifications/SKILL.md +0 -0
  3809. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/deep-dive/SKILL.md +0 -0
  3810. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/deep-interview/SKILL.md +0 -0
  3811. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/deepinit/SKILL.md +0 -0
  3812. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/e2e/SKILL.md +0 -0
  3813. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/electron-driver/SKILL.md +0 -0
  3814. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/electron-driver/scripts/driver-template.js +0 -0
  3815. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/external-context/SKILL.md +0 -0
  3816. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/hud/SKILL.md +0 -0
  3817. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/learner/SKILL.md +0 -0
  3818. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/mcp-setup/SKILL.md +0 -0
  3819. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/multi-model-research/SKILL.md +0 -0
  3820. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/omc-doctor/SKILL.md +0 -0
  3821. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/omc-doctor/skill-debugger.md +0 -0
  3822. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/omc-reference/SKILL.md +0 -0
  3823. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/omc-setup/SKILL.md +0 -0
  3824. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/omc-setup/phases/01-install-claude-md.md +0 -0
  3825. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/omc-setup/phases/02-configure.md +0 -0
  3826. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/omc-setup/phases/03-integrations.md +0 -0
  3827. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/omc-setup/phases/04-welcome.md +0 -0
  3828. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/omc-teams/SKILL.md +0 -0
  3829. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/plan/SKILL.md +0 -0
  3830. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/planning-with-files/SKILL.md +0 -0
  3831. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/planning-with-files/examples.md +0 -0
  3832. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/planning-with-files/reference.md +0 -0
  3833. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/planning-with-files/scripts/check-complete.ps1 +0 -0
  3834. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/planning-with-files/scripts/check-complete.sh +0 -0
  3835. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/planning-with-files/scripts/init-session.ps1 +0 -0
  3836. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/planning-with-files/scripts/init-session.sh +0 -0
  3837. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/planning-with-files/scripts/session-catchup.py +0 -0
  3838. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/planning-with-files/templates/findings.md +0 -0
  3839. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/planning-with-files/templates/progress.md +0 -0
  3840. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/planning-with-files/templates/task_plan.md +0 -0
  3841. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/SKILL.md +0 -0
  3842. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/lib/config.sh +0 -0
  3843. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/lib/parse.sh +0 -0
  3844. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/lib/providers/azure-devops.sh +0 -0
  3845. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/lib/providers/bitbucket.sh +0 -0
  3846. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/lib/providers/gitea.sh +0 -0
  3847. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/lib/providers/github.sh +0 -0
  3848. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/lib/providers/gitlab.sh +0 -0
  3849. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/lib/providers/interface.sh +0 -0
  3850. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/lib/providers/jira.sh +0 -0
  3851. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/lib/session.sh +0 -0
  3852. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/lib/tmux.sh +0 -0
  3853. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/lib/worktree.sh +0 -0
  3854. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/psm.sh +0 -0
  3855. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/templates/feature.md +0 -0
  3856. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/templates/issue-fix.md +0 -0
  3857. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/templates/pr-review.md +0 -0
  3858. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/templates/projects.json +0 -0
  3859. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/quick-init-project/SKILL.md +0 -0
  3860. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/ralph/SKILL.md +0 -0
  3861. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/ralplan/SKILL.md +0 -0
  3862. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/release/SKILL.md +0 -0
  3863. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/sciomc/SKILL.md +0 -0
  3864. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/setup/SKILL.md +0 -0
  3865. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/skill/SKILL.md +0 -0
  3866. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/skill-creator/SKILL.md +0 -0
  3867. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/skill-creator/references/upstream-anthropic-skill-creator.md +0 -0
  3868. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/skill-debugger/README.md +0 -0
  3869. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/skill-debugger/SKILL.md +0 -0
  3870. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/skill-quality-analyzer/HOW_TO_USE.md +0 -0
  3871. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/skill-quality-analyzer/README.md +0 -0
  3872. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/skill-quality-analyzer/SKILL.md +0 -0
  3873. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/skill-quality-analyzer/analyzer.py +0 -0
  3874. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/skill-quality-analyzer/expected_output.json +0 -0
  3875. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/skill-quality-analyzer/sample_input.json +0 -0
  3876. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/skill-tester/README.md +0 -0
  3877. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/skill-tester/SKILL.md +0 -0
  3878. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/start-dev/SKILL.md +0 -0
  3879. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/tdd-generator/SKILL.md +0 -0
  3880. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/team/SKILL.md +0 -0
  3881. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/test-coverage/SKILL.md +0 -0
  3882. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/test-gen/SKILL.md +0 -0
  3883. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/trace/SKILL.md +0 -0
  3884. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/ultraqa/SKILL.md +0 -0
  3885. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/ultraqa.md +0 -0
  3886. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/ultrawork/SKILL.md +0 -0
  3887. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/visual-verdict/SKILL.md +0 -0
  3888. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/writer-memory/SKILL.md +0 -0
  3889. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/writer-memory/lib/character-tracker.ts +0 -0
  3890. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/writer-memory/lib/memory-manager.ts +0 -0
  3891. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/writer-memory/lib/relationship-graph.ts +0 -0
  3892. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/writer-memory/lib/scene-organizer.ts +0 -0
  3893. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/writer-memory/lib/synopsis-builder.ts +0 -0
  3894. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/writer-memory/templates/synopsis-template.md +0 -0
@@ -1,1509 +0,0 @@
1
- import { describe, it, expect, vi, beforeEach, afterEach } from 'vitest';
2
- import { removeCodeBlocks, sanitizeForKeywordDetection, extractPromptText, detectKeywordsWithType, hasKeyword, getPrimaryKeyword, getAllKeywords, getAllKeywordsWithSizeCheck, isUnderspecifiedForExecution, applyRalplanGate, NON_LATIN_SCRIPT_PATTERN, } from '../index.js';
3
- // Mock isTeamEnabled
4
- vi.mock('../../../features/auto-update.js', () => ({
5
- isTeamEnabled: vi.fn(() => true),
6
- }));
7
- import { isTeamEnabled } from '../../../features/auto-update.js';
8
- const mockedIsTeamEnabled = vi.mocked(isTeamEnabled);
9
- describe('keyword-detector', () => {
10
- describe('removeCodeBlocks', () => {
11
- it('should remove fenced code blocks with triple backticks', () => {
12
- const text = 'Before ```code here``` after';
13
- expect(removeCodeBlocks(text)).toBe('Before after');
14
- });
15
- it('should remove fenced code blocks with tildes', () => {
16
- const text = 'Before ~~~code here~~~ after';
17
- expect(removeCodeBlocks(text)).toBe('Before after');
18
- });
19
- it('should remove multiline fenced code blocks', () => {
20
- const text = `Hello
21
- \`\`\`javascript
22
- const x = 1;
23
- const y = 2;
24
- \`\`\`
25
- World`;
26
- expect(removeCodeBlocks(text)).toBe(`Hello
27
-
28
- World`);
29
- });
30
- it('should remove inline code with single backticks', () => {
31
- const text = 'Use `autopilot` command here';
32
- expect(removeCodeBlocks(text)).toBe('Use command here');
33
- });
34
- it('should handle nested backticks in fenced blocks', () => {
35
- // The regex matches ```...``` greedily, so ```const x = `test````
36
- // matches from first ``` to the triple backtick at the end
37
- const text = 'Before ```const x = `test` ``` after';
38
- expect(removeCodeBlocks(text)).toBe('Before after');
39
- });
40
- it('should handle multiple code blocks', () => {
41
- const text = '`a` middle `b` end';
42
- expect(removeCodeBlocks(text)).toBe(' middle end');
43
- });
44
- it('should handle empty input', () => {
45
- expect(removeCodeBlocks('')).toBe('');
46
- });
47
- it('should return text unchanged when no code blocks', () => {
48
- const text = 'Regular text without code';
49
- expect(removeCodeBlocks(text)).toBe('Regular text without code');
50
- });
51
- it('should handle code blocks with language specifier', () => {
52
- const text = '```typescript\nconst x = 1;\n``` done';
53
- expect(removeCodeBlocks(text)).toBe(' done');
54
- });
55
- });
56
- describe('sanitizeForKeywordDetection', () => {
57
- it('should strip XML tag blocks', () => {
58
- const result = sanitizeForKeywordDetection('<system-reminder>ralph</system-reminder>');
59
- expect(result).not.toContain('ralph');
60
- });
61
- it('should strip self-closing XML tags', () => {
62
- const result = sanitizeForKeywordDetection('text <br /> more');
63
- expect(result).not.toContain('<br');
64
- });
65
- it('should strip URLs', () => {
66
- const result = sanitizeForKeywordDetection('see https://example.com/codex/path');
67
- expect(result).not.toContain('codex');
68
- });
69
- it('should strip file paths', () => {
70
- const result = sanitizeForKeywordDetection('open src/mcp/codex-core.ts');
71
- expect(result).not.toContain('codex');
72
- });
73
- it('should strip markdown code blocks', () => {
74
- const result = sanitizeForKeywordDetection('```\nask codex\n```');
75
- expect(result).not.toContain('codex');
76
- });
77
- it('should strip inline code', () => {
78
- const result = sanitizeForKeywordDetection('use `ask codex` command');
79
- expect(result).not.toContain('codex');
80
- });
81
- it('should preserve normal text', () => {
82
- const result = sanitizeForKeywordDetection('ask codex to review');
83
- expect(result).toContain('ask codex');
84
- });
85
- it('should not over-strip when XML tag names differ', () => {
86
- // Mismatched tags should not strip content between them
87
- const result = sanitizeForKeywordDetection('<open>ralph</close> hello');
88
- expect(result).toContain('ralph');
89
- });
90
- it('should strip matching XML tags correctly', () => {
91
- const result = sanitizeForKeywordDetection('<div>ralph</div> hello');
92
- expect(result).not.toContain('ralph');
93
- expect(result).toContain('hello');
94
- });
95
- it('should strip nested matching XML tags', () => {
96
- const result = sanitizeForKeywordDetection('<outer>some <inner>text</inner> ralph</outer> visible');
97
- expect(result).not.toContain('ralph');
98
- expect(result).toContain('visible');
99
- });
100
- it('should strip absolute file paths starting with /', () => {
101
- const result = sanitizeForKeywordDetection('open /usr/local/bin/codex');
102
- expect(result).not.toContain('codex');
103
- });
104
- it('should strip relative file paths starting with ./', () => {
105
- const result = sanitizeForKeywordDetection('edit ./src/codex.ts');
106
- expect(result).not.toContain('codex');
107
- });
108
- it('should strip multi-segment file paths', () => {
109
- const result = sanitizeForKeywordDetection('open src/mcp/codex-core.ts');
110
- expect(result).not.toContain('codex');
111
- });
112
- it('should NOT strip standalone words that look like single segments', () => {
113
- // "ask codex" should not be stripped since "codex" is not a path
114
- const result = sanitizeForKeywordDetection('ask codex to review');
115
- expect(result).toContain('ask codex');
116
- });
117
- it('should NOT strip slash-less words with dots', () => {
118
- // "file.txt" alone (no path separator) should be kept
119
- const result = sanitizeForKeywordDetection('rename codex.config');
120
- expect(result).toContain('codex');
121
- });
122
- });
123
- describe('extractPromptText', () => {
124
- it('should extract text from text parts', () => {
125
- const parts = [
126
- { type: 'text', text: 'Hello' },
127
- { type: 'text', text: 'World' },
128
- ];
129
- expect(extractPromptText(parts)).toBe('Hello World');
130
- });
131
- it('should ignore non-text parts', () => {
132
- const parts = [
133
- { type: 'text', text: 'Hello' },
134
- { type: 'image', url: 'http://example.com' },
135
- { type: 'text', text: 'World' },
136
- ];
137
- expect(extractPromptText(parts)).toBe('Hello World');
138
- });
139
- it('should handle empty parts array', () => {
140
- expect(extractPromptText([])).toBe('');
141
- });
142
- it('should handle parts with no text', () => {
143
- const parts = [
144
- { type: 'text' },
145
- { type: 'text', text: 'Valid' },
146
- ];
147
- expect(extractPromptText(parts)).toBe('Valid');
148
- });
149
- it('should handle undefined text gracefully', () => {
150
- const parts = [
151
- { type: 'text', text: undefined },
152
- { type: 'text', text: 'Hello' },
153
- ];
154
- expect(extractPromptText(parts)).toBe('Hello');
155
- });
156
- it('should handle all non-text parts', () => {
157
- const parts = [
158
- { type: 'image' },
159
- { type: 'tool_use' },
160
- ];
161
- expect(extractPromptText(parts)).toBe('');
162
- });
163
- });
164
- describe('detectKeywordsWithType', () => {
165
- describe('ralph keyword', () => {
166
- it('should detect ralph keyword', () => {
167
- const result = detectKeywordsWithType('Please ralph this task');
168
- const ralphMatch = result.find((r) => r.type === 'ralph');
169
- expect(ralphMatch).toBeDefined();
170
- expect(ralphMatch?.keyword).toBe('ralph');
171
- });
172
- it('should NOT detect informational Korean questions about ralph and ralplan', () => {
173
- const result = detectKeywordsWithType('ralph 와 ralplan 은 뭐야?');
174
- expect(result).toEqual([]);
175
- });
176
- it('should NOT detect informational English questions about ralph', () => {
177
- const result = detectKeywordsWithType('What is ralph and how do I use it?');
178
- expect(result).toEqual([]);
179
- });
180
- it('should NOT detect informational Japanese questions about ralplan', () => {
181
- const result = detectKeywordsWithType('ralplan とは? 使い方を教えて');
182
- expect(result).toEqual([]);
183
- });
184
- it('should NOT detect informational Chinese questions about ralph', () => {
185
- const result = detectKeywordsWithType('ralph 是什么?怎么用?');
186
- expect(result).toEqual([]);
187
- });
188
- it('Korean informational prompt does not trigger keyword', () => {
189
- // "알려줘" (tell me about) is informational
190
- expect(detectKeywordsWithType('오토파일럿 기능 알려줘')).toHaveLength(0);
191
- expect(detectKeywordsWithType('랄프 뭐야')).toHaveLength(0);
192
- expect(detectKeywordsWithType('울트라워크 사용법 설명해줘')).toHaveLength(0);
193
- expect(detectKeywordsWithType('딥인터뷰 방법 소개해줘')).toHaveLength(0);
194
- });
195
- it('Korean expanded informational phrases do not trigger keyword', () => {
196
- // "뭔데" (what is it), "어떤 기능이야", "소개 부탁", "알려줄래", "뭐가 달라" are informational
197
- expect(detectKeywordsWithType('오토파일럿이 뭔데')).toHaveLength(0);
198
- expect(detectKeywordsWithType('안티슬롭이 뭐야')).toHaveLength(0);
199
- expect(detectKeywordsWithType('오토파일럿 어떤 기능이야')).toHaveLength(0);
200
- expect(detectKeywordsWithType('랄프 소개 부탁해')).toHaveLength(0);
201
- expect(detectKeywordsWithType('울트라워크 알려줄래')).toHaveLength(0);
202
- expect(detectKeywordsWithType('오토파일럿이 랄프랑 뭐가 달라')).toHaveLength(0);
203
- });
204
- it('Korean imperative command with 기능/방법 SHOULD trigger keyword (not filtered)', () => {
205
- // "기능 켜줘" / "기능으로 진행해줘" — 기능 alone without a question verb is NOT informational
206
- const autopilotResult = detectKeywordsWithType('오토파일럿 기능 켜고 버그 고쳐줘');
207
- expect(autopilotResult.find((r) => r.type === 'autopilot')).toBeDefined();
208
- const ralphResult = detectKeywordsWithType('랄프 기능으로 끝까지 진행해줘');
209
- expect(ralphResult.find((r) => r.type === 'ralph')).toBeDefined();
210
- });
211
- it('should NOT detect "don\'t stop" phrase', () => {
212
- const result = detectKeywordsWithType("Don't stop until done");
213
- const ralphMatch = result.find((r) => r.type === 'ralph');
214
- expect(ralphMatch).toBeUndefined();
215
- });
216
- it('should NOT detect "must complete" phrase', () => {
217
- const result = detectKeywordsWithType('You must complete this task');
218
- const ralphMatch = result.find((r) => r.type === 'ralph');
219
- expect(ralphMatch).toBeUndefined();
220
- });
221
- it('should NOT detect "until done" phrase', () => {
222
- const result = detectKeywordsWithType('Keep going until done');
223
- const ralphMatch = result.find((r) => r.type === 'ralph');
224
- expect(ralphMatch).toBeUndefined();
225
- });
226
- });
227
- describe('autopilot keyword', () => {
228
- it('should detect autopilot keyword', () => {
229
- const result = detectKeywordsWithType('Run in autopilot mode');
230
- const autopilotMatch = result.find((r) => r.type === 'autopilot');
231
- expect(autopilotMatch).toBeDefined();
232
- });
233
- it('should detect "auto pilot" with space', () => {
234
- const result = detectKeywordsWithType('Enable auto pilot');
235
- const autopilotMatch = result.find((r) => r.type === 'autopilot');
236
- expect(autopilotMatch).toBeDefined();
237
- });
238
- it('should detect "auto-pilot" with hyphen', () => {
239
- const result = detectKeywordsWithType('Enable auto-pilot mode');
240
- const autopilotMatch = result.find((r) => r.type === 'autopilot');
241
- expect(autopilotMatch).toBeDefined();
242
- });
243
- it('should detect "full auto" keyword', () => {
244
- const result = detectKeywordsWithType('Go full auto on this');
245
- const autopilotMatch = result.find((r) => r.type === 'autopilot');
246
- expect(autopilotMatch).toBeDefined();
247
- });
248
- it('should detect "fullsend" keyword', () => {
249
- const result = detectKeywordsWithType('fullsend this implementation');
250
- const autopilotMatch = result.find((r) => r.type === 'autopilot');
251
- expect(autopilotMatch).toBeDefined();
252
- });
253
- it('should NOT detect "build me" phrase', () => {
254
- const result = detectKeywordsWithType('build me a web app');
255
- const autopilotMatch = result.find((r) => r.type === 'autopilot');
256
- expect(autopilotMatch).toBeUndefined();
257
- });
258
- it('should NOT detect "autonomous" keyword', () => {
259
- const result = detectKeywordsWithType('Run in autonomous mode');
260
- const autopilotMatch = result.find((r) => r.type === 'autopilot');
261
- expect(autopilotMatch).toBeUndefined();
262
- });
263
- });
264
- describe('ultrawork keyword', () => {
265
- it('should detect ultrawork keyword', () => {
266
- const result = detectKeywordsWithType('Do ultrawork on this');
267
- const ultraworkMatch = result.find((r) => r.type === 'ultrawork');
268
- expect(ultraworkMatch).toBeDefined();
269
- });
270
- it('should detect ulw abbreviation', () => {
271
- const result = detectKeywordsWithType('ulw this code');
272
- const ultraworkMatch = result.find((r) => r.type === 'ultrawork');
273
- expect(ultraworkMatch).toBeDefined();
274
- });
275
- it('should NOT detect uw abbreviation', () => {
276
- const result = detectKeywordsWithType('uw this code');
277
- const ultraworkMatch = result.find((r) => r.type === 'ultrawork');
278
- expect(ultraworkMatch).toBeUndefined();
279
- });
280
- it('should NOT detect deprecated pipeline phrases', () => {
281
- const keywordResult = detectKeywordsWithType('agent pipeline the task and chain agents');
282
- const pipelineLikeMatches = keywordResult.filter((r) => r.type === 'pipeline');
283
- expect(pipelineLikeMatches).toHaveLength(0);
284
- });
285
- });
286
- describe('tdd keyword', () => {
287
- it('should detect tdd keyword', () => {
288
- const result = detectKeywordsWithType('tdd this feature');
289
- const tddMatch = result.find((r) => r.type === 'tdd');
290
- expect(tddMatch).toBeDefined();
291
- });
292
- it('should detect test first phrase', () => {
293
- const result = detectKeywordsWithType('test first approach');
294
- const tddMatch = result.find((r) => r.type === 'tdd');
295
- expect(tddMatch).toBeDefined();
296
- });
297
- it('should NOT detect red green phrase', () => {
298
- const result = detectKeywordsWithType('red green refactor cycle');
299
- const tddMatch = result.find((r) => r.type === 'tdd');
300
- expect(tddMatch).toBeUndefined();
301
- });
302
- });
303
- describe('code-review keyword', () => {
304
- it('should detect code review phrase', () => {
305
- const result = detectKeywordsWithType('please do a code review');
306
- const match = result.find((r) => r.type === 'code-review');
307
- expect(match).toBeDefined();
308
- });
309
- it('should detect review code phrase', () => {
310
- const result = detectKeywordsWithType('review code for this change');
311
- const match = result.find((r) => r.type === 'code-review');
312
- expect(match).toBeDefined();
313
- });
314
- });
315
- describe('security-review keyword', () => {
316
- it('should detect security review phrase', () => {
317
- const result = detectKeywordsWithType('run a security review');
318
- const match = result.find((r) => r.type === 'security-review');
319
- expect(match).toBeDefined();
320
- });
321
- it('should detect review security phrase', () => {
322
- const result = detectKeywordsWithType('review security for this change');
323
- const match = result.find((r) => r.type === 'security-review');
324
- expect(match).toBeDefined();
325
- });
326
- });
327
- describe('ultrathink keyword', () => {
328
- it('should detect ultrathink keyword', () => {
329
- const result = detectKeywordsWithType('ultrathink about this problem');
330
- const ultrathinkMatch = result.find((r) => r.type === 'ultrathink');
331
- expect(ultrathinkMatch).toBeDefined();
332
- });
333
- it('should NOT detect "think hard" phrase', () => {
334
- const result = detectKeywordsWithType('think hard about this problem');
335
- const ultrathinkMatch = result.find((r) => r.type === 'ultrathink');
336
- expect(ultrathinkMatch).toBeUndefined();
337
- });
338
- it('should NOT detect "think deeply" phrase', () => {
339
- const result = detectKeywordsWithType('think deeply about this problem');
340
- const ultrathinkMatch = result.find((r) => r.type === 'ultrathink');
341
- expect(ultrathinkMatch).toBeUndefined();
342
- });
343
- });
344
- describe('deepsearch keyword', () => {
345
- it('should detect deepsearch keyword', () => {
346
- const result = detectKeywordsWithType('deepsearch for files');
347
- const searchMatch = result.find((r) => r.type === 'deepsearch');
348
- expect(searchMatch).toBeDefined();
349
- });
350
- it('should detect search the codebase', () => {
351
- const result = detectKeywordsWithType('search the codebase');
352
- const searchMatch = result.find((r) => r.type === 'deepsearch');
353
- expect(searchMatch).toBeDefined();
354
- });
355
- it('should detect find in codebase', () => {
356
- const result = detectKeywordsWithType('find in codebase');
357
- const searchMatch = result.find((r) => r.type === 'deepsearch');
358
- expect(searchMatch).toBeDefined();
359
- });
360
- it('should detect find in the codebase', () => {
361
- const result = detectKeywordsWithType('find in the codebase');
362
- const searchMatch = result.find((r) => r.type === 'deepsearch');
363
- expect(searchMatch).toBeDefined();
364
- });
365
- it('should NOT detect generic find', () => {
366
- const result = detectKeywordsWithType('find the bug');
367
- const searchMatch = result.find((r) => r.type === 'deepsearch');
368
- expect(searchMatch).toBeUndefined();
369
- });
370
- it('should NOT detect search code pattern', () => {
371
- const result = detectKeywordsWithType('search code for errors');
372
- const searchMatch = result.find((r) => r.type === 'deepsearch');
373
- expect(searchMatch).toBeUndefined();
374
- });
375
- it('should NOT detect find in all files', () => {
376
- const result = detectKeywordsWithType('find in all files');
377
- const searchMatch = result.find((r) => r.type === 'deepsearch');
378
- expect(searchMatch).toBeUndefined();
379
- });
380
- it('should NOT detect search project', () => {
381
- const result = detectKeywordsWithType('search the project');
382
- const searchMatch = result.find((r) => r.type === 'deepsearch');
383
- expect(searchMatch).toBeUndefined();
384
- });
385
- it('should NOT detect search files', () => {
386
- const result = detectKeywordsWithType('search files for errors');
387
- const searchMatch = result.find((r) => r.type === 'deepsearch');
388
- expect(searchMatch).toBeUndefined();
389
- });
390
- });
391
- describe('analyze keyword', () => {
392
- it('should detect deep analyze keyword', () => {
393
- const result = detectKeywordsWithType('deep analyze this code');
394
- const analyzeMatch = result.find((r) => r.type === 'analyze');
395
- expect(analyzeMatch).toBeDefined();
396
- });
397
- it('should detect deep-analyze with hyphen', () => {
398
- const result = detectKeywordsWithType('deep-analyze this code');
399
- const analyzeMatch = result.find((r) => r.type === 'analyze');
400
- expect(analyzeMatch).toBeDefined();
401
- });
402
- it('should detect deepanalyze without space', () => {
403
- const result = detectKeywordsWithType('deepanalyze this code');
404
- const analyzeMatch = result.find((r) => r.type === 'analyze');
405
- expect(analyzeMatch).toBeDefined();
406
- });
407
- it('should NOT detect investigate with context', () => {
408
- const result = detectKeywordsWithType('investigate the issue');
409
- const analyzeMatch = result.find((r) => r.type === 'analyze');
410
- expect(analyzeMatch).toBeUndefined();
411
- });
412
- it('should NOT detect investigate this', () => {
413
- const result = detectKeywordsWithType('investigate this bug');
414
- const analyzeMatch = result.find((r) => r.type === 'analyze');
415
- expect(analyzeMatch).toBeUndefined();
416
- });
417
- it('should NOT detect investigate why', () => {
418
- const result = detectKeywordsWithType('investigate why this fails');
419
- const analyzeMatch = result.find((r) => r.type === 'analyze');
420
- expect(analyzeMatch).toBeUndefined();
421
- });
422
- it('should NOT detect debug the', () => {
423
- const result = detectKeywordsWithType('debug the function');
424
- const analyzeMatch = result.find((r) => r.type === 'analyze');
425
- expect(analyzeMatch).toBeUndefined();
426
- });
427
- it('should NOT detect debug this', () => {
428
- const result = detectKeywordsWithType('debug this issue');
429
- const analyzeMatch = result.find((r) => r.type === 'analyze');
430
- expect(analyzeMatch).toBeUndefined();
431
- });
432
- it('should NOT detect debug why', () => {
433
- const result = detectKeywordsWithType('debug why this breaks');
434
- const analyzeMatch = result.find((r) => r.type === 'analyze');
435
- expect(analyzeMatch).toBeUndefined();
436
- });
437
- it('should NOT detect generic analyze', () => {
438
- const result = detectKeywordsWithType('analyze without context');
439
- const analyzeMatch = result.find((r) => r.type === 'analyze');
440
- expect(analyzeMatch).toBeUndefined();
441
- });
442
- });
443
- describe('case insensitivity', () => {
444
- it('should detect RALPH in uppercase', () => {
445
- const result = detectKeywordsWithType('RALPH this task');
446
- const ralphMatch = result.find((r) => r.type === 'ralph');
447
- expect(ralphMatch).toBeDefined();
448
- });
449
- it('should detect AUTOPILOT in uppercase', () => {
450
- const result = detectKeywordsWithType('AUTOPILOT mode');
451
- const autopilotMatch = result.find((r) => r.type === 'autopilot');
452
- expect(autopilotMatch).toBeDefined();
453
- });
454
- it('should detect mixed case keywords', () => {
455
- const result = detectKeywordsWithType('UltraThink about this');
456
- const ultrathinkMatch = result.find((r) => r.type === 'ultrathink');
457
- expect(ultrathinkMatch).toBeDefined();
458
- });
459
- });
460
- describe('code block exclusion', () => {
461
- it('should not detect keyword inside fenced code block', () => {
462
- const text = '```\nautopilot\n```';
463
- const result = detectKeywordsWithType(text);
464
- expect(result.length).toBe(0);
465
- });
466
- it('should not detect keyword inside inline code', () => {
467
- const text = 'Use `autopilot` command';
468
- const result = detectKeywordsWithType(text);
469
- expect(result.length).toBe(0);
470
- });
471
- it('should detect keyword outside code block but not inside', () => {
472
- const text = 'autopilot ```autopilot``` end';
473
- const result = detectKeywordsWithType(text);
474
- const autopilotMatches = result.filter((r) => r.type === 'autopilot');
475
- expect(autopilotMatches.length).toBeGreaterThan(0);
476
- });
477
- it('should not detect keyword inside XML tags', () => {
478
- const text = '<system-reminder>ralph</system-reminder> hello';
479
- const result = detectKeywordsWithType(text);
480
- const ralphMatch = result.find((r) => r.type === 'ralph');
481
- expect(ralphMatch).toBeUndefined();
482
- });
483
- });
484
- describe('codex keyword', () => {
485
- it('should detect "ask codex"', () => {
486
- const result = detectKeywordsWithType('ask codex to review');
487
- const codexMatch = result.find((r) => r.type === 'codex');
488
- expect(codexMatch).toBeDefined();
489
- });
490
- it('should detect "use gpt"', () => {
491
- const result = detectKeywordsWithType('use gpt for review');
492
- const codexMatch = result.find((r) => r.type === 'codex');
493
- expect(codexMatch).toBeDefined();
494
- });
495
- it('should detect "delegate to codex"', () => {
496
- const result = detectKeywordsWithType('delegate to codex');
497
- const codexMatch = result.find((r) => r.type === 'codex');
498
- expect(codexMatch).toBeDefined();
499
- });
500
- it('should detect "delegate to gpt"', () => {
501
- const result = detectKeywordsWithType('delegate to gpt');
502
- const codexMatch = result.find((r) => r.type === 'codex');
503
- expect(codexMatch).toBeDefined();
504
- });
505
- it('should NOT detect bare codex keyword', () => {
506
- const result = detectKeywordsWithType('codex review this');
507
- const codexMatch = result.find((r) => r.type === 'codex');
508
- expect(codexMatch).toBeUndefined();
509
- });
510
- it('should NOT detect bare gpt keyword', () => {
511
- const result = detectKeywordsWithType('gpt is great');
512
- const codexMatch = result.find((r) => r.type === 'codex');
513
- expect(codexMatch).toBeUndefined();
514
- });
515
- it('should NOT detect gpt model names', () => {
516
- const result = detectKeywordsWithType('gpt-5.3 model');
517
- const codexMatch = result.find((r) => r.type === 'codex');
518
- expect(codexMatch).toBeUndefined();
519
- });
520
- it('should NOT detect chatgpt', () => {
521
- const result = detectKeywordsWithType('chatgpt helped');
522
- const codexMatch = result.find((r) => r.type === 'codex');
523
- expect(codexMatch).toBeUndefined();
524
- });
525
- });
526
- describe('ccg keyword', () => {
527
- it('should detect "ccg" keyword', () => {
528
- const result = detectKeywordsWithType('ccg this feature');
529
- const ccgMatch = result.find((r) => r.type === 'ccg');
530
- expect(ccgMatch).toBeDefined();
531
- expect(ccgMatch?.keyword).toMatch(/ccg/i);
532
- });
533
- it('should detect "claude-codex-gemini" keyword', () => {
534
- const result = detectKeywordsWithType('use claude-codex-gemini to build this');
535
- const ccgMatch = result.find((r) => r.type === 'ccg');
536
- expect(ccgMatch).toBeDefined();
537
- });
538
- it('should detect CCG in uppercase', () => {
539
- const result = detectKeywordsWithType('CCG add user profile page');
540
- const ccgMatch = result.find((r) => r.type === 'ccg');
541
- expect(ccgMatch).toBeDefined();
542
- });
543
- it('should NOT detect ccg inside code block', () => {
544
- const result = detectKeywordsWithType('```\nccg mode\n```');
545
- const ccgMatch = result.find((r) => r.type === 'ccg');
546
- expect(ccgMatch).toBeUndefined();
547
- });
548
- it('should NOT detect ccg inside inline code', () => {
549
- const result = detectKeywordsWithType('use `ccg` command');
550
- const ccgMatch = result.find((r) => r.type === 'ccg');
551
- expect(ccgMatch).toBeUndefined();
552
- });
553
- it('should detect ccg with other text around it', () => {
554
- const result = detectKeywordsWithType('please ccg this full-stack feature');
555
- const ccgMatch = result.find((r) => r.type === 'ccg');
556
- expect(ccgMatch).toBeDefined();
557
- });
558
- });
559
- describe('gemini keyword', () => {
560
- it('should detect "ask gemini"', () => {
561
- const result = detectKeywordsWithType('ask gemini to design');
562
- const geminiMatch = result.find((r) => r.type === 'gemini');
563
- expect(geminiMatch).toBeDefined();
564
- });
565
- it('should detect "use gemini"', () => {
566
- const result = detectKeywordsWithType('use gemini for UI');
567
- const geminiMatch = result.find((r) => r.type === 'gemini');
568
- expect(geminiMatch).toBeDefined();
569
- });
570
- it('should detect "delegate to gemini"', () => {
571
- const result = detectKeywordsWithType('delegate to gemini');
572
- const geminiMatch = result.find((r) => r.type === 'gemini');
573
- expect(geminiMatch).toBeDefined();
574
- });
575
- it('should NOT detect bare gemini keyword', () => {
576
- const result = detectKeywordsWithType('gemini constellation');
577
- const geminiMatch = result.find((r) => r.type === 'gemini');
578
- expect(geminiMatch).toBeUndefined();
579
- });
580
- it('should NOT detect gemini in non-intent context', () => {
581
- const result = detectKeywordsWithType('the Gemini project');
582
- const geminiMatch = result.find((r) => r.type === 'gemini');
583
- expect(geminiMatch).toBeUndefined();
584
- });
585
- });
586
- describe('sanitization false-positive prevention', () => {
587
- it('should NOT detect codex in URL', () => {
588
- const result = detectKeywordsWithType('see https://example.com/gpt');
589
- const codexMatch = result.find((r) => r.type === 'codex');
590
- expect(codexMatch).toBeUndefined();
591
- });
592
- it('should NOT detect codex in file path', () => {
593
- const result = detectKeywordsWithType('open docs/gpt/README.md');
594
- const codexMatch = result.find((r) => r.type === 'codex');
595
- expect(codexMatch).toBeUndefined();
596
- });
597
- it('should NOT detect codex in inline code', () => {
598
- const result = detectKeywordsWithType('`ask codex`');
599
- const codexMatch = result.find((r) => r.type === 'codex');
600
- expect(codexMatch).toBeUndefined();
601
- });
602
- });
603
- describe('edge cases', () => {
604
- it('should handle empty input', () => {
605
- const result = detectKeywordsWithType('');
606
- expect(result.length).toBe(0);
607
- });
608
- it('should handle whitespace only input', () => {
609
- const result = detectKeywordsWithType(' \n\t ');
610
- expect(result.length).toBe(0);
611
- });
612
- it('should handle special characters', () => {
613
- const result = detectKeywordsWithType('!@#$%^&*()');
614
- expect(result.length).toBe(0);
615
- });
616
- it('should return position of detected keywords', () => {
617
- const text = 'Please autopilot this';
618
- const result = detectKeywordsWithType(text);
619
- const autopilotMatch = result.find((r) => r.type === 'autopilot');
620
- expect(autopilotMatch?.position).toBeGreaterThanOrEqual(0);
621
- });
622
- it('should detect multiple different keyword types', () => {
623
- const text = 'autopilot and deep analyze the bug';
624
- const result = detectKeywordsWithType(text);
625
- const types = result.map((r) => r.type);
626
- expect(types).toContain('autopilot');
627
- expect(types).toContain('analyze');
628
- });
629
- });
630
- });
631
- describe('hasKeyword', () => {
632
- it('should return true when keyword exists', () => {
633
- expect(hasKeyword('autopilot this')).toBe(true);
634
- });
635
- it('should return true for ralph keyword', () => {
636
- expect(hasKeyword('ralph the task')).toBe(true);
637
- });
638
- it('should return false when no keyword exists', () => {
639
- expect(hasKeyword('regular text here')).toBe(false);
640
- });
641
- it('should return false for empty input', () => {
642
- expect(hasKeyword('')).toBe(false);
643
- });
644
- it('should return false when keyword is inside code block', () => {
645
- expect(hasKeyword('```autopilot```')).toBe(false);
646
- });
647
- it('should return true when keyword is outside code block', () => {
648
- expect(hasKeyword('autopilot ```other code```')).toBe(true);
649
- });
650
- });
651
- describe('getPrimaryKeyword', () => {
652
- describe('priority order', () => {
653
- it('should return ralph over autopilot', () => {
654
- const result = getPrimaryKeyword('ralph and autopilot');
655
- expect(result?.type).toBe('ralph');
656
- });
657
- it('should return autopilot over ultrawork', () => {
658
- const result = getPrimaryKeyword('autopilot and ultrawork');
659
- expect(result?.type).toBe('autopilot');
660
- });
661
- it('should return ultrawork over ultrathink', () => {
662
- const result = getPrimaryKeyword('ultrawork and ultrathink');
663
- expect(result?.type).toBe('ultrawork');
664
- });
665
- it('should return code-review over ultrathink', () => {
666
- const result = getPrimaryKeyword('code review and ultrathink');
667
- expect(result?.type).toBe('code-review');
668
- });
669
- it('should return security-review over ultrathink', () => {
670
- const result = getPrimaryKeyword('security review and ultrathink');
671
- expect(result?.type).toBe('security-review');
672
- });
673
- it('should return ultrathink over deepsearch', () => {
674
- const result = getPrimaryKeyword('ultrathink and search the codebase');
675
- expect(result?.type).toBe('ultrathink');
676
- });
677
- it('should return deepsearch over analyze', () => {
678
- const result = getPrimaryKeyword('find in codebase and debug the issue');
679
- expect(result?.type).toBe('deepsearch');
680
- });
681
- it('should return analyze when it is the only keyword', () => {
682
- const result = getPrimaryKeyword('deep analyze the issue');
683
- expect(result?.type).toBe('analyze');
684
- });
685
- });
686
- describe('multiple keyword conflict resolution', () => {
687
- it('should return cancel over everything', () => {
688
- const result = getPrimaryKeyword('cancelomc ralph ultrawork');
689
- expect(result?.type).toBe('cancel');
690
- });
691
- it('should return ralph over ultrawork', () => {
692
- const result = getPrimaryKeyword('ralph ulw fix errors');
693
- expect(result?.type).toBe('ralph');
694
- });
695
- it('should detect all keywords even when multiple present', () => {
696
- const result = detectKeywordsWithType('ulw ralph fix errors');
697
- const types = result.map(r => r.type);
698
- expect(types).toContain('ultrawork');
699
- expect(types).toContain('ralph');
700
- });
701
- });
702
- it('should return null when no keyword found', () => {
703
- const result = getPrimaryKeyword('regular text');
704
- expect(result).toBeNull();
705
- });
706
- it('should return null for empty input', () => {
707
- const result = getPrimaryKeyword('');
708
- expect(result).toBeNull();
709
- });
710
- it('should return null when keyword is in code block', () => {
711
- const result = getPrimaryKeyword('```autopilot```');
712
- expect(result).toBeNull();
713
- });
714
- it('should return keyword with correct type and position', () => {
715
- const result = getPrimaryKeyword('autopilot this task');
716
- expect(result).not.toBeNull();
717
- expect(result?.type).toBe('autopilot');
718
- expect(result?.keyword).toBeDefined();
719
- expect(result?.position).toBeGreaterThanOrEqual(0);
720
- });
721
- it('should handle complex text with multiple keywords', () => {
722
- const text = 'Please ralph this and then autopilot the rest, think about it and analyze';
723
- const result = getPrimaryKeyword(text);
724
- // ralph has highest priority
725
- expect(result?.type).toBe('ralph');
726
- });
727
- });
728
- describe('getAllKeywords', () => {
729
- it('should return single keyword in array', () => {
730
- expect(getAllKeywords('autopilot this')).toEqual(['autopilot']);
731
- });
732
- it('should return multiple non-conflicting keywords in priority order', () => {
733
- expect(getAllKeywords('ulw ralph fix errors')).toEqual(['ralph', 'ultrawork']);
734
- });
735
- it('should return cancel exclusively when present', () => {
736
- expect(getAllKeywords('cancelomc ralph ultrawork')).toEqual(['cancel']);
737
- });
738
- it('should not detect deprecated ultrapilot keyword (#1131)', () => {
739
- const result = getAllKeywords('autopilot ultrapilot build');
740
- expect(result).not.toContain('ultrapilot');
741
- // ultrapilot is deprecated, only autopilot should be detected
742
- expect(result).toContain('autopilot');
743
- });
744
- it('should not detect deprecated swarm keyword (#1131)', () => {
745
- const result = getAllKeywords('swarm 5 agents build this');
746
- expect(result).not.toContain('swarm');
747
- });
748
- it('should return ralph with ultrawork (not mutually exclusive)', () => {
749
- const result = getAllKeywords('ralph ultrawork fix');
750
- expect(result).toContain('ralph');
751
- expect(result).toContain('ultrawork');
752
- });
753
- it('should return ralph with codex', () => {
754
- const result = getAllKeywords('ralph ask gpt to review');
755
- expect(result).toContain('ralph');
756
- expect(result).toContain('codex');
757
- });
758
- it('should return both codex and gemini when both present', () => {
759
- const result = getAllKeywords('ask codex and ask gemini');
760
- expect(result).toContain('codex');
761
- expect(result).toContain('gemini');
762
- });
763
- it('should return ccg when ccg keyword present', () => {
764
- const result = getAllKeywords('ccg add a user profile feature');
765
- expect(result).toContain('ccg');
766
- });
767
- it('should return ccg with higher priority than codex/gemini', () => {
768
- const result = getAllKeywords('ccg ask codex to review');
769
- const ccgIdx = result.indexOf('ccg');
770
- const codexIdx = result.indexOf('codex');
771
- expect(ccgIdx).toBeGreaterThanOrEqual(0);
772
- expect(codexIdx).toBeGreaterThanOrEqual(0);
773
- expect(ccgIdx).toBeLessThan(codexIdx);
774
- });
775
- it('should return ralph before ccg in priority order', () => {
776
- const result = getAllKeywords('ralph ccg build the app');
777
- const ralphIdx = result.indexOf('ralph');
778
- const ccgIdx = result.indexOf('ccg');
779
- expect(ralphIdx).toBeGreaterThanOrEqual(0);
780
- expect(ccgIdx).toBeGreaterThanOrEqual(0);
781
- expect(ralphIdx).toBeLessThan(ccgIdx);
782
- });
783
- it('should not return ccg when cancel is present', () => {
784
- const result = getAllKeywords('cancelomc ccg build');
785
- expect(result).toEqual(['cancel']);
786
- expect(result).not.toContain('ccg');
787
- });
788
- it('should return ralph over codex in priority', () => {
789
- const primary = getPrimaryKeyword('ralph ask codex');
790
- expect(primary?.type).toBe('ralph');
791
- });
792
- it('should return cancel over codex/gemini', () => {
793
- expect(getAllKeywords('cancelomc ask codex')).toEqual(['cancel']);
794
- });
795
- it('should return empty array for no keywords', () => {
796
- expect(getAllKeywords('regular text')).toEqual([]);
797
- });
798
- it('should handle code block exclusion', () => {
799
- expect(getAllKeywords('```autopilot```')).toEqual([]);
800
- });
801
- it('should handle multiple combinable keywords', () => {
802
- const result = getAllKeywords('ralph tdd fix');
803
- expect(result).toContain('ralph');
804
- expect(result).toContain('tdd');
805
- });
806
- it('should include code-review and security-review in priority order', () => {
807
- const result = getAllKeywords('security review code review ultrathink');
808
- expect(result).toEqual(['code-review', 'security-review', 'ultrathink']);
809
- });
810
- // Team keyword detection disabled — team is now explicit-only via /team skill
811
- // to prevent infinite spawning when Claude workers receive prompts containing "team".
812
- it('should NOT detect team keyword (explicit-only mode)', () => {
813
- const result = getAllKeywords('team build the API');
814
- expect(result).not.toContain('team');
815
- });
816
- it('should NOT detect coordinated team phrase (explicit-only)', () => {
817
- const result = getAllKeywords('coordinated team build the API');
818
- expect(result).not.toContain('team');
819
- });
820
- it('should still detect ralph when "team ralph" is used', () => {
821
- const result = getAllKeywords('team ralph build the API');
822
- expect(result).toContain('ralph');
823
- expect(result).not.toContain('team');
824
- });
825
- it('should return ralph as primary when team ralph is used', () => {
826
- const primary = getPrimaryKeyword('team ralph build the API');
827
- expect(primary?.type).toBe('ralph');
828
- });
829
- it('should detect ralph and codex but not team', () => {
830
- const result = getAllKeywords('team ralph ask codex to review');
831
- expect(result).toContain('ralph');
832
- expect(result).not.toContain('team');
833
- expect(result).toContain('codex');
834
- });
835
- it('should not suppress autopilot when team is not detected', () => {
836
- const result = getAllKeywords('ralph team autopilot build');
837
- expect(result).toContain('ralph');
838
- expect(result).not.toContain('team');
839
- // autopilot is no longer suppressed by team since team is not detected
840
- expect(result).toContain('autopilot');
841
- });
842
- it('should not detect deprecated ultrapilot (#1131)', () => {
843
- const result = getAllKeywords('ultrapilot build all components');
844
- expect(result).not.toContain('ultrapilot');
845
- });
846
- it('should not detect deprecated swarm (#1131)', () => {
847
- const result = getAllKeywords('swarm 5 agents fix all errors');
848
- expect(result).not.toContain('swarm');
849
- });
850
- it('should not detect cancel alongside team', () => {
851
- const result = getAllKeywords('cancelomc team');
852
- expect(result).toEqual(['cancel']);
853
- expect(result).not.toContain('team');
854
- });
855
- // Dedup regression test
856
- it('should deduplicate repeated keyword triggers', () => {
857
- const result = getAllKeywords('autopilot autopilot fix errors');
858
- const autopilotCount = result.filter(k => k === 'autopilot').length;
859
- expect(autopilotCount).toBe(1);
860
- });
861
- describe('when team is disabled via config', () => {
862
- beforeEach(() => {
863
- mockedIsTeamEnabled.mockReturnValue(false);
864
- });
865
- afterEach(() => {
866
- mockedIsTeamEnabled.mockReturnValue(true);
867
- });
868
- it('should NOT detect team keyword when disabled', () => {
869
- const result = getAllKeywords('team build the API');
870
- expect(result).not.toContain('team');
871
- });
872
- it('should NOT detect coordinated team when disabled', () => {
873
- const result = getAllKeywords('coordinated team build');
874
- expect(result).not.toContain('team');
875
- });
876
- it('should not detect deprecated ultrapilot regardless of team setting (#1131)', () => {
877
- const result = getAllKeywords('ultrapilot build all');
878
- expect(result).not.toContain('ultrapilot');
879
- });
880
- it('should not detect deprecated swarm regardless of team setting (#1131)', () => {
881
- const result = getAllKeywords('swarm 5 agents fix errors');
882
- expect(result).not.toContain('swarm');
883
- });
884
- it('should still detect other keywords when team disabled', () => {
885
- const result = getAllKeywords('team ralph build the API');
886
- expect(result).toContain('ralph');
887
- expect(result).not.toContain('team');
888
- });
889
- it('should not suppress autopilot when team is disabled', () => {
890
- const result = getAllKeywords('team autopilot build');
891
- expect(result).toContain('autopilot');
892
- expect(result).not.toContain('team');
893
- });
894
- });
895
- });
896
- describe('isUnderspecifiedForExecution (issue #997)', () => {
897
- it('should flag vague prompt with just mode keyword', () => {
898
- expect(isUnderspecifiedForExecution('ralph fix this')).toBe(true);
899
- });
900
- it('should flag prompt with no file or function references', () => {
901
- expect(isUnderspecifiedForExecution('ralph improve the performance')).toBe(true);
902
- });
903
- it('should flag short vague prompt', () => {
904
- expect(isUnderspecifiedForExecution('autopilot build the app')).toBe(true);
905
- });
906
- it('should flag empty prompt', () => {
907
- expect(isUnderspecifiedForExecution('')).toBe(true);
908
- });
909
- it('should pass prompt with specific file reference', () => {
910
- expect(isUnderspecifiedForExecution('ralph fix the bug in src/hooks/bridge.ts')).toBe(false);
911
- });
912
- it('should pass prompt with function reference', () => {
913
- expect(isUnderspecifiedForExecution('ralph fix function processKeywordDetector')).toBe(false);
914
- });
915
- it('should pass prompt with issue reference', () => {
916
- expect(isUnderspecifiedForExecution('ralph implement issue #42')).toBe(false);
917
- });
918
- it('should pass prompt with numbered steps', () => {
919
- expect(isUnderspecifiedForExecution('ralph do:\n1. Add validation\n2. Add tests\n3. Update docs')).toBe(false);
920
- });
921
- it('should pass prompt with code block', () => {
922
- const prompt = 'ralph add this function:\n```typescript\nfunction hello() { return "world"; }\n```';
923
- expect(isUnderspecifiedForExecution(prompt)).toBe(false);
924
- });
925
- it('should pass prompt with force: escape hatch', () => {
926
- expect(isUnderspecifiedForExecution('force: ralph fix this')).toBe(false);
927
- });
928
- it('should pass prompt with ! escape hatch', () => {
929
- expect(isUnderspecifiedForExecution('! ralph improve it')).toBe(false);
930
- });
931
- it('should pass prompt with path reference', () => {
932
- expect(isUnderspecifiedForExecution('ralph add logging to src/api/server.ts')).toBe(false);
933
- });
934
- it('should pass prompt with PR reference', () => {
935
- expect(isUnderspecifiedForExecution('ralph fix PR #123')).toBe(false);
936
- });
937
- it('should pass prompt with directory path', () => {
938
- expect(isUnderspecifiedForExecution('ralph refactor the hooks in src/hooks')).toBe(false);
939
- });
940
- it('should pass long detailed prompt without file refs', () => {
941
- expect(isUnderspecifiedForExecution('ralph add a new API endpoint for user registration that accepts email and password, validates the input, hashes the password with bcrypt, stores in the users table, and returns a JWT token')).toBe(false);
942
- });
943
- it('should pass prompt with acceptance criteria', () => {
944
- expect(isUnderspecifiedForExecution('ralph add login - acceptance criteria: user can log in with email')).toBe(false);
945
- });
946
- it('should pass prompt with error reference', () => {
947
- expect(isUnderspecifiedForExecution('ralph fix TypeError in the auth module')).toBe(false);
948
- });
949
- it('should pass prompt with bullet list', () => {
950
- expect(isUnderspecifiedForExecution('ralph implement:\n- Add user model\n- Add API routes')).toBe(false);
951
- });
952
- // False-positive prevention: concrete signals auto-pass
953
- describe('false-positive prevention', () => {
954
- it('should pass with camelCase symbol name', () => {
955
- expect(isUnderspecifiedForExecution('ralph fix processKeywordDetector')).toBe(false);
956
- });
957
- it('should pass with PascalCase class name', () => {
958
- expect(isUnderspecifiedForExecution('ralph update KeywordDetector')).toBe(false);
959
- });
960
- it('should pass with snake_case identifier', () => {
961
- expect(isUnderspecifiedForExecution('team fix user_model')).toBe(false);
962
- });
963
- it('should pass with bare issue number #123', () => {
964
- expect(isUnderspecifiedForExecution('ralph implement #42')).toBe(false);
965
- });
966
- it('should pass with test runner command', () => {
967
- expect(isUnderspecifiedForExecution('ralph npm test && fix failures')).toBe(false);
968
- });
969
- it('should pass with vitest target', () => {
970
- expect(isUnderspecifiedForExecution('ralph npx vitest run and fix')).toBe(false);
971
- });
972
- it('should pass with pytest command', () => {
973
- expect(isUnderspecifiedForExecution('ralph pytest and fix failures')).toBe(false);
974
- });
975
- it('should pass with should return assertion', () => {
976
- expect(isUnderspecifiedForExecution('ralph fix so it should return 200')).toBe(false);
977
- });
978
- it('should pass with stack trace reference', () => {
979
- expect(isUnderspecifiedForExecution('ralph fix the stack trace error')).toBe(false);
980
- });
981
- it('should still gate truly vague prompts', () => {
982
- expect(isUnderspecifiedForExecution('ralph fix the code')).toBe(true);
983
- });
984
- it('should still gate prompts with only stop words', () => {
985
- expect(isUnderspecifiedForExecution('autopilot make it work')).toBe(true);
986
- });
987
- });
988
- });
989
- describe('applyRalplanGate (issue #997)', () => {
990
- it('should redirect underspecified ralph to ralplan', () => {
991
- const result = applyRalplanGate(['ralph'], 'ralph fix this');
992
- expect(result.gateApplied).toBe(true);
993
- expect(result.keywords).toContain('ralplan');
994
- expect(result.keywords).not.toContain('ralph');
995
- expect(result.gatedKeywords).toEqual(['ralph']);
996
- });
997
- it('should redirect underspecified autopilot to ralplan', () => {
998
- const result = applyRalplanGate(['autopilot'], 'autopilot build the app');
999
- expect(result.gateApplied).toBe(true);
1000
- expect(result.keywords).toContain('ralplan');
1001
- expect(result.keywords).not.toContain('autopilot');
1002
- });
1003
- it('should redirect underspecified team to ralplan', () => {
1004
- const result = applyRalplanGate(['team'], 'team improve performance');
1005
- expect(result.gateApplied).toBe(true);
1006
- expect(result.keywords).toContain('ralplan');
1007
- expect(result.keywords).not.toContain('team');
1008
- });
1009
- it('should not gate well-specified ralph prompt', () => {
1010
- const result = applyRalplanGate(['ralph'], 'ralph fix the bug in src/hooks/bridge.ts');
1011
- expect(result.gateApplied).toBe(false);
1012
- expect(result.keywords).toContain('ralph');
1013
- });
1014
- it('should not gate when cancel is present', () => {
1015
- const result = applyRalplanGate(['cancel'], 'cancelomc ralph fix this');
1016
- expect(result.gateApplied).toBe(false);
1017
- });
1018
- it('should not gate when ralplan is already present', () => {
1019
- const result = applyRalplanGate(['ralplan'], 'ralplan fix this');
1020
- expect(result.gateApplied).toBe(false);
1021
- });
1022
- it('should not gate non-execution keywords', () => {
1023
- const result = applyRalplanGate(['tdd', 'ultrathink'], 'tdd improve it');
1024
- expect(result.gateApplied).toBe(false);
1025
- });
1026
- it('should preserve non-execution keywords when gating', () => {
1027
- const result = applyRalplanGate(['ralph', 'tdd'], 'ralph tdd fix this');
1028
- expect(result.gateApplied).toBe(true);
1029
- expect(result.keywords).toContain('tdd');
1030
- expect(result.keywords).toContain('ralplan');
1031
- expect(result.keywords).not.toContain('ralph');
1032
- });
1033
- it('should return empty gatedKeywords when no gate applied', () => {
1034
- const result = applyRalplanGate([], 'regular text');
1035
- expect(result.gateApplied).toBe(false);
1036
- expect(result.gatedKeywords).toEqual([]);
1037
- });
1038
- it('should gate multiple execution keywords at once', () => {
1039
- const result = applyRalplanGate(['ralph', 'ultrawork'], 'ralph ultrawork fix it');
1040
- expect(result.gateApplied).toBe(true);
1041
- expect(result.keywords).toContain('ralplan');
1042
- expect(result.keywords).not.toContain('ralph');
1043
- expect(result.keywords).not.toContain('ultrawork');
1044
- expect(result.gatedKeywords).toContain('ralph');
1045
- expect(result.gatedKeywords).toContain('ultrawork');
1046
- });
1047
- it('should not gate with force: escape hatch', () => {
1048
- const result = applyRalplanGate(['ralph'], 'force: ralph fix this');
1049
- expect(result.gateApplied).toBe(false);
1050
- expect(result.keywords).toContain('ralph');
1051
- });
1052
- });
1053
- describe('bridge pipeline regression: task-size + ralplan gate ordering', () => {
1054
- it('should gate "ralph fix this" to ralplan even when task-size suppresses heavy modes', () => {
1055
- // Simulate the bridge pipeline:
1056
- // 1. getAllKeywordsWithSizeCheck suppresses ralph for small tasks
1057
- const sizeResult = getAllKeywordsWithSizeCheck('ralph fix this', {
1058
- enabled: true,
1059
- smallWordLimit: 50,
1060
- largeWordLimit: 200,
1061
- suppressHeavyModesForSmallTasks: true,
1062
- });
1063
- // ralph is suppressed because "ralph fix this" is a small task
1064
- expect(sizeResult.suppressedKeywords).toContain('ralph');
1065
- expect(sizeResult.keywords).not.toContain('ralph');
1066
- // 2. Reconstruct full keyword set (bridge fix: gate sees unsuppressed keywords)
1067
- const fullKeywords = [...sizeResult.keywords, ...sizeResult.suppressedKeywords];
1068
- expect(fullKeywords).toContain('ralph');
1069
- // 3. Gate evaluates on full set — should redirect to ralplan
1070
- const gateResult = applyRalplanGate(fullKeywords, 'ralph fix this');
1071
- expect(gateResult.gateApplied).toBe(true);
1072
- expect(gateResult.keywords).toContain('ralplan');
1073
- expect(gateResult.keywords).not.toContain('ralph');
1074
- });
1075
- it('should NOT gate well-specified small ralph prompt', () => {
1076
- const sizeResult = getAllKeywordsWithSizeCheck('ralph fix src/hooks/bridge.ts', {
1077
- enabled: true,
1078
- smallWordLimit: 50,
1079
- largeWordLimit: 200,
1080
- suppressHeavyModesForSmallTasks: true,
1081
- });
1082
- const fullKeywords = [...sizeResult.keywords, ...sizeResult.suppressedKeywords];
1083
- const gateResult = applyRalplanGate(fullKeywords, 'ralph fix src/hooks/bridge.ts');
1084
- // Well-specified: gate should NOT fire, ralph passes through
1085
- expect(gateResult.gateApplied).toBe(false);
1086
- });
1087
- it('should suppress heavy mode normally when gate does not apply and task is small', () => {
1088
- const sizeResult = getAllKeywordsWithSizeCheck('ralph fix src/hooks/bridge.ts', {
1089
- enabled: true,
1090
- smallWordLimit: 50,
1091
- largeWordLimit: 200,
1092
- suppressHeavyModesForSmallTasks: true,
1093
- });
1094
- const fullKeywords = [...sizeResult.keywords, ...sizeResult.suppressedKeywords];
1095
- const gateResult = applyRalplanGate(fullKeywords, 'ralph fix src/hooks/bridge.ts');
1096
- // Gate did not fire, so use task-size-suppressed result
1097
- expect(gateResult.gateApplied).toBe(false);
1098
- // Task-size suppression should still apply
1099
- expect(sizeResult.suppressedKeywords).toContain('ralph');
1100
- });
1101
- it('should gate correctly when keywords are NOT suppressed by size-check', () => {
1102
- // When size-check suppression is disabled, execution keywords flow through
1103
- // unsuppressed — the gate should still catch underspecified prompts.
1104
- const prompt = 'ralph fix this';
1105
- const sizeResult = getAllKeywordsWithSizeCheck(prompt, {
1106
- enabled: true,
1107
- smallWordLimit: 50,
1108
- largeWordLimit: 200,
1109
- suppressHeavyModesForSmallTasks: false, // size-check won't suppress
1110
- });
1111
- // ralph is NOT suppressed (suppression disabled)
1112
- expect(sizeResult.suppressedKeywords).toHaveLength(0);
1113
- expect(sizeResult.keywords).toContain('ralph');
1114
- // Gate should still fire because the prompt is underspecified
1115
- const fullKeywords = [...sizeResult.keywords, ...sizeResult.suppressedKeywords];
1116
- const gateResult = applyRalplanGate(fullKeywords, prompt);
1117
- expect(gateResult.gateApplied).toBe(true);
1118
- expect(gateResult.keywords).toContain('ralplan');
1119
- expect(gateResult.keywords).not.toContain('ralph');
1120
- });
1121
- it('should let well-specified large prompt pass through both size-check and gate', () => {
1122
- const prompt = 'ralph fix the TypeError in src/hooks/bridge.ts function processKeywordDetector';
1123
- const sizeResult = getAllKeywordsWithSizeCheck(prompt, {
1124
- enabled: true,
1125
- smallWordLimit: 50,
1126
- largeWordLimit: 200,
1127
- suppressHeavyModesForSmallTasks: true,
1128
- });
1129
- const fullKeywords = [...sizeResult.keywords, ...sizeResult.suppressedKeywords];
1130
- const gateResult = applyRalplanGate(fullKeywords, prompt);
1131
- // Well-specified: gate should NOT fire
1132
- expect(gateResult.gateApplied).toBe(false);
1133
- // ralph should be in the final keyword list (either direct or via fullKeywords)
1134
- expect(fullKeywords).toContain('ralph');
1135
- });
1136
- it('should gate autopilot on short vague prompt even when suppressed by size-check', () => {
1137
- const prompt = 'autopilot make it better';
1138
- const sizeResult = getAllKeywordsWithSizeCheck(prompt, {
1139
- enabled: true,
1140
- smallWordLimit: 50,
1141
- largeWordLimit: 200,
1142
- suppressHeavyModesForSmallTasks: true,
1143
- });
1144
- // autopilot is suppressed by size-check (small task)
1145
- expect(sizeResult.suppressedKeywords).toContain('autopilot');
1146
- expect(sizeResult.keywords).not.toContain('autopilot');
1147
- // Reconstruct full keywords (as bridge.ts does) and gate
1148
- const fullKeywords = [...sizeResult.keywords, ...sizeResult.suppressedKeywords];
1149
- const gateResult = applyRalplanGate(fullKeywords, prompt);
1150
- // Gate should fire: redirect to ralplan
1151
- expect(gateResult.gateApplied).toBe(true);
1152
- expect(gateResult.keywords).toContain('ralplan');
1153
- expect(gateResult.keywords).not.toContain('autopilot');
1154
- });
1155
- it('should preserve non-execution keywords through the full pipeline', () => {
1156
- const prompt = 'ralph tdd fix this';
1157
- const sizeResult = getAllKeywordsWithSizeCheck(prompt, {
1158
- enabled: true,
1159
- smallWordLimit: 50,
1160
- largeWordLimit: 200,
1161
- suppressHeavyModesForSmallTasks: true,
1162
- });
1163
- const fullKeywords = [...sizeResult.keywords, ...sizeResult.suppressedKeywords];
1164
- const gateResult = applyRalplanGate(fullKeywords, prompt);
1165
- // Gate fires for ralph, tdd is preserved
1166
- expect(gateResult.gateApplied).toBe(true);
1167
- expect(gateResult.keywords).toContain('ralplan');
1168
- expect(gateResult.keywords).toContain('tdd');
1169
- expect(gateResult.keywords).not.toContain('ralph');
1170
- });
1171
- });
1172
- describe('non-ASCII prompt translation detection', () => {
1173
- describe('NON_LATIN_SCRIPT_PATTERN - should trigger', () => {
1174
- it('detects Japanese hiragana', () => {
1175
- expect(NON_LATIN_SCRIPT_PATTERN.test('UIコンポーネントを修正して')).toBe(true);
1176
- });
1177
- it('detects Japanese katakana', () => {
1178
- expect(NON_LATIN_SCRIPT_PATTERN.test('バグを修正してください')).toBe(true);
1179
- });
1180
- it('detects Chinese characters', () => {
1181
- expect(NON_LATIN_SCRIPT_PATTERN.test('修复这个错误')).toBe(true);
1182
- });
1183
- it('detects Korean Hangul', () => {
1184
- expect(NON_LATIN_SCRIPT_PATTERN.test('버그를 수정해주세요')).toBe(true);
1185
- });
1186
- it('detects Cyrillic (Russian)', () => {
1187
- expect(NON_LATIN_SCRIPT_PATTERN.test('исправь эту ошибку')).toBe(true);
1188
- });
1189
- it('detects Arabic', () => {
1190
- expect(NON_LATIN_SCRIPT_PATTERN.test('أصلح هذا الخطأ')).toBe(true);
1191
- });
1192
- it('detects Devanagari (Hindi)', () => {
1193
- expect(NON_LATIN_SCRIPT_PATTERN.test('इस बग को ठीक करें')).toBe(true);
1194
- });
1195
- it('detects mixed non-ASCII with English', () => {
1196
- expect(NON_LATIN_SCRIPT_PATTERN.test('ralph バグを修正して')).toBe(true);
1197
- });
1198
- });
1199
- describe('NON_LATIN_SCRIPT_PATTERN - should NOT trigger', () => {
1200
- it('does not trigger on pure ASCII', () => {
1201
- expect(NON_LATIN_SCRIPT_PATTERN.test('Fix the UI components')).toBe(false);
1202
- });
1203
- it('does not trigger on emoji only', () => {
1204
- expect(NON_LATIN_SCRIPT_PATTERN.test('👍 fix this bug')).toBe(false);
1205
- });
1206
- it('does not trigger on accented Latin (café)', () => {
1207
- expect(NON_LATIN_SCRIPT_PATTERN.test('café résumé naïve')).toBe(false);
1208
- });
1209
- it('does not trigger on accented Latin (Spanish)', () => {
1210
- expect(NON_LATIN_SCRIPT_PATTERN.test('arregla el error por favor')).toBe(false);
1211
- });
1212
- it('does not trigger on empty string', () => {
1213
- expect(NON_LATIN_SCRIPT_PATTERN.test('')).toBe(false);
1214
- });
1215
- });
1216
- describe('sanitizeForKeywordDetection strips non-ASCII from structural noise', () => {
1217
- it('strips non-ASCII from code blocks before detection', () => {
1218
- const text = 'Fix this: ```const x = "日本語";```';
1219
- const sanitized = sanitizeForKeywordDetection(text);
1220
- // After sanitization, code block content is removed
1221
- expect(NON_LATIN_SCRIPT_PATTERN.test(sanitized)).toBe(false);
1222
- });
1223
- it('strips non-ASCII from URLs before detection', () => {
1224
- const text = 'See https://example.com/path for details';
1225
- const sanitized = sanitizeForKeywordDetection(text);
1226
- // After sanitization, URL is removed - plain text remains
1227
- expect(sanitized).not.toContain('https://');
1228
- });
1229
- it('preserves non-ASCII in plain human-language text', () => {
1230
- const text = 'UIコンポーネントを修正して';
1231
- const sanitized = sanitizeForKeywordDetection(text);
1232
- // Plain Japanese text is preserved after sanitization
1233
- expect(NON_LATIN_SCRIPT_PATTERN.test(sanitized)).toBe(true);
1234
- });
1235
- it('preserves non-ASCII when mixed with English keywords', () => {
1236
- const text = 'ralph バグを修正して';
1237
- const sanitized = sanitizeForKeywordDetection(text);
1238
- // Japanese text preserved, English keyword also preserved
1239
- expect(NON_LATIN_SCRIPT_PATTERN.test(sanitized)).toBe(true);
1240
- });
1241
- });
1242
- });
1243
- describe('Korean cross-script keyword detection', () => {
1244
- describe('Korean keyword detection (basic matching)', () => {
1245
- it('should detect "오토파일럿" as autopilot', () => {
1246
- const result = detectKeywordsWithType('오토파일럿');
1247
- const match = result.find((r) => r.type === 'autopilot');
1248
- expect(match).toBeDefined();
1249
- });
1250
- it('should detect "오토파일럿 해줘" as autopilot', () => {
1251
- const result = detectKeywordsWithType('오토파일럿 해줘');
1252
- const match = result.find((r) => r.type === 'autopilot');
1253
- expect(match).toBeDefined();
1254
- });
1255
- it('should detect "랄프" as ralph', () => {
1256
- const result = detectKeywordsWithType('랄프');
1257
- const match = result.find((r) => r.type === 'ralph');
1258
- expect(match).toBeDefined();
1259
- });
1260
- it('should detect "랄프 모드" as ralph', () => {
1261
- const result = detectKeywordsWithType('랄프 모드');
1262
- const match = result.find((r) => r.type === 'ralph');
1263
- expect(match).toBeDefined();
1264
- });
1265
- it('should NOT detect "취소" as cancel (generic Korean word, too common)', () => {
1266
- const result = detectKeywordsWithType('취소');
1267
- const match = result.find((r) => r.type === 'cancel');
1268
- expect(match).toBeUndefined();
1269
- });
1270
- it('should NOT detect "캔슬" as cancel (generic Korean word, too common)', () => {
1271
- const result = detectKeywordsWithType('캔슬');
1272
- const match = result.find((r) => r.type === 'cancel');
1273
- expect(match).toBeUndefined();
1274
- });
1275
- it('should NOT detect "스톱" as cancel (generic Korean word, too common)', () => {
1276
- const result = detectKeywordsWithType('스톱');
1277
- const match = result.find((r) => r.type === 'cancel');
1278
- expect(match).toBeUndefined();
1279
- });
1280
- it('should NOT trigger cancel for "설정 취소 방법 알려줘" (false positive example)', () => {
1281
- const result = detectKeywordsWithType('설정 취소 방법 알려줘');
1282
- const match = result.find((r) => r.type === 'cancel');
1283
- expect(match).toBeUndefined();
1284
- });
1285
- it('should detect "울트라워크" as ultrawork', () => {
1286
- const result = detectKeywordsWithType('울트라워크');
1287
- const match = result.find((r) => r.type === 'ultrawork');
1288
- expect(match).toBeDefined();
1289
- });
1290
- it('should detect "랄플랜" as ralplan', () => {
1291
- const result = detectKeywordsWithType('랄플랜');
1292
- const match = result.find((r) => r.type === 'ralplan');
1293
- expect(match).toBeDefined();
1294
- });
1295
- it('should detect "코드리뷰 해줘" as code-review', () => {
1296
- const result = detectKeywordsWithType('코드리뷰 해줘');
1297
- const match = result.find((r) => r.type === 'code-review');
1298
- expect(match).toBeDefined();
1299
- });
1300
- it('should detect "코드 리뷰 해줘" (spaced) as code-review', () => {
1301
- const result = detectKeywordsWithType('코드 리뷰 해줘');
1302
- const match = result.find((r) => r.type === 'code-review');
1303
- expect(match).toBeDefined();
1304
- });
1305
- it('should detect "보안리뷰" as security-review', () => {
1306
- const result = detectKeywordsWithType('보안리뷰');
1307
- const match = result.find((r) => r.type === 'security-review');
1308
- expect(match).toBeDefined();
1309
- });
1310
- it('should detect "보안 리뷰" (spaced) as security-review', () => {
1311
- const result = detectKeywordsWithType('보안 리뷰');
1312
- const match = result.find((r) => r.type === 'security-review');
1313
- expect(match).toBeDefined();
1314
- });
1315
- it('should NOT detect "코드리뷰어 추천해줘" as code-review (reviewer false positive)', () => {
1316
- const result = detectKeywordsWithType('코드리뷰어 추천해줘');
1317
- const match = result.find((r) => r.type === 'code-review');
1318
- expect(match).toBeUndefined();
1319
- });
1320
- it('should NOT detect "보안리뷰어가 필요해" as security-review (reviewer false positive)', () => {
1321
- const result = detectKeywordsWithType('보안리뷰어가 필요해');
1322
- const match = result.find((r) => r.type === 'security-review');
1323
- expect(match).toBeUndefined();
1324
- });
1325
- it('should detect "울트라씽크" as ultrathink', () => {
1326
- const result = detectKeywordsWithType('울트라씽크');
1327
- const match = result.find((r) => r.type === 'ultrathink');
1328
- expect(match).toBeDefined();
1329
- });
1330
- it('should detect "딥서치" as deepsearch', () => {
1331
- const result = detectKeywordsWithType('딥서치');
1332
- const match = result.find((r) => r.type === 'deepsearch');
1333
- expect(match).toBeDefined();
1334
- });
1335
- it('should detect "딥 서치" (spaced) as deepsearch', () => {
1336
- const result = detectKeywordsWithType('딥 서치');
1337
- const match = result.find((r) => r.type === 'deepsearch');
1338
- expect(match).toBeDefined();
1339
- });
1340
- it('should detect "딥분석" as analyze', () => {
1341
- const result = detectKeywordsWithType('딥분석');
1342
- const match = result.find((r) => r.type === 'analyze');
1343
- expect(match).toBeDefined();
1344
- });
1345
- it('should detect "딥 분석" (spaced) as analyze', () => {
1346
- const result = detectKeywordsWithType('딥 분석');
1347
- const match = result.find((r) => r.type === 'analyze');
1348
- expect(match).toBeDefined();
1349
- });
1350
- it('should detect "딥인터뷰" as deep-interview', () => {
1351
- const result = detectKeywordsWithType('딥인터뷰');
1352
- const match = result.find((r) => r.type === 'deep-interview');
1353
- expect(match).toBeDefined();
1354
- });
1355
- it('should NOT detect "딥 인터뷰" (spaced) as deep-interview', () => {
1356
- const result = detectKeywordsWithType('딥 인터뷰');
1357
- const match = result.find((r) => r.type === 'deep-interview');
1358
- expect(match).toBeUndefined();
1359
- });
1360
- it('should NOT detect "고객 딥 인터뷰 질문지를 만들어줘" as deep-interview', () => {
1361
- const result = detectKeywordsWithType('고객 딥 인터뷰 질문지를 만들어줘');
1362
- const match = result.find((r) => r.type === 'deep-interview');
1363
- expect(match).toBeUndefined();
1364
- });
1365
- it('should detect "씨씨지" as ccg', () => {
1366
- const result = detectKeywordsWithType('씨씨지');
1367
- const match = result.find((r) => r.type === 'ccg');
1368
- expect(match).toBeDefined();
1369
- });
1370
- it('should detect "테스트퍼스트" as tdd', () => {
1371
- const result = detectKeywordsWithType('테스트퍼스트');
1372
- const match = result.find((r) => r.type === 'tdd');
1373
- expect(match).toBeDefined();
1374
- });
1375
- it('should detect "테스트 퍼스트" (spaced) as tdd', () => {
1376
- const result = detectKeywordsWithType('테스트 퍼스트');
1377
- const match = result.find((r) => r.type === 'tdd');
1378
- expect(match).toBeDefined();
1379
- });
1380
- });
1381
- describe('Regression — English keywords still work', () => {
1382
- it('should detect "autopilot mode" as autopilot (unchanged)', () => {
1383
- const result = detectKeywordsWithType('autopilot mode');
1384
- const match = result.find((r) => r.type === 'autopilot');
1385
- expect(match).toBeDefined();
1386
- });
1387
- it('should detect "ralph해줘" (English keyword + Korean particle)', () => {
1388
- const result = detectKeywordsWithType('ralph해줘');
1389
- const match = result.find((r) => r.type === 'ralph');
1390
- expect(match).toBeDefined();
1391
- });
1392
- it('should detect "autopilot으로" (English keyword + Korean particle)', () => {
1393
- const result = detectKeywordsWithType('autopilot으로');
1394
- const match = result.find((r) => r.type === 'autopilot');
1395
- expect(match).toBeDefined();
1396
- });
1397
- it('should detect "tdd로 해줘" (English keyword + Korean particle)', () => {
1398
- const result = detectKeywordsWithType('tdd로 해줘');
1399
- const match = result.find((r) => r.type === 'tdd');
1400
- expect(match).toBeDefined();
1401
- });
1402
- it('should detect "cancelomc" as cancel (unchanged)', () => {
1403
- const result = detectKeywordsWithType('cancelomc');
1404
- const match = result.find((r) => r.type === 'cancel');
1405
- expect(match).toBeDefined();
1406
- });
1407
- it('should detect "ultrawork mode" as ultrawork (unchanged)', () => {
1408
- const result = detectKeywordsWithType('ultrawork mode');
1409
- const match = result.find((r) => r.type === 'ultrawork');
1410
- expect(match).toBeDefined();
1411
- });
1412
- it('should detect "code review this" as code-review (unchanged)', () => {
1413
- const result = detectKeywordsWithType('code review this');
1414
- const match = result.find((r) => r.type === 'code-review');
1415
- expect(match).toBeDefined();
1416
- });
1417
- it('should detect "deepsearch the codebase" as deepsearch (unchanged)', () => {
1418
- const result = detectKeywordsWithType('deepsearch the codebase');
1419
- const match = result.find((r) => r.type === 'deepsearch');
1420
- expect(match).toBeDefined();
1421
- });
1422
- });
1423
- describe('Negative tests — no false positives', () => {
1424
- it('should NOT match unrelated Korean text "오늘 날씨가 좋네요"', () => {
1425
- const result = detectKeywordsWithType('오늘 날씨가 좋네요');
1426
- expect(result.length).toBe(0);
1427
- });
1428
- it('should NOT match "프로그래밍을 배우고 싶어요"', () => {
1429
- const result = detectKeywordsWithType('프로그래밍을 배우고 싶어요');
1430
- expect(result.length).toBe(0);
1431
- });
1432
- it('should NOT match "코드를 작성해주세요" (contains 코드 but not 코드리뷰)', () => {
1433
- const result = detectKeywordsWithType('코드를 작성해주세요');
1434
- const codeReviewMatch = result.find((r) => r.type === 'code-review');
1435
- expect(codeReviewMatch).toBeUndefined();
1436
- });
1437
- it('should NOT match empty string', () => {
1438
- const result = detectKeywordsWithType('');
1439
- expect(result.length).toBe(0);
1440
- });
1441
- });
1442
- describe('Korean in code blocks should NOT match', () => {
1443
- it('should NOT detect "오토파일럿" inside fenced code block', () => {
1444
- const result = detectKeywordsWithType('```오토파일럿```');
1445
- const match = result.find((r) => r.type === 'autopilot');
1446
- expect(match).toBeUndefined();
1447
- });
1448
- it('should NOT detect "랄프" inside inline code', () => {
1449
- const result = detectKeywordsWithType('Use `랄프` command');
1450
- const match = result.find((r) => r.type === 'ralph');
1451
- expect(match).toBeUndefined();
1452
- });
1453
- });
1454
- describe('Korean priority ordering', () => {
1455
- it('should return cancel over autopilot when "cancelomc 오토파일럿"', () => {
1456
- const result = getPrimaryKeyword('cancelomc 오토파일럿');
1457
- expect(result?.type).toBe('cancel');
1458
- });
1459
- it('should return ralph first when "랄프 울트라워크"', () => {
1460
- const result = getAllKeywords('랄프 울트라워크');
1461
- expect(result).toContain('ralph');
1462
- expect(result).toContain('ultrawork');
1463
- const ralphIdx = result.indexOf('ralph');
1464
- const ultraworkIdx = result.indexOf('ultrawork');
1465
- expect(ralphIdx).toBeLessThan(ultraworkIdx);
1466
- });
1467
- it('should detect both keywords for "오토파일럿 코드리뷰"', () => {
1468
- const result = detectKeywordsWithType('오토파일럿 코드리뷰');
1469
- const types = result.map((r) => r.type);
1470
- expect(types).toContain('autopilot');
1471
- expect(types).toContain('code-review');
1472
- });
1473
- });
1474
- describe('Korean + English mixed keywords', () => {
1475
- it('should return cancel as primary for "ralph cancelomc"', () => {
1476
- const result = getPrimaryKeyword('ralph cancelomc');
1477
- expect(result?.type).toBe('cancel');
1478
- });
1479
- it('should detect both keywords for "autopilot 코드리뷰"', () => {
1480
- const result = getAllKeywords('autopilot 코드리뷰');
1481
- expect(result).toContain('autopilot');
1482
- expect(result).toContain('code-review');
1483
- });
1484
- it('should detect both "랄프 ultrawork", ralph first', () => {
1485
- const result = getAllKeywords('랄프 ultrawork');
1486
- expect(result).toContain('ralph');
1487
- expect(result).toContain('ultrawork');
1488
- const ralphIdx = result.indexOf('ralph');
1489
- const ultraworkIdx = result.indexOf('ultrawork');
1490
- expect(ralphIdx).toBeLessThan(ultraworkIdx);
1491
- });
1492
- });
1493
- describe('getAllKeywords and getPrimaryKeyword with Korean', () => {
1494
- it('getAllKeywords("랄프 코드리뷰") should return ["ralph", "code-review"]', () => {
1495
- expect(getAllKeywords('랄프 코드리뷰')).toEqual(['ralph', 'code-review']);
1496
- });
1497
- it('getPrimaryKeyword("오토파일럿")?.type should be "autopilot"', () => {
1498
- expect(getPrimaryKeyword('오토파일럿')?.type).toBe('autopilot');
1499
- });
1500
- it('hasKeyword("울트라워크") should be true', () => {
1501
- expect(hasKeyword('울트라워크')).toBe(true);
1502
- });
1503
- it('hasKeyword("오토파일럿") should be true', () => {
1504
- expect(hasKeyword('오토파일럿')).toBe(true);
1505
- });
1506
- });
1507
- });
1508
- });
1509
- //# sourceMappingURL=index.test.js.map