claudecode-omc 4.9.5 → 5.1.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 (3892) hide show
  1. package/.local/hud/omc-hud.mjs +98 -0
  2. package/README.md +43 -454
  3. package/bin/omc-manage.js +8 -0
  4. package/bundled/manifest.json +7 -0
  5. package/bundled/upstream/oh-my-claudecode/skills/planning-with-files/scripts/check-complete.ps1 +28 -0
  6. package/bundled/upstream/oh-my-claudecode/skills/planning-with-files/scripts/init-session.ps1 +31 -0
  7. package/bundled/upstream/oh-my-claudecode/skills/skill-creator/SKILL.md +311 -0
  8. package/bundled/upstream/oh-my-claudecode/skills/skill-creator/references/upstream-anthropic-skill-creator.md +485 -0
  9. package/bundled/upstream/oh-my-claudecode/skills/skill-debugger/README.md +52 -0
  10. package/bundled/upstream/superpowers/agents/code-reviewer.md +48 -0
  11. package/bundled/upstream/superpowers/commands/brainstorm.md +5 -0
  12. package/bundled/upstream/superpowers/commands/execute-plan.md +5 -0
  13. package/bundled/upstream/superpowers/commands/write-plan.md +5 -0
  14. package/bundled/upstream/superpowers/hooks/hooks-cursor.json +10 -0
  15. package/bundled/upstream/superpowers/hooks/hooks.json +16 -0
  16. package/bundled/upstream/superpowers/hooks/run-hook.cmd +46 -0
  17. package/bundled/upstream/superpowers/hooks/session-start +57 -0
  18. package/bundled/upstream/superpowers/skills/brainstorming/SKILL.md +164 -0
  19. package/bundled/upstream/superpowers/skills/brainstorming/scripts/frame-template.html +214 -0
  20. package/bundled/upstream/superpowers/skills/brainstorming/scripts/helper.js +88 -0
  21. package/bundled/upstream/superpowers/skills/brainstorming/scripts/server.cjs +354 -0
  22. package/bundled/upstream/superpowers/skills/brainstorming/scripts/start-server.sh +148 -0
  23. package/bundled/upstream/superpowers/skills/brainstorming/scripts/stop-server.sh +56 -0
  24. package/bundled/upstream/superpowers/skills/brainstorming/spec-document-reviewer-prompt.md +49 -0
  25. package/bundled/upstream/superpowers/skills/brainstorming/visual-companion.md +287 -0
  26. package/bundled/upstream/superpowers/skills/dispatching-parallel-agents/SKILL.md +182 -0
  27. package/bundled/upstream/superpowers/skills/executing-plans/SKILL.md +70 -0
  28. package/bundled/upstream/superpowers/skills/finishing-a-development-branch/SKILL.md +200 -0
  29. package/bundled/upstream/superpowers/skills/receiving-code-review/SKILL.md +213 -0
  30. package/bundled/upstream/superpowers/skills/requesting-code-review/SKILL.md +105 -0
  31. package/bundled/upstream/superpowers/skills/requesting-code-review/code-reviewer.md +146 -0
  32. package/bundled/upstream/superpowers/skills/subagent-driven-development/SKILL.md +277 -0
  33. package/bundled/upstream/superpowers/skills/subagent-driven-development/code-quality-reviewer-prompt.md +26 -0
  34. package/bundled/upstream/superpowers/skills/subagent-driven-development/implementer-prompt.md +113 -0
  35. package/bundled/upstream/superpowers/skills/subagent-driven-development/spec-reviewer-prompt.md +61 -0
  36. package/bundled/upstream/superpowers/skills/systematic-debugging/CREATION-LOG.md +119 -0
  37. package/bundled/upstream/superpowers/skills/systematic-debugging/SKILL.md +296 -0
  38. package/bundled/upstream/superpowers/skills/systematic-debugging/condition-based-waiting-example.ts +158 -0
  39. package/bundled/upstream/superpowers/skills/systematic-debugging/condition-based-waiting.md +115 -0
  40. package/bundled/upstream/superpowers/skills/systematic-debugging/defense-in-depth.md +122 -0
  41. package/bundled/upstream/superpowers/skills/systematic-debugging/find-polluter.sh +63 -0
  42. package/bundled/upstream/superpowers/skills/systematic-debugging/root-cause-tracing.md +169 -0
  43. package/bundled/upstream/superpowers/skills/systematic-debugging/test-academic.md +14 -0
  44. package/bundled/upstream/superpowers/skills/systematic-debugging/test-pressure-1.md +58 -0
  45. package/bundled/upstream/superpowers/skills/systematic-debugging/test-pressure-2.md +68 -0
  46. package/bundled/upstream/superpowers/skills/systematic-debugging/test-pressure-3.md +69 -0
  47. package/bundled/upstream/superpowers/skills/test-driven-development/SKILL.md +371 -0
  48. package/bundled/upstream/superpowers/skills/test-driven-development/testing-anti-patterns.md +299 -0
  49. package/bundled/upstream/superpowers/skills/using-git-worktrees/SKILL.md +218 -0
  50. package/bundled/upstream/superpowers/skills/using-superpowers/SKILL.md +117 -0
  51. package/bundled/upstream/superpowers/skills/using-superpowers/references/codex-tools.md +100 -0
  52. package/bundled/upstream/superpowers/skills/using-superpowers/references/copilot-tools.md +52 -0
  53. package/bundled/upstream/superpowers/skills/using-superpowers/references/gemini-tools.md +33 -0
  54. package/bundled/upstream/superpowers/skills/verification-before-completion/SKILL.md +139 -0
  55. package/bundled/upstream/superpowers/skills/writing-plans/SKILL.md +152 -0
  56. package/bundled/upstream/superpowers/skills/writing-plans/plan-document-reviewer-prompt.md +49 -0
  57. package/bundled/upstream/superpowers/skills/writing-skills/SKILL.md +655 -0
  58. package/bundled/upstream/superpowers/skills/writing-skills/anthropic-best-practices.md +1150 -0
  59. package/bundled/upstream/superpowers/skills/writing-skills/examples/CLAUDE_MD_TESTING.md +189 -0
  60. package/bundled/upstream/superpowers/skills/writing-skills/graphviz-conventions.dot +172 -0
  61. package/bundled/upstream/superpowers/skills/writing-skills/persuasion-principles.md +187 -0
  62. package/bundled/upstream/superpowers/skills/writing-skills/render-graphs.js +168 -0
  63. package/bundled/upstream/superpowers/skills/writing-skills/testing-skills-with-subagents.md +384 -0
  64. package/package.json +29 -109
  65. package/scripts/bundle-upstream.sh +45 -0
  66. package/scripts/post-install-message.js +8 -0
  67. package/scripts/sync-upstream.sh +30 -0
  68. package/src/cli/artifact.js +154 -0
  69. package/src/cli/doctor.js +106 -0
  70. package/src/cli/index.js +77 -0
  71. package/src/cli/setup.js +284 -0
  72. package/src/cli/skill.js +9 -0
  73. package/src/cli/source.js +198 -0
  74. package/src/config/artifact-types.js +76 -0
  75. package/src/config/paths.js +147 -0
  76. package/src/config/sources.js +129 -0
  77. package/src/merge/agent-merger.js +47 -0
  78. package/src/merge/base-merger.js +257 -0
  79. package/src/merge/claude-md-merger.js +55 -0
  80. package/src/merge/command-merger.js +35 -0
  81. package/src/merge/file-merger.js +35 -0
  82. package/src/merge/hook-merger.js +99 -0
  83. package/src/merge/settings-merger.js +62 -0
  84. package/src/merge/skill-merger.js +66 -0
  85. package/src/utils/quality.js +53 -0
  86. package/templates/merge-config.json +11 -0
  87. package/.claude-plugin/marketplace.json +0 -30
  88. package/.claude-plugin/plugin.json +0 -20
  89. package/.mcp.json +0 -8
  90. package/LICENSE +0 -21
  91. package/README.de.md +0 -346
  92. package/README.es.md +0 -391
  93. package/README.fr.md +0 -346
  94. package/README.it.md +0 -346
  95. package/README.ja.md +0 -391
  96. package/README.ko.md +0 -396
  97. package/README.pt.md +0 -389
  98. package/README.ru.md +0 -346
  99. package/README.tr.md +0 -346
  100. package/README.vi.md +0 -389
  101. package/README.zh.md +0 -391
  102. package/bridge/__pycache__/gyoshu_bridge.cpython-310.pyc +0 -0
  103. package/bridge/cli.cjs +0 -85378
  104. package/bridge/codex-server.cjs +0 -18022
  105. package/bridge/gyoshu_bridge.py +0 -941
  106. package/bridge/mcp-server.cjs +0 -25767
  107. package/bridge/run-mcp-server.sh +0 -13
  108. package/bridge/runtime-cli.cjs +0 -6169
  109. package/bridge/team-bridge.cjs +0 -2038
  110. package/bridge/team-mcp.cjs +0 -18962
  111. package/bridge/team.js +0 -7383
  112. package/dist/__tests__/agent-boundary-guidance.test.d.ts +0 -2
  113. package/dist/__tests__/agent-boundary-guidance.test.d.ts.map +0 -1
  114. package/dist/__tests__/agent-boundary-guidance.test.js +0 -48
  115. package/dist/__tests__/agent-boundary-guidance.test.js.map +0 -1
  116. package/dist/__tests__/agent-registry.test.d.ts +0 -2
  117. package/dist/__tests__/agent-registry.test.d.ts.map +0 -1
  118. package/dist/__tests__/agent-registry.test.js +0 -93
  119. package/dist/__tests__/agent-registry.test.js.map +0 -1
  120. package/dist/__tests__/auto-slash-aliases.test.d.ts +0 -2
  121. package/dist/__tests__/auto-slash-aliases.test.d.ts.map +0 -1
  122. package/dist/__tests__/auto-slash-aliases.test.js +0 -198
  123. package/dist/__tests__/auto-slash-aliases.test.js.map +0 -1
  124. package/dist/__tests__/auto-update.test.d.ts +0 -2
  125. package/dist/__tests__/auto-update.test.d.ts.map +0 -1
  126. package/dist/__tests__/auto-update.test.js +0 -758
  127. package/dist/__tests__/auto-update.test.js.map +0 -1
  128. package/dist/__tests__/auto-upgrade-prompt.test.d.ts +0 -2
  129. package/dist/__tests__/auto-upgrade-prompt.test.d.ts.map +0 -1
  130. package/dist/__tests__/auto-upgrade-prompt.test.js +0 -81
  131. package/dist/__tests__/auto-upgrade-prompt.test.js.map +0 -1
  132. package/dist/__tests__/background-cleanup-directory.test.d.ts +0 -2
  133. package/dist/__tests__/background-cleanup-directory.test.d.ts.map +0 -1
  134. package/dist/__tests__/background-cleanup-directory.test.js +0 -57
  135. package/dist/__tests__/background-cleanup-directory.test.js.map +0 -1
  136. package/dist/__tests__/bash-history.test.d.ts +0 -5
  137. package/dist/__tests__/bash-history.test.d.ts.map +0 -1
  138. package/dist/__tests__/bash-history.test.js +0 -78
  139. package/dist/__tests__/bash-history.test.js.map +0 -1
  140. package/dist/__tests__/bedrock-lm-suffix-hook.test.d.ts +0 -24
  141. package/dist/__tests__/bedrock-lm-suffix-hook.test.d.ts.map +0 -1
  142. package/dist/__tests__/bedrock-lm-suffix-hook.test.js +0 -210
  143. package/dist/__tests__/bedrock-lm-suffix-hook.test.js.map +0 -1
  144. package/dist/__tests__/bedrock-model-routing.test.d.ts +0 -21
  145. package/dist/__tests__/bedrock-model-routing.test.d.ts.map +0 -1
  146. package/dist/__tests__/bedrock-model-routing.test.js +0 -397
  147. package/dist/__tests__/bedrock-model-routing.test.js.map +0 -1
  148. package/dist/__tests__/cleanup-validation.test.d.ts +0 -2
  149. package/dist/__tests__/cleanup-validation.test.d.ts.map +0 -1
  150. package/dist/__tests__/cleanup-validation.test.js +0 -50
  151. package/dist/__tests__/cleanup-validation.test.js.map +0 -1
  152. package/dist/__tests__/cli-config-stop-callback.test.d.ts +0 -2
  153. package/dist/__tests__/cli-config-stop-callback.test.d.ts.map +0 -1
  154. package/dist/__tests__/cli-config-stop-callback.test.js +0 -132
  155. package/dist/__tests__/cli-config-stop-callback.test.js.map +0 -1
  156. package/dist/__tests__/cli-interop-flags.test.d.ts +0 -2
  157. package/dist/__tests__/cli-interop-flags.test.d.ts.map +0 -1
  158. package/dist/__tests__/cli-interop-flags.test.js +0 -42
  159. package/dist/__tests__/cli-interop-flags.test.js.map +0 -1
  160. package/dist/__tests__/cli-notify-profile.test.d.ts +0 -2
  161. package/dist/__tests__/cli-notify-profile.test.d.ts.map +0 -1
  162. package/dist/__tests__/cli-notify-profile.test.js +0 -213
  163. package/dist/__tests__/cli-notify-profile.test.js.map +0 -1
  164. package/dist/__tests__/cli-win32-warning.test.d.ts +0 -2
  165. package/dist/__tests__/cli-win32-warning.test.d.ts.map +0 -1
  166. package/dist/__tests__/cli-win32-warning.test.js +0 -59
  167. package/dist/__tests__/cli-win32-warning.test.js.map +0 -1
  168. package/dist/__tests__/compact-denylist.test.d.ts +0 -9
  169. package/dist/__tests__/compact-denylist.test.d.ts.map +0 -1
  170. package/dist/__tests__/compact-denylist.test.js +0 -24
  171. package/dist/__tests__/compact-denylist.test.js.map +0 -1
  172. package/dist/__tests__/config-force-inherit-env.test.d.ts +0 -5
  173. package/dist/__tests__/config-force-inherit-env.test.d.ts.map +0 -1
  174. package/dist/__tests__/config-force-inherit-env.test.js +0 -35
  175. package/dist/__tests__/config-force-inherit-env.test.js.map +0 -1
  176. package/dist/__tests__/consensus-execution-handoff.test.d.ts +0 -16
  177. package/dist/__tests__/consensus-execution-handoff.test.d.ts.map +0 -1
  178. package/dist/__tests__/consensus-execution-handoff.test.js +0 -195
  179. package/dist/__tests__/consensus-execution-handoff.test.js.map +0 -1
  180. package/dist/__tests__/consolidation-contracts.test.d.ts +0 -2
  181. package/dist/__tests__/consolidation-contracts.test.d.ts.map +0 -1
  182. package/dist/__tests__/consolidation-contracts.test.js +0 -94
  183. package/dist/__tests__/consolidation-contracts.test.js.map +0 -1
  184. package/dist/__tests__/context-guard-stop.test.d.ts +0 -2
  185. package/dist/__tests__/context-guard-stop.test.d.ts.map +0 -1
  186. package/dist/__tests__/context-guard-stop.test.js +0 -78
  187. package/dist/__tests__/context-guard-stop.test.js.map +0 -1
  188. package/dist/__tests__/context-safety.test.d.ts +0 -2
  189. package/dist/__tests__/context-safety.test.d.ts.map +0 -1
  190. package/dist/__tests__/context-safety.test.js +0 -88
  191. package/dist/__tests__/context-safety.test.js.map +0 -1
  192. package/dist/__tests__/daemon-module-path.test.d.ts +0 -2
  193. package/dist/__tests__/daemon-module-path.test.d.ts.map +0 -1
  194. package/dist/__tests__/daemon-module-path.test.js +0 -29
  195. package/dist/__tests__/daemon-module-path.test.js.map +0 -1
  196. package/dist/__tests__/deep-interview-provider-options.test.d.ts +0 -2
  197. package/dist/__tests__/deep-interview-provider-options.test.d.ts.map +0 -1
  198. package/dist/__tests__/deep-interview-provider-options.test.js +0 -79
  199. package/dist/__tests__/deep-interview-provider-options.test.js.map +0 -1
  200. package/dist/__tests__/delegation-enforcement-levels.test.d.ts +0 -9
  201. package/dist/__tests__/delegation-enforcement-levels.test.d.ts.map +0 -1
  202. package/dist/__tests__/delegation-enforcement-levels.test.js +0 -587
  203. package/dist/__tests__/delegation-enforcement-levels.test.js.map +0 -1
  204. package/dist/__tests__/delegation-enforcer-integration.test.d.ts +0 -10
  205. package/dist/__tests__/delegation-enforcer-integration.test.d.ts.map +0 -1
  206. package/dist/__tests__/delegation-enforcer-integration.test.js +0 -140
  207. package/dist/__tests__/delegation-enforcer-integration.test.js.map +0 -1
  208. package/dist/__tests__/delegation-enforcer.test.d.ts +0 -5
  209. package/dist/__tests__/delegation-enforcer.test.d.ts.map +0 -1
  210. package/dist/__tests__/delegation-enforcer.test.js +0 -487
  211. package/dist/__tests__/delegation-enforcer.test.js.map +0 -1
  212. package/dist/__tests__/directory-context-injector.test.d.ts +0 -2
  213. package/dist/__tests__/directory-context-injector.test.d.ts.map +0 -1
  214. package/dist/__tests__/directory-context-injector.test.js +0 -186
  215. package/dist/__tests__/directory-context-injector.test.js.map +0 -1
  216. package/dist/__tests__/disable-tools.test.d.ts +0 -8
  217. package/dist/__tests__/disable-tools.test.d.ts.map +0 -1
  218. package/dist/__tests__/disable-tools.test.js +0 -186
  219. package/dist/__tests__/disable-tools.test.js.map +0 -1
  220. package/dist/__tests__/doctor-conflicts.test.d.ts +0 -8
  221. package/dist/__tests__/doctor-conflicts.test.d.ts.map +0 -1
  222. package/dist/__tests__/doctor-conflicts.test.js +0 -519
  223. package/dist/__tests__/doctor-conflicts.test.js.map +0 -1
  224. package/dist/__tests__/featured-contributors-generator.test.d.ts +0 -2
  225. package/dist/__tests__/featured-contributors-generator.test.d.ts.map +0 -1
  226. package/dist/__tests__/featured-contributors-generator.test.js +0 -118
  227. package/dist/__tests__/featured-contributors-generator.test.js.map +0 -1
  228. package/dist/__tests__/file-lock.test.d.ts +0 -2
  229. package/dist/__tests__/file-lock.test.d.ts.map +0 -1
  230. package/dist/__tests__/file-lock.test.js +0 -209
  231. package/dist/__tests__/file-lock.test.js.map +0 -1
  232. package/dist/__tests__/helpers/prompt-test-helpers.d.ts +0 -4
  233. package/dist/__tests__/helpers/prompt-test-helpers.d.ts.map +0 -1
  234. package/dist/__tests__/helpers/prompt-test-helpers.js +0 -9
  235. package/dist/__tests__/helpers/prompt-test-helpers.js.map +0 -1
  236. package/dist/__tests__/hooks/learner/bridge.test.d.ts +0 -11
  237. package/dist/__tests__/hooks/learner/bridge.test.d.ts.map +0 -1
  238. package/dist/__tests__/hooks/learner/bridge.test.js +0 -243
  239. package/dist/__tests__/hooks/learner/bridge.test.js.map +0 -1
  240. package/dist/__tests__/hooks/learner/parser.test.d.ts +0 -5
  241. package/dist/__tests__/hooks/learner/parser.test.d.ts.map +0 -1
  242. package/dist/__tests__/hooks/learner/parser.test.js +0 -219
  243. package/dist/__tests__/hooks/learner/parser.test.js.map +0 -1
  244. package/dist/__tests__/hooks/learner/transliteration-map.test.d.ts +0 -8
  245. package/dist/__tests__/hooks/learner/transliteration-map.test.d.ts.map +0 -1
  246. package/dist/__tests__/hooks/learner/transliteration-map.test.js +0 -183
  247. package/dist/__tests__/hooks/learner/transliteration-map.test.js.map +0 -1
  248. package/dist/__tests__/hooks/plugin-patterns.test.d.ts +0 -2
  249. package/dist/__tests__/hooks/plugin-patterns.test.d.ts.map +0 -1
  250. package/dist/__tests__/hooks/plugin-patterns.test.js +0 -203
  251. package/dist/__tests__/hooks/plugin-patterns.test.js.map +0 -1
  252. package/dist/__tests__/hooks-command-escaping.test.d.ts +0 -2
  253. package/dist/__tests__/hooks-command-escaping.test.d.ts.map +0 -1
  254. package/dist/__tests__/hooks-command-escaping.test.js +0 -41
  255. package/dist/__tests__/hooks-command-escaping.test.js.map +0 -1
  256. package/dist/__tests__/hooks.test.d.ts +0 -2
  257. package/dist/__tests__/hooks.test.d.ts.map +0 -1
  258. package/dist/__tests__/hooks.test.js +0 -1421
  259. package/dist/__tests__/hooks.test.js.map +0 -1
  260. package/dist/__tests__/hud/background-tasks.test.d.ts +0 -2
  261. package/dist/__tests__/hud/background-tasks.test.d.ts.map +0 -1
  262. package/dist/__tests__/hud/background-tasks.test.js +0 -90
  263. package/dist/__tests__/hud/background-tasks.test.js.map +0 -1
  264. package/dist/__tests__/hud/call-counts.test.d.ts +0 -2
  265. package/dist/__tests__/hud/call-counts.test.d.ts.map +0 -1
  266. package/dist/__tests__/hud/call-counts.test.js +0 -83
  267. package/dist/__tests__/hud/call-counts.test.js.map +0 -1
  268. package/dist/__tests__/hud/context-warning.test.d.ts +0 -2
  269. package/dist/__tests__/hud/context-warning.test.d.ts.map +0 -1
  270. package/dist/__tests__/hud/context-warning.test.js +0 -82
  271. package/dist/__tests__/hud/context-warning.test.js.map +0 -1
  272. package/dist/__tests__/hud/context.test.d.ts +0 -2
  273. package/dist/__tests__/hud/context.test.d.ts.map +0 -1
  274. package/dist/__tests__/hud/context.test.js +0 -47
  275. package/dist/__tests__/hud/context.test.js.map +0 -1
  276. package/dist/__tests__/hud/custom-rate-provider.test.d.ts +0 -5
  277. package/dist/__tests__/hud/custom-rate-provider.test.d.ts.map +0 -1
  278. package/dist/__tests__/hud/custom-rate-provider.test.js +0 -198
  279. package/dist/__tests__/hud/custom-rate-provider.test.js.map +0 -1
  280. package/dist/__tests__/hud/cwd.test.d.ts +0 -2
  281. package/dist/__tests__/hud/cwd.test.d.ts.map +0 -1
  282. package/dist/__tests__/hud/cwd.test.js +0 -62
  283. package/dist/__tests__/hud/cwd.test.js.map +0 -1
  284. package/dist/__tests__/hud/defaults.test.d.ts +0 -2
  285. package/dist/__tests__/hud/defaults.test.d.ts.map +0 -1
  286. package/dist/__tests__/hud/defaults.test.js +0 -71
  287. package/dist/__tests__/hud/defaults.test.js.map +0 -1
  288. package/dist/__tests__/hud/git.test.d.ts +0 -2
  289. package/dist/__tests__/hud/git.test.d.ts.map +0 -1
  290. package/dist/__tests__/hud/git.test.js +0 -111
  291. package/dist/__tests__/hud/git.test.js.map +0 -1
  292. package/dist/__tests__/hud/limits-error.test.d.ts +0 -5
  293. package/dist/__tests__/hud/limits-error.test.d.ts.map +0 -1
  294. package/dist/__tests__/hud/limits-error.test.js +0 -41
  295. package/dist/__tests__/hud/limits-error.test.js.map +0 -1
  296. package/dist/__tests__/hud/max-width.test.d.ts +0 -2
  297. package/dist/__tests__/hud/max-width.test.d.ts.map +0 -1
  298. package/dist/__tests__/hud/max-width.test.js +0 -149
  299. package/dist/__tests__/hud/max-width.test.js.map +0 -1
  300. package/dist/__tests__/hud/mission-board-state.test.d.ts +0 -2
  301. package/dist/__tests__/hud/mission-board-state.test.d.ts.map +0 -1
  302. package/dist/__tests__/hud/mission-board-state.test.js +0 -202
  303. package/dist/__tests__/hud/mission-board-state.test.js.map +0 -1
  304. package/dist/__tests__/hud/mission-board.test.d.ts +0 -2
  305. package/dist/__tests__/hud/mission-board.test.d.ts.map +0 -1
  306. package/dist/__tests__/hud/mission-board.test.js +0 -144
  307. package/dist/__tests__/hud/mission-board.test.js.map +0 -1
  308. package/dist/__tests__/hud/model.test.d.ts +0 -2
  309. package/dist/__tests__/hud/model.test.d.ts.map +0 -1
  310. package/dist/__tests__/hud/model.test.js +0 -63
  311. package/dist/__tests__/hud/model.test.js.map +0 -1
  312. package/dist/__tests__/hud/omc-state.test.d.ts +0 -2
  313. package/dist/__tests__/hud/omc-state.test.d.ts.map +0 -1
  314. package/dist/__tests__/hud/omc-state.test.js +0 -123
  315. package/dist/__tests__/hud/omc-state.test.js.map +0 -1
  316. package/dist/__tests__/hud/prompt-time.test.d.ts +0 -2
  317. package/dist/__tests__/hud/prompt-time.test.d.ts.map +0 -1
  318. package/dist/__tests__/hud/prompt-time.test.js +0 -24
  319. package/dist/__tests__/hud/prompt-time.test.js.map +0 -1
  320. package/dist/__tests__/hud/rate-limits-error.test.d.ts +0 -5
  321. package/dist/__tests__/hud/rate-limits-error.test.d.ts.map +0 -1
  322. package/dist/__tests__/hud/rate-limits-error.test.js +0 -89
  323. package/dist/__tests__/hud/rate-limits-error.test.js.map +0 -1
  324. package/dist/__tests__/hud/render-rate-limits-priority.test.d.ts +0 -8
  325. package/dist/__tests__/hud/render-rate-limits-priority.test.d.ts.map +0 -1
  326. package/dist/__tests__/hud/render-rate-limits-priority.test.js +0 -146
  327. package/dist/__tests__/hud/render-rate-limits-priority.test.js.map +0 -1
  328. package/dist/__tests__/hud/render.test.d.ts +0 -2
  329. package/dist/__tests__/hud/render.test.d.ts.map +0 -1
  330. package/dist/__tests__/hud/render.test.js +0 -531
  331. package/dist/__tests__/hud/render.test.js.map +0 -1
  332. package/dist/__tests__/hud/sanitize.test.d.ts +0 -10
  333. package/dist/__tests__/hud/sanitize.test.d.ts.map +0 -1
  334. package/dist/__tests__/hud/sanitize.test.js +0 -138
  335. package/dist/__tests__/hud/sanitize.test.js.map +0 -1
  336. package/dist/__tests__/hud/skills.test.d.ts +0 -2
  337. package/dist/__tests__/hud/skills.test.d.ts.map +0 -1
  338. package/dist/__tests__/hud/skills.test.js +0 -143
  339. package/dist/__tests__/hud/skills.test.js.map +0 -1
  340. package/dist/__tests__/hud/stale-indicator.test.d.ts +0 -9
  341. package/dist/__tests__/hud/stale-indicator.test.d.ts.map +0 -1
  342. package/dist/__tests__/hud/stale-indicator.test.js +0 -81
  343. package/dist/__tests__/hud/stale-indicator.test.js.map +0 -1
  344. package/dist/__tests__/hud/state.test.d.ts +0 -2
  345. package/dist/__tests__/hud/state.test.d.ts.map +0 -1
  346. package/dist/__tests__/hud/state.test.js +0 -264
  347. package/dist/__tests__/hud/state.test.js.map +0 -1
  348. package/dist/__tests__/hud/stdin.test.d.ts +0 -2
  349. package/dist/__tests__/hud/stdin.test.d.ts.map +0 -1
  350. package/dist/__tests__/hud/stdin.test.js +0 -108
  351. package/dist/__tests__/hud/stdin.test.js.map +0 -1
  352. package/dist/__tests__/hud/thinking.test.d.ts +0 -2
  353. package/dist/__tests__/hud/thinking.test.d.ts.map +0 -1
  354. package/dist/__tests__/hud/thinking.test.js +0 -32
  355. package/dist/__tests__/hud/thinking.test.js.map +0 -1
  356. package/dist/__tests__/hud/token-usage.test.d.ts +0 -2
  357. package/dist/__tests__/hud/token-usage.test.d.ts.map +0 -1
  358. package/dist/__tests__/hud/token-usage.test.js +0 -143
  359. package/dist/__tests__/hud/token-usage.test.js.map +0 -1
  360. package/dist/__tests__/hud/usage-api-lock.test.d.ts +0 -2
  361. package/dist/__tests__/hud/usage-api-lock.test.d.ts.map +0 -1
  362. package/dist/__tests__/hud/usage-api-lock.test.js +0 -248
  363. package/dist/__tests__/hud/usage-api-lock.test.js.map +0 -1
  364. package/dist/__tests__/hud/usage-api-stale.test.d.ts +0 -9
  365. package/dist/__tests__/hud/usage-api-stale.test.d.ts.map +0 -1
  366. package/dist/__tests__/hud/usage-api-stale.test.js +0 -299
  367. package/dist/__tests__/hud/usage-api-stale.test.js.map +0 -1
  368. package/dist/__tests__/hud/usage-api.test.d.ts +0 -5
  369. package/dist/__tests__/hud/usage-api.test.d.ts.map +0 -1
  370. package/dist/__tests__/hud/usage-api.test.js +0 -567
  371. package/dist/__tests__/hud/usage-api.test.js.map +0 -1
  372. package/dist/__tests__/hud/version-display.test.d.ts +0 -2
  373. package/dist/__tests__/hud/version-display.test.d.ts.map +0 -1
  374. package/dist/__tests__/hud/version-display.test.js +0 -110
  375. package/dist/__tests__/hud/version-display.test.js.map +0 -1
  376. package/dist/__tests__/hud/watch-mode-init.test.d.ts +0 -2
  377. package/dist/__tests__/hud/watch-mode-init.test.d.ts.map +0 -1
  378. package/dist/__tests__/hud/watch-mode-init.test.js +0 -155
  379. package/dist/__tests__/hud/watch-mode-init.test.js.map +0 -1
  380. package/dist/__tests__/hud/windows-platform.test.d.ts +0 -2
  381. package/dist/__tests__/hud/windows-platform.test.d.ts.map +0 -1
  382. package/dist/__tests__/hud/windows-platform.test.js +0 -187
  383. package/dist/__tests__/hud/windows-platform.test.js.map +0 -1
  384. package/dist/__tests__/hud-agents.test.d.ts +0 -7
  385. package/dist/__tests__/hud-agents.test.d.ts.map +0 -1
  386. package/dist/__tests__/hud-agents.test.js +0 -394
  387. package/dist/__tests__/hud-agents.test.js.map +0 -1
  388. package/dist/__tests__/hud-api-key-source.test.d.ts +0 -7
  389. package/dist/__tests__/hud-api-key-source.test.d.ts.map +0 -1
  390. package/dist/__tests__/hud-api-key-source.test.js +0 -112
  391. package/dist/__tests__/hud-api-key-source.test.js.map +0 -1
  392. package/dist/__tests__/hud-build-guidance.test.d.ts +0 -2
  393. package/dist/__tests__/hud-build-guidance.test.d.ts.map +0 -1
  394. package/dist/__tests__/hud-build-guidance.test.js +0 -30
  395. package/dist/__tests__/hud-build-guidance.test.js.map +0 -1
  396. package/dist/__tests__/hud-marketplace-resolution.test.d.ts +0 -2
  397. package/dist/__tests__/hud-marketplace-resolution.test.d.ts.map +0 -1
  398. package/dist/__tests__/hud-marketplace-resolution.test.js +0 -78
  399. package/dist/__tests__/hud-marketplace-resolution.test.js.map +0 -1
  400. package/dist/__tests__/hud-windows.test.d.ts +0 -2
  401. package/dist/__tests__/hud-windows.test.d.ts.map +0 -1
  402. package/dist/__tests__/hud-windows.test.js +0 -167
  403. package/dist/__tests__/hud-windows.test.js.map +0 -1
  404. package/dist/__tests__/installer-hooks-merge.test.d.ts +0 -13
  405. package/dist/__tests__/installer-hooks-merge.test.d.ts.map +0 -1
  406. package/dist/__tests__/installer-hooks-merge.test.js +0 -250
  407. package/dist/__tests__/installer-hooks-merge.test.js.map +0 -1
  408. package/dist/__tests__/installer-hud-skip.test.d.ts +0 -2
  409. package/dist/__tests__/installer-hud-skip.test.d.ts.map +0 -1
  410. package/dist/__tests__/installer-hud-skip.test.js +0 -124
  411. package/dist/__tests__/installer-hud-skip.test.js.map +0 -1
  412. package/dist/__tests__/installer-mcp-config.test.d.ts +0 -2
  413. package/dist/__tests__/installer-mcp-config.test.d.ts.map +0 -1
  414. package/dist/__tests__/installer-mcp-config.test.js +0 -119
  415. package/dist/__tests__/installer-mcp-config.test.js.map +0 -1
  416. package/dist/__tests__/installer-omc-reference.test.d.ts +0 -2
  417. package/dist/__tests__/installer-omc-reference.test.d.ts.map +0 -1
  418. package/dist/__tests__/installer-omc-reference.test.js +0 -85
  419. package/dist/__tests__/installer-omc-reference.test.js.map +0 -1
  420. package/dist/__tests__/installer-plugin-agents.test.d.ts +0 -2
  421. package/dist/__tests__/installer-plugin-agents.test.d.ts.map +0 -1
  422. package/dist/__tests__/installer-plugin-agents.test.js +0 -111
  423. package/dist/__tests__/installer-plugin-agents.test.js.map +0 -1
  424. package/dist/__tests__/installer-version-guard.test.d.ts +0 -2
  425. package/dist/__tests__/installer-version-guard.test.d.ts.map +0 -1
  426. package/dist/__tests__/installer-version-guard.test.js +0 -75
  427. package/dist/__tests__/installer-version-guard.test.js.map +0 -1
  428. package/dist/__tests__/installer.test.d.ts +0 -2
  429. package/dist/__tests__/installer.test.d.ts.map +0 -1
  430. package/dist/__tests__/installer.test.js +0 -518
  431. package/dist/__tests__/installer.test.js.map +0 -1
  432. package/dist/__tests__/job-management-sqlite.test.d.ts +0 -2
  433. package/dist/__tests__/job-management-sqlite.test.d.ts.map +0 -1
  434. package/dist/__tests__/job-management-sqlite.test.js +0 -269
  435. package/dist/__tests__/job-management-sqlite.test.js.map +0 -1
  436. package/dist/__tests__/job-management.test.d.ts +0 -2
  437. package/dist/__tests__/job-management.test.d.ts.map +0 -1
  438. package/dist/__tests__/job-management.test.js +0 -395
  439. package/dist/__tests__/job-management.test.js.map +0 -1
  440. package/dist/__tests__/job-state-db.test.d.ts +0 -2
  441. package/dist/__tests__/job-state-db.test.d.ts.map +0 -1
  442. package/dist/__tests__/job-state-db.test.js +0 -611
  443. package/dist/__tests__/job-state-db.test.js.map +0 -1
  444. package/dist/__tests__/jobid-collision-safety.test.d.ts +0 -10
  445. package/dist/__tests__/jobid-collision-safety.test.d.ts.map +0 -1
  446. package/dist/__tests__/jobid-collision-safety.test.js +0 -51
  447. package/dist/__tests__/jobid-collision-safety.test.js.map +0 -1
  448. package/dist/__tests__/learner/auto-learner.test.d.ts +0 -7
  449. package/dist/__tests__/learner/auto-learner.test.d.ts.map +0 -1
  450. package/dist/__tests__/learner/auto-learner.test.js +0 -507
  451. package/dist/__tests__/learner/auto-learner.test.js.map +0 -1
  452. package/dist/__tests__/learner/matcher.test.d.ts +0 -2
  453. package/dist/__tests__/learner/matcher.test.d.ts.map +0 -1
  454. package/dist/__tests__/learner/matcher.test.js +0 -330
  455. package/dist/__tests__/learner/matcher.test.js.map +0 -1
  456. package/dist/__tests__/live-data.test.d.ts +0 -2
  457. package/dist/__tests__/live-data.test.d.ts.map +0 -1
  458. package/dist/__tests__/live-data.test.js +0 -408
  459. package/dist/__tests__/live-data.test.js.map +0 -1
  460. package/dist/__tests__/load-agent-prompt.test.d.ts +0 -2
  461. package/dist/__tests__/load-agent-prompt.test.d.ts.map +0 -1
  462. package/dist/__tests__/load-agent-prompt.test.js +0 -78
  463. package/dist/__tests__/load-agent-prompt.test.js.map +0 -1
  464. package/dist/__tests__/lsp-servers.test.d.ts +0 -2
  465. package/dist/__tests__/lsp-servers.test.d.ts.map +0 -1
  466. package/dist/__tests__/lsp-servers.test.js +0 -133
  467. package/dist/__tests__/lsp-servers.test.js.map +0 -1
  468. package/dist/__tests__/mcp-comm-inbox-dedup.test.d.ts +0 -2
  469. package/dist/__tests__/mcp-comm-inbox-dedup.test.d.ts.map +0 -1
  470. package/dist/__tests__/mcp-comm-inbox-dedup.test.js +0 -105
  471. package/dist/__tests__/mcp-comm-inbox-dedup.test.js.map +0 -1
  472. package/dist/__tests__/mcp-default-config.test.d.ts +0 -2
  473. package/dist/__tests__/mcp-default-config.test.d.ts.map +0 -1
  474. package/dist/__tests__/mcp-default-config.test.js +0 -13
  475. package/dist/__tests__/mcp-default-config.test.js.map +0 -1
  476. package/dist/__tests__/mnemosyne/config.test.d.ts +0 -2
  477. package/dist/__tests__/mnemosyne/config.test.d.ts.map +0 -1
  478. package/dist/__tests__/mnemosyne/config.test.js +0 -37
  479. package/dist/__tests__/mnemosyne/config.test.js.map +0 -1
  480. package/dist/__tests__/mnemosyne/detector.test.d.ts +0 -2
  481. package/dist/__tests__/mnemosyne/detector.test.d.ts.map +0 -1
  482. package/dist/__tests__/mnemosyne/detector.test.js +0 -99
  483. package/dist/__tests__/mnemosyne/detector.test.js.map +0 -1
  484. package/dist/__tests__/mnemosyne/finder.test.d.ts +0 -2
  485. package/dist/__tests__/mnemosyne/finder.test.d.ts.map +0 -1
  486. package/dist/__tests__/mnemosyne/finder.test.js +0 -115
  487. package/dist/__tests__/mnemosyne/finder.test.js.map +0 -1
  488. package/dist/__tests__/mnemosyne/loader.test.d.ts +0 -2
  489. package/dist/__tests__/mnemosyne/loader.test.d.ts.map +0 -1
  490. package/dist/__tests__/mnemosyne/loader.test.js +0 -73
  491. package/dist/__tests__/mnemosyne/loader.test.js.map +0 -1
  492. package/dist/__tests__/mnemosyne/parser.test.d.ts +0 -2
  493. package/dist/__tests__/mnemosyne/parser.test.d.ts.map +0 -1
  494. package/dist/__tests__/mnemosyne/parser.test.js +0 -81
  495. package/dist/__tests__/mnemosyne/parser.test.js.map +0 -1
  496. package/dist/__tests__/mnemosyne/validator.test.d.ts +0 -2
  497. package/dist/__tests__/mnemosyne/validator.test.d.ts.map +0 -1
  498. package/dist/__tests__/mnemosyne/validator.test.js +0 -85
  499. package/dist/__tests__/mnemosyne/validator.test.js.map +0 -1
  500. package/dist/__tests__/mode-names-ralplan.test.d.ts +0 -2
  501. package/dist/__tests__/mode-names-ralplan.test.d.ts.map +0 -1
  502. package/dist/__tests__/mode-names-ralplan.test.js +0 -31
  503. package/dist/__tests__/mode-names-ralplan.test.js.map +0 -1
  504. package/dist/__tests__/model-routing-esm.test.d.ts +0 -2
  505. package/dist/__tests__/model-routing-esm.test.d.ts.map +0 -1
  506. package/dist/__tests__/model-routing-esm.test.js +0 -26
  507. package/dist/__tests__/model-routing-esm.test.js.map +0 -1
  508. package/dist/__tests__/model-routing.test.d.ts +0 -2
  509. package/dist/__tests__/model-routing.test.d.ts.map +0 -1
  510. package/dist/__tests__/model-routing.test.js +0 -795
  511. package/dist/__tests__/model-routing.test.js.map +0 -1
  512. package/dist/__tests__/non-claude-provider-detection.test.d.ts +0 -11
  513. package/dist/__tests__/non-claude-provider-detection.test.d.ts.map +0 -1
  514. package/dist/__tests__/non-claude-provider-detection.test.js +0 -303
  515. package/dist/__tests__/non-claude-provider-detection.test.js.map +0 -1
  516. package/dist/__tests__/notepad.test.d.ts +0 -2
  517. package/dist/__tests__/notepad.test.d.ts.map +0 -1
  518. package/dist/__tests__/notepad.test.js +0 -394
  519. package/dist/__tests__/notepad.test.js.map +0 -1
  520. package/dist/__tests__/omc-cli-rendering.test.d.ts +0 -2
  521. package/dist/__tests__/omc-cli-rendering.test.d.ts.map +0 -1
  522. package/dist/__tests__/omc-cli-rendering.test.js +0 -33
  523. package/dist/__tests__/omc-cli-rendering.test.js.map +0 -1
  524. package/dist/__tests__/omc-tools-contract.test.d.ts +0 -11
  525. package/dist/__tests__/omc-tools-contract.test.d.ts.map +0 -1
  526. package/dist/__tests__/omc-tools-contract.test.js +0 -172
  527. package/dist/__tests__/omc-tools-contract.test.js.map +0 -1
  528. package/dist/__tests__/omc-tools-server-interop.test.d.ts +0 -2
  529. package/dist/__tests__/omc-tools-server-interop.test.d.ts.map +0 -1
  530. package/dist/__tests__/omc-tools-server-interop.test.js +0 -39
  531. package/dist/__tests__/omc-tools-server-interop.test.js.map +0 -1
  532. package/dist/__tests__/omc-tools-server.test.d.ts +0 -2
  533. package/dist/__tests__/omc-tools-server.test.d.ts.map +0 -1
  534. package/dist/__tests__/omc-tools-server.test.js +0 -78
  535. package/dist/__tests__/omc-tools-server.test.js.map +0 -1
  536. package/dist/__tests__/outbox-reader-partial-lines.test.d.ts +0 -2
  537. package/dist/__tests__/outbox-reader-partial-lines.test.d.ts.map +0 -1
  538. package/dist/__tests__/outbox-reader-partial-lines.test.js +0 -49
  539. package/dist/__tests__/outbox-reader-partial-lines.test.js.map +0 -1
  540. package/dist/__tests__/package-dir-resolution-regression.test.d.ts +0 -2
  541. package/dist/__tests__/package-dir-resolution-regression.test.d.ts.map +0 -1
  542. package/dist/__tests__/package-dir-resolution-regression.test.js +0 -93
  543. package/dist/__tests__/package-dir-resolution-regression.test.js.map +0 -1
  544. package/dist/__tests__/permission-enforcement.test.d.ts +0 -2
  545. package/dist/__tests__/permission-enforcement.test.d.ts.map +0 -1
  546. package/dist/__tests__/permission-enforcement.test.js +0 -194
  547. package/dist/__tests__/permission-enforcement.test.js.map +0 -1
  548. package/dist/__tests__/pipeline-orchestrator.test.d.ts +0 -5
  549. package/dist/__tests__/pipeline-orchestrator.test.d.ts.map +0 -1
  550. package/dist/__tests__/pipeline-orchestrator.test.js +0 -244
  551. package/dist/__tests__/pipeline-orchestrator.test.js.map +0 -1
  552. package/dist/__tests__/pipeline-signal-regex-escape.test.d.ts +0 -2
  553. package/dist/__tests__/pipeline-signal-regex-escape.test.d.ts.map +0 -1
  554. package/dist/__tests__/pipeline-signal-regex-escape.test.js +0 -32
  555. package/dist/__tests__/pipeline-signal-regex-escape.test.js.map +0 -1
  556. package/dist/__tests__/plugin-setup-deps.test.d.ts +0 -2
  557. package/dist/__tests__/plugin-setup-deps.test.d.ts.map +0 -1
  558. package/dist/__tests__/plugin-setup-deps.test.js +0 -64
  559. package/dist/__tests__/plugin-setup-deps.test.js.map +0 -1
  560. package/dist/__tests__/plugin-setup-devpaths.test.d.ts +0 -2
  561. package/dist/__tests__/plugin-setup-devpaths.test.d.ts.map +0 -1
  562. package/dist/__tests__/plugin-setup-devpaths.test.js +0 -47
  563. package/dist/__tests__/plugin-setup-devpaths.test.js.map +0 -1
  564. package/dist/__tests__/pre-compact-cwd.test.d.ts +0 -2
  565. package/dist/__tests__/pre-compact-cwd.test.d.ts.map +0 -1
  566. package/dist/__tests__/pre-compact-cwd.test.js +0 -64
  567. package/dist/__tests__/pre-compact-cwd.test.js.map +0 -1
  568. package/dist/__tests__/pre-tool-agent-prefix.test.d.ts +0 -8
  569. package/dist/__tests__/pre-tool-agent-prefix.test.d.ts.map +0 -1
  570. package/dist/__tests__/pre-tool-agent-prefix.test.js +0 -131
  571. package/dist/__tests__/pre-tool-agent-prefix.test.js.map +0 -1
  572. package/dist/__tests__/pre-tool-enforcer.test.d.ts +0 -2
  573. package/dist/__tests__/pre-tool-enforcer.test.d.ts.map +0 -1
  574. package/dist/__tests__/pre-tool-enforcer.test.js +0 -331
  575. package/dist/__tests__/pre-tool-enforcer.test.js.map +0 -1
  576. package/dist/__tests__/project-memory-merge.test.d.ts +0 -2
  577. package/dist/__tests__/project-memory-merge.test.d.ts.map +0 -1
  578. package/dist/__tests__/project-memory-merge.test.js +0 -359
  579. package/dist/__tests__/project-memory-merge.test.js.map +0 -1
  580. package/dist/__tests__/prompt-injection.test.d.ts +0 -2
  581. package/dist/__tests__/prompt-injection.test.d.ts.map +0 -1
  582. package/dist/__tests__/prompt-injection.test.js +0 -214
  583. package/dist/__tests__/prompt-injection.test.js.map +0 -1
  584. package/dist/__tests__/protected-mode-regressions.test.d.ts +0 -2
  585. package/dist/__tests__/protected-mode-regressions.test.d.ts.map +0 -1
  586. package/dist/__tests__/protected-mode-regressions.test.js +0 -36
  587. package/dist/__tests__/protected-mode-regressions.test.js.map +0 -1
  588. package/dist/__tests__/providers/azure-devops.test.d.ts +0 -2
  589. package/dist/__tests__/providers/azure-devops.test.d.ts.map +0 -1
  590. package/dist/__tests__/providers/azure-devops.test.js +0 -158
  591. package/dist/__tests__/providers/azure-devops.test.js.map +0 -1
  592. package/dist/__tests__/providers/bitbucket.test.d.ts +0 -2
  593. package/dist/__tests__/providers/bitbucket.test.d.ts.map +0 -1
  594. package/dist/__tests__/providers/bitbucket.test.js +0 -184
  595. package/dist/__tests__/providers/bitbucket.test.js.map +0 -1
  596. package/dist/__tests__/providers/detection.test.d.ts +0 -2
  597. package/dist/__tests__/providers/detection.test.d.ts.map +0 -1
  598. package/dist/__tests__/providers/detection.test.js +0 -181
  599. package/dist/__tests__/providers/detection.test.js.map +0 -1
  600. package/dist/__tests__/providers/gitea.test.d.ts +0 -2
  601. package/dist/__tests__/providers/gitea.test.d.ts.map +0 -1
  602. package/dist/__tests__/providers/gitea.test.js +0 -248
  603. package/dist/__tests__/providers/gitea.test.js.map +0 -1
  604. package/dist/__tests__/providers/github.test.d.ts +0 -2
  605. package/dist/__tests__/providers/github.test.d.ts.map +0 -1
  606. package/dist/__tests__/providers/github.test.js +0 -146
  607. package/dist/__tests__/providers/github.test.js.map +0 -1
  608. package/dist/__tests__/providers/gitlab.test.d.ts +0 -2
  609. package/dist/__tests__/providers/gitlab.test.d.ts.map +0 -1
  610. package/dist/__tests__/providers/gitlab.test.js +0 -149
  611. package/dist/__tests__/providers/gitlab.test.js.map +0 -1
  612. package/dist/__tests__/purge-stale-cache.test.d.ts +0 -2
  613. package/dist/__tests__/purge-stale-cache.test.d.ts.map +0 -1
  614. package/dist/__tests__/purge-stale-cache.test.js +0 -283
  615. package/dist/__tests__/purge-stale-cache.test.js.map +0 -1
  616. package/dist/__tests__/ralph-prd-mandatory.test.d.ts +0 -2
  617. package/dist/__tests__/ralph-prd-mandatory.test.d.ts.map +0 -1
  618. package/dist/__tests__/ralph-prd-mandatory.test.js +0 -367
  619. package/dist/__tests__/ralph-prd-mandatory.test.js.map +0 -1
  620. package/dist/__tests__/ralph-prd.test.d.ts +0 -2
  621. package/dist/__tests__/ralph-prd.test.d.ts.map +0 -1
  622. package/dist/__tests__/ralph-prd.test.js +0 -308
  623. package/dist/__tests__/ralph-prd.test.js.map +0 -1
  624. package/dist/__tests__/ralph-progress.test.d.ts +0 -2
  625. package/dist/__tests__/ralph-progress.test.d.ts.map +0 -1
  626. package/dist/__tests__/ralph-progress.test.js +0 -312
  627. package/dist/__tests__/ralph-progress.test.js.map +0 -1
  628. package/dist/__tests__/rate-limit-wait/daemon-bootstrap.test.d.ts +0 -2
  629. package/dist/__tests__/rate-limit-wait/daemon-bootstrap.test.d.ts.map +0 -1
  630. package/dist/__tests__/rate-limit-wait/daemon-bootstrap.test.js +0 -98
  631. package/dist/__tests__/rate-limit-wait/daemon-bootstrap.test.js.map +0 -1
  632. package/dist/__tests__/rate-limit-wait/daemon.test.d.ts +0 -5
  633. package/dist/__tests__/rate-limit-wait/daemon.test.d.ts.map +0 -1
  634. package/dist/__tests__/rate-limit-wait/daemon.test.js +0 -321
  635. package/dist/__tests__/rate-limit-wait/daemon.test.js.map +0 -1
  636. package/dist/__tests__/rate-limit-wait/integration.test.d.ts +0 -8
  637. package/dist/__tests__/rate-limit-wait/integration.test.d.ts.map +0 -1
  638. package/dist/__tests__/rate-limit-wait/integration.test.js +0 -353
  639. package/dist/__tests__/rate-limit-wait/integration.test.js.map +0 -1
  640. package/dist/__tests__/rate-limit-wait/rate-limit-monitor.test.d.ts +0 -5
  641. package/dist/__tests__/rate-limit-wait/rate-limit-monitor.test.d.ts.map +0 -1
  642. package/dist/__tests__/rate-limit-wait/rate-limit-monitor.test.js +0 -233
  643. package/dist/__tests__/rate-limit-wait/rate-limit-monitor.test.js.map +0 -1
  644. package/dist/__tests__/rate-limit-wait/tmux-detector.test.d.ts +0 -5
  645. package/dist/__tests__/rate-limit-wait/tmux-detector.test.d.ts.map +0 -1
  646. package/dist/__tests__/rate-limit-wait/tmux-detector.test.js +0 -312
  647. package/dist/__tests__/rate-limit-wait/tmux-detector.test.js.map +0 -1
  648. package/dist/__tests__/repo-slug-dots.test.d.ts +0 -2
  649. package/dist/__tests__/repo-slug-dots.test.d.ts.map +0 -1
  650. package/dist/__tests__/repo-slug-dots.test.js +0 -24
  651. package/dist/__tests__/repo-slug-dots.test.js.map +0 -1
  652. package/dist/__tests__/resolve-node.test.d.ts +0 -8
  653. package/dist/__tests__/resolve-node.test.d.ts.map +0 -1
  654. package/dist/__tests__/resolve-node.test.js +0 -65
  655. package/dist/__tests__/resolve-node.test.js.map +0 -1
  656. package/dist/__tests__/resolve-transcript-path.test.d.ts +0 -12
  657. package/dist/__tests__/resolve-transcript-path.test.d.ts.map +0 -1
  658. package/dist/__tests__/resolve-transcript-path.test.js +0 -167
  659. package/dist/__tests__/resolve-transcript-path.test.js.map +0 -1
  660. package/dist/__tests__/routing-force-inherit.test.d.ts +0 -8
  661. package/dist/__tests__/routing-force-inherit.test.d.ts.map +0 -1
  662. package/dist/__tests__/routing-force-inherit.test.js +0 -211
  663. package/dist/__tests__/routing-force-inherit.test.js.map +0 -1
  664. package/dist/__tests__/run-cjs-graceful-fallback.test.d.ts +0 -2
  665. package/dist/__tests__/run-cjs-graceful-fallback.test.d.ts.map +0 -1
  666. package/dist/__tests__/run-cjs-graceful-fallback.test.js +0 -167
  667. package/dist/__tests__/run-cjs-graceful-fallback.test.js.map +0 -1
  668. package/dist/__tests__/runtime-task-orphan.test.d.ts +0 -2
  669. package/dist/__tests__/runtime-task-orphan.test.d.ts.map +0 -1
  670. package/dist/__tests__/runtime-task-orphan.test.js +0 -103
  671. package/dist/__tests__/runtime-task-orphan.test.js.map +0 -1
  672. package/dist/__tests__/session-history-search.test.d.ts +0 -2
  673. package/dist/__tests__/session-history-search.test.d.ts.map +0 -1
  674. package/dist/__tests__/session-history-search.test.js +0 -115
  675. package/dist/__tests__/session-history-search.test.js.map +0 -1
  676. package/dist/__tests__/session-start-cache-cleanup.test.d.ts +0 -2
  677. package/dist/__tests__/session-start-cache-cleanup.test.d.ts.map +0 -1
  678. package/dist/__tests__/session-start-cache-cleanup.test.js +0 -150
  679. package/dist/__tests__/session-start-cache-cleanup.test.js.map +0 -1
  680. package/dist/__tests__/session-start-script-context.test.d.ts +0 -2
  681. package/dist/__tests__/session-start-script-context.test.d.ts.map +0 -1
  682. package/dist/__tests__/session-start-script-context.test.js +0 -134
  683. package/dist/__tests__/session-start-script-context.test.js.map +0 -1
  684. package/dist/__tests__/session-start-timeout-cleanup.test.d.ts +0 -2
  685. package/dist/__tests__/session-start-timeout-cleanup.test.d.ts.map +0 -1
  686. package/dist/__tests__/session-start-timeout-cleanup.test.js +0 -26
  687. package/dist/__tests__/session-start-timeout-cleanup.test.js.map +0 -1
  688. package/dist/__tests__/session-summary-pid-tracking.test.d.ts +0 -2
  689. package/dist/__tests__/session-summary-pid-tracking.test.d.ts.map +0 -1
  690. package/dist/__tests__/session-summary-pid-tracking.test.js +0 -107
  691. package/dist/__tests__/session-summary-pid-tracking.test.js.map +0 -1
  692. package/dist/__tests__/setup-claude-md-script.test.d.ts +0 -2
  693. package/dist/__tests__/setup-claude-md-script.test.d.ts.map +0 -1
  694. package/dist/__tests__/setup-claude-md-script.test.js +0 -292
  695. package/dist/__tests__/setup-claude-md-script.test.js.map +0 -1
  696. package/dist/__tests__/shared-memory-concurrency.test.d.ts +0 -8
  697. package/dist/__tests__/shared-memory-concurrency.test.d.ts.map +0 -1
  698. package/dist/__tests__/shared-memory-concurrency.test.js +0 -132
  699. package/dist/__tests__/shared-memory-concurrency.test.js.map +0 -1
  700. package/dist/__tests__/shared-memory.test.d.ts +0 -2
  701. package/dist/__tests__/shared-memory.test.d.ts.map +0 -1
  702. package/dist/__tests__/shared-memory.test.js +0 -345
  703. package/dist/__tests__/shared-memory.test.js.map +0 -1
  704. package/dist/__tests__/shared-state-locking.test.d.ts +0 -10
  705. package/dist/__tests__/shared-state-locking.test.d.ts.map +0 -1
  706. package/dist/__tests__/shared-state-locking.test.js +0 -61
  707. package/dist/__tests__/shared-state-locking.test.js.map +0 -1
  708. package/dist/__tests__/skills.test.d.ts +0 -2
  709. package/dist/__tests__/skills.test.d.ts.map +0 -1
  710. package/dist/__tests__/skills.test.js +0 -372
  711. package/dist/__tests__/skills.test.js.map +0 -1
  712. package/dist/__tests__/slack-fallback-removal.test.d.ts +0 -2
  713. package/dist/__tests__/slack-fallback-removal.test.d.ts.map +0 -1
  714. package/dist/__tests__/slack-fallback-removal.test.js +0 -16
  715. package/dist/__tests__/slack-fallback-removal.test.js.map +0 -1
  716. package/dist/__tests__/slack-socket.test.d.ts +0 -5
  717. package/dist/__tests__/slack-socket.test.d.ts.map +0 -1
  718. package/dist/__tests__/slack-socket.test.js +0 -252
  719. package/dist/__tests__/slack-socket.test.js.map +0 -1
  720. package/dist/__tests__/smoke-pipeline-edge.test.d.ts +0 -8
  721. package/dist/__tests__/smoke-pipeline-edge.test.d.ts.map +0 -1
  722. package/dist/__tests__/smoke-pipeline-edge.test.js +0 -435
  723. package/dist/__tests__/smoke-pipeline-edge.test.js.map +0 -1
  724. package/dist/__tests__/smoke-slack-and-state.test.d.ts +0 -13
  725. package/dist/__tests__/smoke-slack-and-state.test.d.ts.map +0 -1
  726. package/dist/__tests__/smoke-slack-and-state.test.js +0 -632
  727. package/dist/__tests__/smoke-slack-and-state.test.js.map +0 -1
  728. package/dist/__tests__/ssrf-guard.test.d.ts +0 -2
  729. package/dist/__tests__/ssrf-guard.test.d.ts.map +0 -1
  730. package/dist/__tests__/ssrf-guard.test.js +0 -108
  731. package/dist/__tests__/ssrf-guard.test.js.map +0 -1
  732. package/dist/__tests__/standalone-server.test.d.ts +0 -2
  733. package/dist/__tests__/standalone-server.test.d.ts.map +0 -1
  734. package/dist/__tests__/standalone-server.test.js +0 -57
  735. package/dist/__tests__/standalone-server.test.js.map +0 -1
  736. package/dist/__tests__/task-continuation.test.d.ts +0 -2
  737. package/dist/__tests__/task-continuation.test.d.ts.map +0 -1
  738. package/dist/__tests__/task-continuation.test.js +0 -743
  739. package/dist/__tests__/task-continuation.test.js.map +0 -1
  740. package/dist/__tests__/team-ops-task-locking.test.d.ts +0 -2
  741. package/dist/__tests__/team-ops-task-locking.test.d.ts.map +0 -1
  742. package/dist/__tests__/team-ops-task-locking.test.js +0 -66
  743. package/dist/__tests__/team-ops-task-locking.test.js.map +0 -1
  744. package/dist/__tests__/team-server-validation.test.d.ts +0 -2
  745. package/dist/__tests__/team-server-validation.test.d.ts.map +0 -1
  746. package/dist/__tests__/team-server-validation.test.js +0 -123
  747. package/dist/__tests__/team-server-validation.test.js.map +0 -1
  748. package/dist/__tests__/team-status-failed-count.test.d.ts +0 -2
  749. package/dist/__tests__/team-status-failed-count.test.d.ts.map +0 -1
  750. package/dist/__tests__/team-status-failed-count.test.js +0 -91
  751. package/dist/__tests__/team-status-failed-count.test.js.map +0 -1
  752. package/dist/__tests__/team-status-tmux-provider.test.d.ts +0 -2
  753. package/dist/__tests__/team-status-tmux-provider.test.d.ts.map +0 -1
  754. package/dist/__tests__/team-status-tmux-provider.test.js +0 -39
  755. package/dist/__tests__/team-status-tmux-provider.test.js.map +0 -1
  756. package/dist/__tests__/tier0-contracts.test.d.ts +0 -2
  757. package/dist/__tests__/tier0-contracts.test.d.ts.map +0 -1
  758. package/dist/__tests__/tier0-contracts.test.js +0 -47
  759. package/dist/__tests__/tier0-contracts.test.js.map +0 -1
  760. package/dist/__tests__/tier0-docs-consistency.test.d.ts +0 -2
  761. package/dist/__tests__/tier0-docs-consistency.test.d.ts.map +0 -1
  762. package/dist/__tests__/tier0-docs-consistency.test.js +0 -96
  763. package/dist/__tests__/tier0-docs-consistency.test.js.map +0 -1
  764. package/dist/__tests__/tools/ast-tools.test.d.ts +0 -2
  765. package/dist/__tests__/tools/ast-tools.test.d.ts.map +0 -1
  766. package/dist/__tests__/tools/ast-tools.test.js +0 -74
  767. package/dist/__tests__/tools/ast-tools.test.js.map +0 -1
  768. package/dist/__tests__/tools/skills-tools.test.d.ts +0 -2
  769. package/dist/__tests__/tools/skills-tools.test.d.ts.map +0 -1
  770. package/dist/__tests__/tools/skills-tools.test.js +0 -63
  771. package/dist/__tests__/tools/skills-tools.test.js.map +0 -1
  772. package/dist/__tests__/tools/trace-tools.test.d.ts +0 -2
  773. package/dist/__tests__/tools/trace-tools.test.d.ts.map +0 -1
  774. package/dist/__tests__/tools/trace-tools.test.js +0 -241
  775. package/dist/__tests__/tools/trace-tools.test.js.map +0 -1
  776. package/dist/__tests__/types.test.d.ts +0 -2
  777. package/dist/__tests__/types.test.d.ts.map +0 -1
  778. package/dist/__tests__/types.test.js +0 -78
  779. package/dist/__tests__/types.test.js.map +0 -1
  780. package/dist/__tests__/version-helper.test.d.ts +0 -2
  781. package/dist/__tests__/version-helper.test.d.ts.map +0 -1
  782. package/dist/__tests__/version-helper.test.js +0 -37
  783. package/dist/__tests__/version-helper.test.js.map +0 -1
  784. package/dist/__tests__/visual-verdict-skill.test.d.ts +0 -2
  785. package/dist/__tests__/visual-verdict-skill.test.d.ts.map +0 -1
  786. package/dist/__tests__/visual-verdict-skill.test.js +0 -26
  787. package/dist/__tests__/visual-verdict-skill.test.js.map +0 -1
  788. package/dist/__tests__/webhook-timeout-cleanup.test.d.ts +0 -2
  789. package/dist/__tests__/webhook-timeout-cleanup.test.d.ts.map +0 -1
  790. package/dist/__tests__/webhook-timeout-cleanup.test.js +0 -18
  791. package/dist/__tests__/webhook-timeout-cleanup.test.js.map +0 -1
  792. package/dist/__tests__/worktree-metadata-locking.test.d.ts +0 -2
  793. package/dist/__tests__/worktree-metadata-locking.test.d.ts.map +0 -1
  794. package/dist/__tests__/worktree-metadata-locking.test.js +0 -51
  795. package/dist/__tests__/worktree-metadata-locking.test.js.map +0 -1
  796. package/dist/agents/analyst.d.ts +0 -11
  797. package/dist/agents/analyst.d.ts.map +0 -1
  798. package/dist/agents/analyst.js +0 -40
  799. package/dist/agents/analyst.js.map +0 -1
  800. package/dist/agents/architect.d.ts +0 -12
  801. package/dist/agents/architect.d.ts.map +0 -1
  802. package/dist/agents/architect.js +0 -44
  803. package/dist/agents/architect.js.map +0 -1
  804. package/dist/agents/critic.d.ts +0 -11
  805. package/dist/agents/critic.d.ts.map +0 -1
  806. package/dist/agents/critic.js +0 -39
  807. package/dist/agents/critic.js.map +0 -1
  808. package/dist/agents/definitions.d.ts +0 -90
  809. package/dist/agents/definitions.d.ts.map +0 -1
  810. package/dist/agents/definitions.js +0 -353
  811. package/dist/agents/definitions.js.map +0 -1
  812. package/dist/agents/designer.d.ts +0 -11
  813. package/dist/agents/designer.d.ts.map +0 -1
  814. package/dist/agents/designer.js +0 -44
  815. package/dist/agents/designer.js.map +0 -1
  816. package/dist/agents/document-specialist.d.ts +0 -12
  817. package/dist/agents/document-specialist.d.ts.map +0 -1
  818. package/dist/agents/document-specialist.js +0 -65
  819. package/dist/agents/document-specialist.js.map +0 -1
  820. package/dist/agents/executor.d.ts +0 -13
  821. package/dist/agents/executor.d.ts.map +0 -1
  822. package/dist/agents/executor.js +0 -40
  823. package/dist/agents/executor.js.map +0 -1
  824. package/dist/agents/explore.d.ts +0 -12
  825. package/dist/agents/explore.d.ts.map +0 -1
  826. package/dist/agents/explore.js +0 -42
  827. package/dist/agents/explore.js.map +0 -1
  828. package/dist/agents/index.d.ts +0 -25
  829. package/dist/agents/index.d.ts.map +0 -1
  830. package/dist/agents/index.js +0 -32
  831. package/dist/agents/index.js.map +0 -1
  832. package/dist/agents/planner.d.ts +0 -11
  833. package/dist/agents/planner.d.ts.map +0 -1
  834. package/dist/agents/planner.js +0 -39
  835. package/dist/agents/planner.js.map +0 -1
  836. package/dist/agents/prompt-helpers.d.ts +0 -74
  837. package/dist/agents/prompt-helpers.d.ts.map +0 -1
  838. package/dist/agents/prompt-helpers.js +0 -192
  839. package/dist/agents/prompt-helpers.js.map +0 -1
  840. package/dist/agents/prompt-sections/index.d.ts +0 -44
  841. package/dist/agents/prompt-sections/index.d.ts.map +0 -1
  842. package/dist/agents/prompt-sections/index.js +0 -200
  843. package/dist/agents/prompt-sections/index.js.map +0 -1
  844. package/dist/agents/qa-tester.d.ts +0 -16
  845. package/dist/agents/qa-tester.d.ts.map +0 -1
  846. package/dist/agents/qa-tester.js +0 -45
  847. package/dist/agents/qa-tester.js.map +0 -1
  848. package/dist/agents/scientist.d.ts +0 -16
  849. package/dist/agents/scientist.d.ts.map +0 -1
  850. package/dist/agents/scientist.js +0 -53
  851. package/dist/agents/scientist.js.map +0 -1
  852. package/dist/agents/tracer.d.ts +0 -11
  853. package/dist/agents/tracer.d.ts.map +0 -1
  854. package/dist/agents/tracer.js +0 -40
  855. package/dist/agents/tracer.js.map +0 -1
  856. package/dist/agents/types.d.ts +0 -127
  857. package/dist/agents/types.d.ts.map +0 -1
  858. package/dist/agents/types.js +0 -38
  859. package/dist/agents/types.js.map +0 -1
  860. package/dist/agents/utils.d.ts +0 -76
  861. package/dist/agents/utils.d.ts.map +0 -1
  862. package/dist/agents/utils.js +0 -308
  863. package/dist/agents/utils.js.map +0 -1
  864. package/dist/agents/writer.d.ts +0 -11
  865. package/dist/agents/writer.d.ts.map +0 -1
  866. package/dist/agents/writer.js +0 -40
  867. package/dist/agents/writer.js.map +0 -1
  868. package/dist/autoresearch/__tests__/contracts.test.d.ts +0 -2
  869. package/dist/autoresearch/__tests__/contracts.test.d.ts.map +0 -1
  870. package/dist/autoresearch/__tests__/contracts.test.js +0 -90
  871. package/dist/autoresearch/__tests__/contracts.test.js.map +0 -1
  872. package/dist/autoresearch/__tests__/runtime-parity-extra.test.d.ts +0 -2
  873. package/dist/autoresearch/__tests__/runtime-parity-extra.test.d.ts.map +0 -1
  874. package/dist/autoresearch/__tests__/runtime-parity-extra.test.js +0 -352
  875. package/dist/autoresearch/__tests__/runtime-parity-extra.test.js.map +0 -1
  876. package/dist/autoresearch/__tests__/runtime.test.d.ts +0 -2
  877. package/dist/autoresearch/__tests__/runtime.test.d.ts.map +0 -1
  878. package/dist/autoresearch/__tests__/runtime.test.js +0 -210
  879. package/dist/autoresearch/__tests__/runtime.test.js.map +0 -1
  880. package/dist/autoresearch/__tests__/setup-contract.test.d.ts +0 -2
  881. package/dist/autoresearch/__tests__/setup-contract.test.d.ts.map +0 -1
  882. package/dist/autoresearch/__tests__/setup-contract.test.js +0 -57
  883. package/dist/autoresearch/__tests__/setup-contract.test.js.map +0 -1
  884. package/dist/autoresearch/contracts.d.ts +0 -31
  885. package/dist/autoresearch/contracts.d.ts.map +0 -1
  886. package/dist/autoresearch/contracts.js +0 -189
  887. package/dist/autoresearch/contracts.js.map +0 -1
  888. package/dist/autoresearch/runtime.d.ts +0 -137
  889. package/dist/autoresearch/runtime.d.ts.map +0 -1
  890. package/dist/autoresearch/runtime.js +0 -1103
  891. package/dist/autoresearch/runtime.js.map +0 -1
  892. package/dist/autoresearch/setup-contract.d.ts +0 -18
  893. package/dist/autoresearch/setup-contract.d.ts.map +0 -1
  894. package/dist/autoresearch/setup-contract.js +0 -96
  895. package/dist/autoresearch/setup-contract.js.map +0 -1
  896. package/dist/cli/__tests__/ask.test.d.ts +0 -2
  897. package/dist/cli/__tests__/ask.test.d.ts.map +0 -1
  898. package/dist/cli/__tests__/ask.test.js +0 -431
  899. package/dist/cli/__tests__/ask.test.js.map +0 -1
  900. package/dist/cli/__tests__/autoresearch-guided.test.d.ts +0 -2
  901. package/dist/cli/__tests__/autoresearch-guided.test.d.ts.map +0 -1
  902. package/dist/cli/__tests__/autoresearch-guided.test.js +0 -389
  903. package/dist/cli/__tests__/autoresearch-guided.test.js.map +0 -1
  904. package/dist/cli/__tests__/autoresearch-intake.test.d.ts +0 -2
  905. package/dist/cli/__tests__/autoresearch-intake.test.d.ts.map +0 -1
  906. package/dist/cli/__tests__/autoresearch-intake.test.js +0 -131
  907. package/dist/cli/__tests__/autoresearch-intake.test.js.map +0 -1
  908. package/dist/cli/__tests__/autoresearch-setup-session.test.d.ts +0 -2
  909. package/dist/cli/__tests__/autoresearch-setup-session.test.d.ts.map +0 -1
  910. package/dist/cli/__tests__/autoresearch-setup-session.test.js +0 -73
  911. package/dist/cli/__tests__/autoresearch-setup-session.test.js.map +0 -1
  912. package/dist/cli/__tests__/autoresearch.test.d.ts +0 -2
  913. package/dist/cli/__tests__/autoresearch.test.d.ts.map +0 -1
  914. package/dist/cli/__tests__/autoresearch.test.js +0 -148
  915. package/dist/cli/__tests__/autoresearch.test.js.map +0 -1
  916. package/dist/cli/__tests__/cli-boot.test.d.ts +0 -8
  917. package/dist/cli/__tests__/cli-boot.test.d.ts.map +0 -1
  918. package/dist/cli/__tests__/cli-boot.test.js +0 -82
  919. package/dist/cli/__tests__/cli-boot.test.js.map +0 -1
  920. package/dist/cli/__tests__/hud-watch.test.d.ts +0 -2
  921. package/dist/cli/__tests__/hud-watch.test.d.ts.map +0 -1
  922. package/dist/cli/__tests__/hud-watch.test.js +0 -56
  923. package/dist/cli/__tests__/hud-watch.test.js.map +0 -1
  924. package/dist/cli/__tests__/launch.test.d.ts +0 -9
  925. package/dist/cli/__tests__/launch.test.d.ts.map +0 -1
  926. package/dist/cli/__tests__/launch.test.js +0 -727
  927. package/dist/cli/__tests__/launch.test.js.map +0 -1
  928. package/dist/cli/__tests__/session-search-help.test.d.ts +0 -2
  929. package/dist/cli/__tests__/session-search-help.test.d.ts.map +0 -1
  930. package/dist/cli/__tests__/session-search-help.test.js +0 -13
  931. package/dist/cli/__tests__/session-search-help.test.js.map +0 -1
  932. package/dist/cli/__tests__/session-search.test.d.ts +0 -2
  933. package/dist/cli/__tests__/session-search.test.d.ts.map +0 -1
  934. package/dist/cli/__tests__/session-search.test.js +0 -72
  935. package/dist/cli/__tests__/session-search.test.js.map +0 -1
  936. package/dist/cli/__tests__/team-command-branding.test.d.ts +0 -2
  937. package/dist/cli/__tests__/team-command-branding.test.d.ts.map +0 -1
  938. package/dist/cli/__tests__/team-command-branding.test.js +0 -14
  939. package/dist/cli/__tests__/team-command-branding.test.js.map +0 -1
  940. package/dist/cli/__tests__/team-help.test.d.ts +0 -2
  941. package/dist/cli/__tests__/team-help.test.d.ts.map +0 -1
  942. package/dist/cli/__tests__/team-help.test.js +0 -19
  943. package/dist/cli/__tests__/team-help.test.js.map +0 -1
  944. package/dist/cli/__tests__/team-runtime-boundary.test.d.ts +0 -2
  945. package/dist/cli/__tests__/team-runtime-boundary.test.d.ts.map +0 -1
  946. package/dist/cli/__tests__/team-runtime-boundary.test.js +0 -11
  947. package/dist/cli/__tests__/team-runtime-boundary.test.js.map +0 -1
  948. package/dist/cli/__tests__/team.test.d.ts +0 -2
  949. package/dist/cli/__tests__/team.test.d.ts.map +0 -1
  950. package/dist/cli/__tests__/team.test.js +0 -629
  951. package/dist/cli/__tests__/team.test.js.map +0 -1
  952. package/dist/cli/__tests__/teleport-help.test.d.ts +0 -2
  953. package/dist/cli/__tests__/teleport-help.test.d.ts.map +0 -1
  954. package/dist/cli/__tests__/teleport-help.test.js +0 -17
  955. package/dist/cli/__tests__/teleport-help.test.js.map +0 -1
  956. package/dist/cli/__tests__/tmux-utils.test.d.ts +0 -11
  957. package/dist/cli/__tests__/tmux-utils.test.d.ts.map +0 -1
  958. package/dist/cli/__tests__/tmux-utils.test.js +0 -185
  959. package/dist/cli/__tests__/tmux-utils.test.js.map +0 -1
  960. package/dist/cli/ask.d.ts +0 -13
  961. package/dist/cli/ask.d.ts.map +0 -1
  962. package/dist/cli/ask.js +0 -202
  963. package/dist/cli/ask.js.map +0 -1
  964. package/dist/cli/autoresearch-guided.d.ts +0 -37
  965. package/dist/cli/autoresearch-guided.d.ts.map +0 -1
  966. package/dist/cli/autoresearch-guided.js +0 -312
  967. package/dist/cli/autoresearch-guided.js.map +0 -1
  968. package/dist/cli/autoresearch-intake.d.ts +0 -60
  969. package/dist/cli/autoresearch-intake.d.ts.map +0 -1
  970. package/dist/cli/autoresearch-intake.js +0 -325
  971. package/dist/cli/autoresearch-intake.js.map +0 -1
  972. package/dist/cli/autoresearch-setup-session.d.ts +0 -15
  973. package/dist/cli/autoresearch-setup-session.d.ts.map +0 -1
  974. package/dist/cli/autoresearch-setup-session.js +0 -133
  975. package/dist/cli/autoresearch-setup-session.js.map +0 -1
  976. package/dist/cli/autoresearch.d.ts +0 -19
  977. package/dist/cli/autoresearch.d.ts.map +0 -1
  978. package/dist/cli/autoresearch.js +0 -330
  979. package/dist/cli/autoresearch.js.map +0 -1
  980. package/dist/cli/commands/__tests__/team.test.d.ts +0 -2
  981. package/dist/cli/commands/__tests__/team.test.d.ts.map +0 -1
  982. package/dist/cli/commands/__tests__/team.test.js +0 -314
  983. package/dist/cli/commands/__tests__/team.test.js.map +0 -1
  984. package/dist/cli/commands/__tests__/teleport.test.d.ts +0 -2
  985. package/dist/cli/commands/__tests__/teleport.test.d.ts.map +0 -1
  986. package/dist/cli/commands/__tests__/teleport.test.js +0 -110
  987. package/dist/cli/commands/__tests__/teleport.test.js.map +0 -1
  988. package/dist/cli/commands/doctor-conflicts.d.ts +0 -74
  989. package/dist/cli/commands/doctor-conflicts.d.ts.map +0 -1
  990. package/dist/cli/commands/doctor-conflicts.js +0 -461
  991. package/dist/cli/commands/doctor-conflicts.js.map +0 -1
  992. package/dist/cli/commands/ralphthon.d.ts +0 -30
  993. package/dist/cli/commands/ralphthon.d.ts.map +0 -1
  994. package/dist/cli/commands/ralphthon.js +0 -361
  995. package/dist/cli/commands/ralphthon.js.map +0 -1
  996. package/dist/cli/commands/session-search.d.ts +0 -18
  997. package/dist/cli/commands/session-search.d.ts.map +0 -1
  998. package/dist/cli/commands/session-search.js +0 -47
  999. package/dist/cli/commands/session-search.js.map +0 -1
  1000. package/dist/cli/commands/team.d.ts +0 -69
  1001. package/dist/cli/commands/team.d.ts.map +0 -1
  1002. package/dist/cli/commands/team.js +0 -739
  1003. package/dist/cli/commands/team.js.map +0 -1
  1004. package/dist/cli/commands/teleport.d.ts +0 -38
  1005. package/dist/cli/commands/teleport.d.ts.map +0 -1
  1006. package/dist/cli/commands/teleport.js +0 -555
  1007. package/dist/cli/commands/teleport.js.map +0 -1
  1008. package/dist/cli/commands/wait.d.ts +0 -52
  1009. package/dist/cli/commands/wait.d.ts.map +0 -1
  1010. package/dist/cli/commands/wait.js +0 -240
  1011. package/dist/cli/commands/wait.js.map +0 -1
  1012. package/dist/cli/hud-watch.d.ts +0 -15
  1013. package/dist/cli/hud-watch.d.ts.map +0 -1
  1014. package/dist/cli/hud-watch.js +0 -37
  1015. package/dist/cli/hud-watch.js.map +0 -1
  1016. package/dist/cli/index.d.ts +0 -13
  1017. package/dist/cli/index.d.ts.map +0 -1
  1018. package/dist/cli/index.js +0 -1419
  1019. package/dist/cli/index.js.map +0 -1
  1020. package/dist/cli/interop.d.ts +0 -29
  1021. package/dist/cli/interop.d.ts.map +0 -1
  1022. package/dist/cli/interop.js +0 -141
  1023. package/dist/cli/interop.js.map +0 -1
  1024. package/dist/cli/launch.d.ts +0 -138
  1025. package/dist/cli/launch.d.ts.map +0 -1
  1026. package/dist/cli/launch.js +0 -438
  1027. package/dist/cli/launch.js.map +0 -1
  1028. package/dist/cli/team.d.ts +0 -78
  1029. package/dist/cli/team.d.ts.map +0 -1
  1030. package/dist/cli/team.js +0 -991
  1031. package/dist/cli/team.js.map +0 -1
  1032. package/dist/cli/tmux-utils.d.ts +0 -82
  1033. package/dist/cli/tmux-utils.d.ts.map +0 -1
  1034. package/dist/cli/tmux-utils.js +0 -206
  1035. package/dist/cli/tmux-utils.js.map +0 -1
  1036. package/dist/cli/utils/formatting.d.ts +0 -22
  1037. package/dist/cli/utils/formatting.d.ts.map +0 -1
  1038. package/dist/cli/utils/formatting.js +0 -70
  1039. package/dist/cli/utils/formatting.js.map +0 -1
  1040. package/dist/cli/win32-warning.d.ts +0 -7
  1041. package/dist/cli/win32-warning.d.ts.map +0 -1
  1042. package/dist/cli/win32-warning.js +0 -29
  1043. package/dist/cli/win32-warning.js.map +0 -1
  1044. package/dist/commands/index.d.ts +0 -78
  1045. package/dist/commands/index.d.ts.map +0 -1
  1046. package/dist/commands/index.js +0 -148
  1047. package/dist/commands/index.js.map +0 -1
  1048. package/dist/config/__tests__/loader.test.d.ts +0 -2
  1049. package/dist/config/__tests__/loader.test.d.ts.map +0 -1
  1050. package/dist/config/__tests__/loader.test.js +0 -199
  1051. package/dist/config/__tests__/loader.test.js.map +0 -1
  1052. package/dist/config/__tests__/models.test.d.ts +0 -2
  1053. package/dist/config/__tests__/models.test.d.ts.map +0 -1
  1054. package/dist/config/__tests__/models.test.js +0 -260
  1055. package/dist/config/__tests__/models.test.js.map +0 -1
  1056. package/dist/config/__tests__/plan-output.test.d.ts +0 -2
  1057. package/dist/config/__tests__/plan-output.test.d.ts.map +0 -1
  1058. package/dist/config/__tests__/plan-output.test.js +0 -41
  1059. package/dist/config/__tests__/plan-output.test.js.map +0 -1
  1060. package/dist/config/__tests__/test-helpers.d.ts +0 -3
  1061. package/dist/config/__tests__/test-helpers.d.ts.map +0 -1
  1062. package/dist/config/__tests__/test-helpers.js +0 -19
  1063. package/dist/config/__tests__/test-helpers.js.map +0 -1
  1064. package/dist/config/index.d.ts +0 -6
  1065. package/dist/config/index.d.ts.map +0 -1
  1066. package/dist/config/index.js +0 -6
  1067. package/dist/config/index.js.map +0 -1
  1068. package/dist/config/loader.d.ts +0 -59
  1069. package/dist/config/loader.d.ts.map +0 -1
  1070. package/dist/config/loader.js +0 -751
  1071. package/dist/config/loader.js.map +0 -1
  1072. package/dist/config/models.d.ts +0 -107
  1073. package/dist/config/models.d.ts.map +0 -1
  1074. package/dist/config/models.js +0 -286
  1075. package/dist/config/models.js.map +0 -1
  1076. package/dist/config/plan-output.d.ts +0 -12
  1077. package/dist/config/plan-output.d.ts.map +0 -1
  1078. package/dist/config/plan-output.js +0 -67
  1079. package/dist/config/plan-output.js.map +0 -1
  1080. package/dist/constants/index.d.ts +0 -5
  1081. package/dist/constants/index.d.ts.map +0 -1
  1082. package/dist/constants/index.js +0 -5
  1083. package/dist/constants/index.js.map +0 -1
  1084. package/dist/constants/names.d.ts +0 -42
  1085. package/dist/constants/names.d.ts.map +0 -1
  1086. package/dist/constants/names.js +0 -42
  1087. package/dist/constants/names.js.map +0 -1
  1088. package/dist/features/auto-update.d.ts +0 -314
  1089. package/dist/features/auto-update.d.ts.map +0 -1
  1090. package/dist/features/auto-update.js +0 -939
  1091. package/dist/features/auto-update.js.map +0 -1
  1092. package/dist/features/background-agent/concurrency.d.ts +0 -53
  1093. package/dist/features/background-agent/concurrency.d.ts.map +0 -1
  1094. package/dist/features/background-agent/concurrency.js +0 -121
  1095. package/dist/features/background-agent/concurrency.js.map +0 -1
  1096. package/dist/features/background-agent/index.d.ts +0 -12
  1097. package/dist/features/background-agent/index.d.ts.map +0 -1
  1098. package/dist/features/background-agent/index.js +0 -12
  1099. package/dist/features/background-agent/index.js.map +0 -1
  1100. package/dist/features/background-agent/manager.d.ts +0 -144
  1101. package/dist/features/background-agent/manager.d.ts.map +0 -1
  1102. package/dist/features/background-agent/manager.js +0 -494
  1103. package/dist/features/background-agent/manager.js.map +0 -1
  1104. package/dist/features/background-agent/types.d.ts +0 -128
  1105. package/dist/features/background-agent/types.d.ts.map +0 -1
  1106. package/dist/features/background-agent/types.js +0 -9
  1107. package/dist/features/background-agent/types.js.map +0 -1
  1108. package/dist/features/background-tasks.d.ts +0 -99
  1109. package/dist/features/background-tasks.d.ts.map +0 -1
  1110. package/dist/features/background-tasks.js +0 -265
  1111. package/dist/features/background-tasks.js.map +0 -1
  1112. package/dist/features/boulder-state/constants.d.ts +0 -20
  1113. package/dist/features/boulder-state/constants.d.ts.map +0 -1
  1114. package/dist/features/boulder-state/constants.js +0 -21
  1115. package/dist/features/boulder-state/constants.js.map +0 -1
  1116. package/dist/features/boulder-state/index.d.ts +0 -12
  1117. package/dist/features/boulder-state/index.d.ts.map +0 -1
  1118. package/dist/features/boulder-state/index.js +0 -13
  1119. package/dist/features/boulder-state/index.js.map +0 -1
  1120. package/dist/features/boulder-state/storage.d.ts +0 -58
  1121. package/dist/features/boulder-state/storage.d.ts.map +0 -1
  1122. package/dist/features/boulder-state/storage.js +0 -182
  1123. package/dist/features/boulder-state/storage.js.map +0 -1
  1124. package/dist/features/boulder-state/types.d.ts +0 -52
  1125. package/dist/features/boulder-state/types.d.ts.map +0 -1
  1126. package/dist/features/boulder-state/types.js +0 -10
  1127. package/dist/features/boulder-state/types.js.map +0 -1
  1128. package/dist/features/builtin-skills/index.d.ts +0 -10
  1129. package/dist/features/builtin-skills/index.d.ts.map +0 -1
  1130. package/dist/features/builtin-skills/index.js +0 -10
  1131. package/dist/features/builtin-skills/index.js.map +0 -1
  1132. package/dist/features/builtin-skills/runtime-guidance.d.ts +0 -9
  1133. package/dist/features/builtin-skills/runtime-guidance.d.ts.map +0 -1
  1134. package/dist/features/builtin-skills/runtime-guidance.js +0 -35
  1135. package/dist/features/builtin-skills/runtime-guidance.js.map +0 -1
  1136. package/dist/features/builtin-skills/skills.d.ts +0 -38
  1137. package/dist/features/builtin-skills/skills.d.ts.map +0 -1
  1138. package/dist/features/builtin-skills/skills.js +0 -194
  1139. package/dist/features/builtin-skills/skills.js.map +0 -1
  1140. package/dist/features/builtin-skills/types.d.ts +0 -71
  1141. package/dist/features/builtin-skills/types.d.ts.map +0 -1
  1142. package/dist/features/builtin-skills/types.js +0 -9
  1143. package/dist/features/builtin-skills/types.js.map +0 -1
  1144. package/dist/features/context-injector/collector.d.ts +0 -56
  1145. package/dist/features/context-injector/collector.d.ts.map +0 -1
  1146. package/dist/features/context-injector/collector.js +0 -122
  1147. package/dist/features/context-injector/collector.js.map +0 -1
  1148. package/dist/features/context-injector/index.d.ts +0 -12
  1149. package/dist/features/context-injector/index.d.ts.map +0 -1
  1150. package/dist/features/context-injector/index.js +0 -13
  1151. package/dist/features/context-injector/index.js.map +0 -1
  1152. package/dist/features/context-injector/injector.d.ts +0 -47
  1153. package/dist/features/context-injector/injector.d.ts.map +0 -1
  1154. package/dist/features/context-injector/injector.js +0 -103
  1155. package/dist/features/context-injector/injector.js.map +0 -1
  1156. package/dist/features/context-injector/types.d.ts +0 -103
  1157. package/dist/features/context-injector/types.d.ts.map +0 -1
  1158. package/dist/features/context-injector/types.js +0 -11
  1159. package/dist/features/context-injector/types.js.map +0 -1
  1160. package/dist/features/continuation-enforcement.d.ts +0 -36
  1161. package/dist/features/continuation-enforcement.d.ts.map +0 -1
  1162. package/dist/features/continuation-enforcement.js +0 -176
  1163. package/dist/features/continuation-enforcement.js.map +0 -1
  1164. package/dist/features/delegation-categories/__tests__/index.test.d.ts +0 -2
  1165. package/dist/features/delegation-categories/__tests__/index.test.d.ts.map +0 -1
  1166. package/dist/features/delegation-categories/__tests__/index.test.js +0 -19
  1167. package/dist/features/delegation-categories/__tests__/index.test.js.map +0 -1
  1168. package/dist/features/delegation-categories/index.d.ts +0 -116
  1169. package/dist/features/delegation-categories/index.d.ts.map +0 -1
  1170. package/dist/features/delegation-categories/index.js +0 -287
  1171. package/dist/features/delegation-categories/index.js.map +0 -1
  1172. package/dist/features/delegation-categories/test-categories.d.ts +0 -7
  1173. package/dist/features/delegation-categories/test-categories.d.ts.map +0 -1
  1174. package/dist/features/delegation-categories/test-categories.js +0 -88
  1175. package/dist/features/delegation-categories/test-categories.js.map +0 -1
  1176. package/dist/features/delegation-categories/types.d.ts +0 -51
  1177. package/dist/features/delegation-categories/types.d.ts.map +0 -1
  1178. package/dist/features/delegation-categories/types.js +0 -8
  1179. package/dist/features/delegation-categories/types.js.map +0 -1
  1180. package/dist/features/delegation-enforcer.d.ts +0 -69
  1181. package/dist/features/delegation-enforcer.d.ts.map +0 -1
  1182. package/dist/features/delegation-enforcer.js +0 -237
  1183. package/dist/features/delegation-enforcer.js.map +0 -1
  1184. package/dist/features/delegation-routing/__tests__/resolver.test.d.ts +0 -2
  1185. package/dist/features/delegation-routing/__tests__/resolver.test.d.ts.map +0 -1
  1186. package/dist/features/delegation-routing/__tests__/resolver.test.js +0 -346
  1187. package/dist/features/delegation-routing/__tests__/resolver.test.js.map +0 -1
  1188. package/dist/features/delegation-routing/index.d.ts +0 -10
  1189. package/dist/features/delegation-routing/index.d.ts.map +0 -1
  1190. package/dist/features/delegation-routing/index.js +0 -11
  1191. package/dist/features/delegation-routing/index.js.map +0 -1
  1192. package/dist/features/delegation-routing/resolver.d.ts +0 -24
  1193. package/dist/features/delegation-routing/resolver.d.ts.map +0 -1
  1194. package/dist/features/delegation-routing/resolver.js +0 -131
  1195. package/dist/features/delegation-routing/resolver.js.map +0 -1
  1196. package/dist/features/delegation-routing/types.d.ts +0 -29
  1197. package/dist/features/delegation-routing/types.d.ts.map +0 -1
  1198. package/dist/features/delegation-routing/types.js +0 -72
  1199. package/dist/features/delegation-routing/types.js.map +0 -1
  1200. package/dist/features/index.d.ts +0 -18
  1201. package/dist/features/index.d.ts.map +0 -1
  1202. package/dist/features/index.js +0 -81
  1203. package/dist/features/index.js.map +0 -1
  1204. package/dist/features/magic-keywords.d.ts +0 -28
  1205. package/dist/features/magic-keywords.d.ts.map +0 -1
  1206. package/dist/features/magic-keywords.js +0 -451
  1207. package/dist/features/magic-keywords.js.map +0 -1
  1208. package/dist/features/model-routing/__tests__/index.test.d.ts +0 -2
  1209. package/dist/features/model-routing/__tests__/index.test.d.ts.map +0 -1
  1210. package/dist/features/model-routing/__tests__/index.test.js +0 -21
  1211. package/dist/features/model-routing/__tests__/index.test.js.map +0 -1
  1212. package/dist/features/model-routing/index.d.ts +0 -34
  1213. package/dist/features/model-routing/index.d.ts.map +0 -1
  1214. package/dist/features/model-routing/index.js +0 -49
  1215. package/dist/features/model-routing/index.js.map +0 -1
  1216. package/dist/features/model-routing/prompts/haiku.d.ts +0 -54
  1217. package/dist/features/model-routing/prompts/haiku.d.ts.map +0 -1
  1218. package/dist/features/model-routing/prompts/haiku.js +0 -141
  1219. package/dist/features/model-routing/prompts/haiku.js.map +0 -1
  1220. package/dist/features/model-routing/prompts/index.d.ts +0 -47
  1221. package/dist/features/model-routing/prompts/index.d.ts.map +0 -1
  1222. package/dist/features/model-routing/prompts/index.js +0 -122
  1223. package/dist/features/model-routing/prompts/index.js.map +0 -1
  1224. package/dist/features/model-routing/prompts/opus.d.ts +0 -34
  1225. package/dist/features/model-routing/prompts/opus.d.ts.map +0 -1
  1226. package/dist/features/model-routing/prompts/opus.js +0 -153
  1227. package/dist/features/model-routing/prompts/opus.js.map +0 -1
  1228. package/dist/features/model-routing/prompts/sonnet.d.ts +0 -38
  1229. package/dist/features/model-routing/prompts/sonnet.d.ts.map +0 -1
  1230. package/dist/features/model-routing/prompts/sonnet.js +0 -149
  1231. package/dist/features/model-routing/prompts/sonnet.js.map +0 -1
  1232. package/dist/features/model-routing/router.d.ts +0 -78
  1233. package/dist/features/model-routing/router.d.ts.map +0 -1
  1234. package/dist/features/model-routing/router.js +0 -271
  1235. package/dist/features/model-routing/router.js.map +0 -1
  1236. package/dist/features/model-routing/rules.d.ts +0 -32
  1237. package/dist/features/model-routing/rules.d.ts.map +0 -1
  1238. package/dist/features/model-routing/rules.js +0 -216
  1239. package/dist/features/model-routing/rules.js.map +0 -1
  1240. package/dist/features/model-routing/scorer.d.ts +0 -35
  1241. package/dist/features/model-routing/scorer.d.ts.map +0 -1
  1242. package/dist/features/model-routing/scorer.js +0 -241
  1243. package/dist/features/model-routing/scorer.js.map +0 -1
  1244. package/dist/features/model-routing/signals.d.ts +0 -26
  1245. package/dist/features/model-routing/signals.d.ts.map +0 -1
  1246. package/dist/features/model-routing/signals.js +0 -283
  1247. package/dist/features/model-routing/signals.js.map +0 -1
  1248. package/dist/features/model-routing/types.d.ts +0 -206
  1249. package/dist/features/model-routing/types.d.ts.map +0 -1
  1250. package/dist/features/model-routing/types.js +0 -83
  1251. package/dist/features/model-routing/types.js.map +0 -1
  1252. package/dist/features/notepad-wisdom/extractor.d.ts +0 -30
  1253. package/dist/features/notepad-wisdom/extractor.d.ts.map +0 -1
  1254. package/dist/features/notepad-wisdom/extractor.js +0 -68
  1255. package/dist/features/notepad-wisdom/extractor.js.map +0 -1
  1256. package/dist/features/notepad-wisdom/index.d.ts +0 -39
  1257. package/dist/features/notepad-wisdom/index.d.ts.map +0 -1
  1258. package/dist/features/notepad-wisdom/index.js +0 -169
  1259. package/dist/features/notepad-wisdom/index.js.map +0 -1
  1260. package/dist/features/notepad-wisdom/types.d.ts +0 -18
  1261. package/dist/features/notepad-wisdom/types.d.ts.map +0 -1
  1262. package/dist/features/notepad-wisdom/types.js +0 -7
  1263. package/dist/features/notepad-wisdom/types.js.map +0 -1
  1264. package/dist/features/rate-limit-wait/daemon.d.ts +0 -57
  1265. package/dist/features/rate-limit-wait/daemon.d.ts.map +0 -1
  1266. package/dist/features/rate-limit-wait/daemon.js +0 -646
  1267. package/dist/features/rate-limit-wait/daemon.js.map +0 -1
  1268. package/dist/features/rate-limit-wait/index.d.ts +0 -16
  1269. package/dist/features/rate-limit-wait/index.d.ts.map +0 -1
  1270. package/dist/features/rate-limit-wait/index.js +0 -18
  1271. package/dist/features/rate-limit-wait/index.js.map +0 -1
  1272. package/dist/features/rate-limit-wait/rate-limit-monitor.d.ts +0 -31
  1273. package/dist/features/rate-limit-wait/rate-limit-monitor.d.ts.map +0 -1
  1274. package/dist/features/rate-limit-wait/rate-limit-monitor.js +0 -147
  1275. package/dist/features/rate-limit-wait/rate-limit-monitor.js.map +0 -1
  1276. package/dist/features/rate-limit-wait/tmux-detector.d.ts +0 -60
  1277. package/dist/features/rate-limit-wait/tmux-detector.d.ts.map +0 -1
  1278. package/dist/features/rate-limit-wait/tmux-detector.js +0 -317
  1279. package/dist/features/rate-limit-wait/tmux-detector.js.map +0 -1
  1280. package/dist/features/rate-limit-wait/types.d.ts +0 -136
  1281. package/dist/features/rate-limit-wait/types.d.ts.map +0 -1
  1282. package/dist/features/rate-limit-wait/types.js +0 -8
  1283. package/dist/features/rate-limit-wait/types.js.map +0 -1
  1284. package/dist/features/session-history-search/index.d.ts +0 -6
  1285. package/dist/features/session-history-search/index.d.ts.map +0 -1
  1286. package/dist/features/session-history-search/index.js +0 -480
  1287. package/dist/features/session-history-search/index.js.map +0 -1
  1288. package/dist/features/session-history-search/types.d.ts +0 -36
  1289. package/dist/features/session-history-search/types.d.ts.map +0 -1
  1290. package/dist/features/session-history-search/types.js +0 -2
  1291. package/dist/features/session-history-search/types.js.map +0 -1
  1292. package/dist/features/state-manager/__tests__/cache.test.d.ts +0 -2
  1293. package/dist/features/state-manager/__tests__/cache.test.d.ts.map +0 -1
  1294. package/dist/features/state-manager/__tests__/cache.test.js +0 -365
  1295. package/dist/features/state-manager/__tests__/cache.test.js.map +0 -1
  1296. package/dist/features/state-manager/index.d.ts +0 -133
  1297. package/dist/features/state-manager/index.d.ts.map +0 -1
  1298. package/dist/features/state-manager/index.js +0 -669
  1299. package/dist/features/state-manager/index.js.map +0 -1
  1300. package/dist/features/state-manager/types.d.ts +0 -147
  1301. package/dist/features/state-manager/types.d.ts.map +0 -1
  1302. package/dist/features/state-manager/types.js +0 -30
  1303. package/dist/features/state-manager/types.js.map +0 -1
  1304. package/dist/features/task-decomposer/index.d.ts +0 -33
  1305. package/dist/features/task-decomposer/index.d.ts.map +0 -1
  1306. package/dist/features/task-decomposer/index.js +0 -707
  1307. package/dist/features/task-decomposer/index.js.map +0 -1
  1308. package/dist/features/task-decomposer/types.d.ts +0 -133
  1309. package/dist/features/task-decomposer/types.d.ts.map +0 -1
  1310. package/dist/features/task-decomposer/types.js +0 -8
  1311. package/dist/features/task-decomposer/types.js.map +0 -1
  1312. package/dist/features/verification/index.d.ts +0 -97
  1313. package/dist/features/verification/index.d.ts.map +0 -1
  1314. package/dist/features/verification/index.js +0 -441
  1315. package/dist/features/verification/index.js.map +0 -1
  1316. package/dist/features/verification/types.d.ts +0 -142
  1317. package/dist/features/verification/types.d.ts.map +0 -1
  1318. package/dist/features/verification/types.js +0 -7
  1319. package/dist/features/verification/types.js.map +0 -1
  1320. package/dist/hooks/__tests__/askuserquestion-lifecycle.test.d.ts +0 -9
  1321. package/dist/hooks/__tests__/askuserquestion-lifecycle.test.d.ts.map +0 -1
  1322. package/dist/hooks/__tests__/askuserquestion-lifecycle.test.js +0 -110
  1323. package/dist/hooks/__tests__/askuserquestion-lifecycle.test.js.map +0 -1
  1324. package/dist/hooks/__tests__/background-process-guard.test.d.ts +0 -2
  1325. package/dist/hooks/__tests__/background-process-guard.test.d.ts.map +0 -1
  1326. package/dist/hooks/__tests__/background-process-guard.test.js +0 -477
  1327. package/dist/hooks/__tests__/background-process-guard.test.js.map +0 -1
  1328. package/dist/hooks/__tests__/bridge-openclaw.test.d.ts +0 -2
  1329. package/dist/hooks/__tests__/bridge-openclaw.test.d.ts.map +0 -1
  1330. package/dist/hooks/__tests__/bridge-openclaw.test.js +0 -150
  1331. package/dist/hooks/__tests__/bridge-openclaw.test.js.map +0 -1
  1332. package/dist/hooks/__tests__/bridge-pkill.test.d.ts +0 -8
  1333. package/dist/hooks/__tests__/bridge-pkill.test.d.ts.map +0 -1
  1334. package/dist/hooks/__tests__/bridge-pkill.test.js +0 -188
  1335. package/dist/hooks/__tests__/bridge-pkill.test.js.map +0 -1
  1336. package/dist/hooks/__tests__/bridge-routing.test.d.ts +0 -9
  1337. package/dist/hooks/__tests__/bridge-routing.test.d.ts.map +0 -1
  1338. package/dist/hooks/__tests__/bridge-routing.test.js +0 -928
  1339. package/dist/hooks/__tests__/bridge-routing.test.js.map +0 -1
  1340. package/dist/hooks/__tests__/bridge-security.test.d.ts +0 -11
  1341. package/dist/hooks/__tests__/bridge-security.test.d.ts.map +0 -1
  1342. package/dist/hooks/__tests__/bridge-security.test.js +0 -436
  1343. package/dist/hooks/__tests__/bridge-security.test.js.map +0 -1
  1344. package/dist/hooks/__tests__/bridge-team-worker-guard.test.d.ts +0 -2
  1345. package/dist/hooks/__tests__/bridge-team-worker-guard.test.d.ts.map +0 -1
  1346. package/dist/hooks/__tests__/bridge-team-worker-guard.test.js +0 -52
  1347. package/dist/hooks/__tests__/bridge-team-worker-guard.test.js.map +0 -1
  1348. package/dist/hooks/__tests__/bridge.test.d.ts +0 -2
  1349. package/dist/hooks/__tests__/bridge.test.d.ts.map +0 -1
  1350. package/dist/hooks/__tests__/bridge.test.js +0 -300
  1351. package/dist/hooks/__tests__/bridge.test.js.map +0 -1
  1352. package/dist/hooks/__tests__/codebase-map.test.d.ts +0 -7
  1353. package/dist/hooks/__tests__/codebase-map.test.d.ts.map +0 -1
  1354. package/dist/hooks/__tests__/codebase-map.test.js +0 -281
  1355. package/dist/hooks/__tests__/codebase-map.test.js.map +0 -1
  1356. package/dist/hooks/__tests__/compaction-concurrency.test.d.ts +0 -10
  1357. package/dist/hooks/__tests__/compaction-concurrency.test.d.ts.map +0 -1
  1358. package/dist/hooks/__tests__/compaction-concurrency.test.js +0 -313
  1359. package/dist/hooks/__tests__/compaction-concurrency.test.js.map +0 -1
  1360. package/dist/hooks/__tests__/stop-hook-openclaw-cooldown.test.d.ts +0 -2
  1361. package/dist/hooks/__tests__/stop-hook-openclaw-cooldown.test.d.ts.map +0 -1
  1362. package/dist/hooks/__tests__/stop-hook-openclaw-cooldown.test.js +0 -65
  1363. package/dist/hooks/__tests__/stop-hook-openclaw-cooldown.test.js.map +0 -1
  1364. package/dist/hooks/__tests__/team-worker-heartbeat.test.d.ts +0 -10
  1365. package/dist/hooks/__tests__/team-worker-heartbeat.test.d.ts.map +0 -1
  1366. package/dist/hooks/__tests__/team-worker-heartbeat.test.js +0 -87
  1367. package/dist/hooks/__tests__/team-worker-heartbeat.test.js.map +0 -1
  1368. package/dist/hooks/agent-usage-reminder/constants.d.ts +0 -17
  1369. package/dist/hooks/agent-usage-reminder/constants.d.ts.map +0 -1
  1370. package/dist/hooks/agent-usage-reminder/constants.js +0 -57
  1371. package/dist/hooks/agent-usage-reminder/constants.js.map +0 -1
  1372. package/dist/hooks/agent-usage-reminder/index.d.ts +0 -36
  1373. package/dist/hooks/agent-usage-reminder/index.d.ts.map +0 -1
  1374. package/dist/hooks/agent-usage-reminder/index.js +0 -89
  1375. package/dist/hooks/agent-usage-reminder/index.js.map +0 -1
  1376. package/dist/hooks/agent-usage-reminder/storage.d.ts +0 -12
  1377. package/dist/hooks/agent-usage-reminder/storage.d.ts.map +0 -1
  1378. package/dist/hooks/agent-usage-reminder/storage.js +0 -39
  1379. package/dist/hooks/agent-usage-reminder/storage.js.map +0 -1
  1380. package/dist/hooks/agent-usage-reminder/types.d.ts +0 -14
  1381. package/dist/hooks/agent-usage-reminder/types.d.ts.map +0 -1
  1382. package/dist/hooks/agent-usage-reminder/types.js +0 -9
  1383. package/dist/hooks/agent-usage-reminder/types.js.map +0 -1
  1384. package/dist/hooks/agents-overlay.d.ts +0 -24
  1385. package/dist/hooks/agents-overlay.d.ts.map +0 -1
  1386. package/dist/hooks/agents-overlay.js +0 -51
  1387. package/dist/hooks/agents-overlay.js.map +0 -1
  1388. package/dist/hooks/auto-slash-command/constants.d.ts +0 -19
  1389. package/dist/hooks/auto-slash-command/constants.d.ts.map +0 -1
  1390. package/dist/hooks/auto-slash-command/constants.js +0 -33
  1391. package/dist/hooks/auto-slash-command/constants.js.map +0 -1
  1392. package/dist/hooks/auto-slash-command/detector.d.ts +0 -33
  1393. package/dist/hooks/auto-slash-command/detector.d.ts.map +0 -1
  1394. package/dist/hooks/auto-slash-command/detector.js +0 -73
  1395. package/dist/hooks/auto-slash-command/detector.js.map +0 -1
  1396. package/dist/hooks/auto-slash-command/executor.d.ts +0 -36
  1397. package/dist/hooks/auto-slash-command/executor.d.ts.map +0 -1
  1398. package/dist/hooks/auto-slash-command/executor.js +0 -329
  1399. package/dist/hooks/auto-slash-command/executor.js.map +0 -1
  1400. package/dist/hooks/auto-slash-command/index.d.ts +0 -53
  1401. package/dist/hooks/auto-slash-command/index.d.ts.map +0 -1
  1402. package/dist/hooks/auto-slash-command/index.js +0 -105
  1403. package/dist/hooks/auto-slash-command/index.js.map +0 -1
  1404. package/dist/hooks/auto-slash-command/live-data.d.ts +0 -27
  1405. package/dist/hooks/auto-slash-command/live-data.d.ts.map +0 -1
  1406. package/dist/hooks/auto-slash-command/live-data.js +0 -518
  1407. package/dist/hooks/auto-slash-command/live-data.js.map +0 -1
  1408. package/dist/hooks/auto-slash-command/types.d.ts +0 -83
  1409. package/dist/hooks/auto-slash-command/types.d.ts.map +0 -1
  1410. package/dist/hooks/auto-slash-command/types.js +0 -2
  1411. package/dist/hooks/auto-slash-command/types.js.map +0 -1
  1412. package/dist/hooks/autopilot/__tests__/cancel.test.d.ts +0 -2
  1413. package/dist/hooks/autopilot/__tests__/cancel.test.d.ts.map +0 -1
  1414. package/dist/hooks/autopilot/__tests__/cancel.test.js +0 -470
  1415. package/dist/hooks/autopilot/__tests__/cancel.test.js.map +0 -1
  1416. package/dist/hooks/autopilot/__tests__/pipeline.test.d.ts +0 -2
  1417. package/dist/hooks/autopilot/__tests__/pipeline.test.d.ts.map +0 -1
  1418. package/dist/hooks/autopilot/__tests__/pipeline.test.js +0 -375
  1419. package/dist/hooks/autopilot/__tests__/pipeline.test.js.map +0 -1
  1420. package/dist/hooks/autopilot/__tests__/prompts.test.d.ts +0 -2
  1421. package/dist/hooks/autopilot/__tests__/prompts.test.d.ts.map +0 -1
  1422. package/dist/hooks/autopilot/__tests__/prompts.test.js +0 -83
  1423. package/dist/hooks/autopilot/__tests__/prompts.test.js.map +0 -1
  1424. package/dist/hooks/autopilot/__tests__/state.test.d.ts +0 -2
  1425. package/dist/hooks/autopilot/__tests__/state.test.d.ts.map +0 -1
  1426. package/dist/hooks/autopilot/__tests__/state.test.js +0 -76
  1427. package/dist/hooks/autopilot/__tests__/state.test.js.map +0 -1
  1428. package/dist/hooks/autopilot/__tests__/summary.test.d.ts +0 -2
  1429. package/dist/hooks/autopilot/__tests__/summary.test.d.ts.map +0 -1
  1430. package/dist/hooks/autopilot/__tests__/summary.test.js +0 -324
  1431. package/dist/hooks/autopilot/__tests__/summary.test.js.map +0 -1
  1432. package/dist/hooks/autopilot/__tests__/transition.test.d.ts +0 -2
  1433. package/dist/hooks/autopilot/__tests__/transition.test.d.ts.map +0 -1
  1434. package/dist/hooks/autopilot/__tests__/transition.test.js +0 -58
  1435. package/dist/hooks/autopilot/__tests__/transition.test.js.map +0 -1
  1436. package/dist/hooks/autopilot/__tests__/transitions.test.d.ts +0 -12
  1437. package/dist/hooks/autopilot/__tests__/transitions.test.d.ts.map +0 -1
  1438. package/dist/hooks/autopilot/__tests__/transitions.test.js +0 -303
  1439. package/dist/hooks/autopilot/__tests__/transitions.test.js.map +0 -1
  1440. package/dist/hooks/autopilot/__tests__/validation.test.d.ts +0 -2
  1441. package/dist/hooks/autopilot/__tests__/validation.test.d.ts.map +0 -1
  1442. package/dist/hooks/autopilot/__tests__/validation.test.js +0 -450
  1443. package/dist/hooks/autopilot/__tests__/validation.test.js.map +0 -1
  1444. package/dist/hooks/autopilot/adapters/execution-adapter.d.ts +0 -12
  1445. package/dist/hooks/autopilot/adapters/execution-adapter.d.ts.map +0 -1
  1446. package/dist/hooks/autopilot/adapters/execution-adapter.js +0 -111
  1447. package/dist/hooks/autopilot/adapters/execution-adapter.js.map +0 -1
  1448. package/dist/hooks/autopilot/adapters/index.d.ts +0 -22
  1449. package/dist/hooks/autopilot/adapters/index.d.ts.map +0 -1
  1450. package/dist/hooks/autopilot/adapters/index.js +0 -32
  1451. package/dist/hooks/autopilot/adapters/index.js.map +0 -1
  1452. package/dist/hooks/autopilot/adapters/qa-adapter.d.ts +0 -12
  1453. package/dist/hooks/autopilot/adapters/qa-adapter.d.ts.map +0 -1
  1454. package/dist/hooks/autopilot/adapters/qa-adapter.js +0 -33
  1455. package/dist/hooks/autopilot/adapters/qa-adapter.js.map +0 -1
  1456. package/dist/hooks/autopilot/adapters/ralph-adapter.d.ts +0 -15
  1457. package/dist/hooks/autopilot/adapters/ralph-adapter.d.ts.map +0 -1
  1458. package/dist/hooks/autopilot/adapters/ralph-adapter.js +0 -102
  1459. package/dist/hooks/autopilot/adapters/ralph-adapter.js.map +0 -1
  1460. package/dist/hooks/autopilot/adapters/ralplan-adapter.d.ts +0 -14
  1461. package/dist/hooks/autopilot/adapters/ralplan-adapter.d.ts.map +0 -1
  1462. package/dist/hooks/autopilot/adapters/ralplan-adapter.js +0 -82
  1463. package/dist/hooks/autopilot/adapters/ralplan-adapter.js.map +0 -1
  1464. package/dist/hooks/autopilot/cancel.d.ts +0 -50
  1465. package/dist/hooks/autopilot/cancel.d.ts.map +0 -1
  1466. package/dist/hooks/autopilot/cancel.js +0 -217
  1467. package/dist/hooks/autopilot/cancel.js.map +0 -1
  1468. package/dist/hooks/autopilot/enforcement.d.ts +0 -44
  1469. package/dist/hooks/autopilot/enforcement.d.ts.map +0 -1
  1470. package/dist/hooks/autopilot/enforcement.js +0 -417
  1471. package/dist/hooks/autopilot/enforcement.js.map +0 -1
  1472. package/dist/hooks/autopilot/index.d.ts +0 -18
  1473. package/dist/hooks/autopilot/index.d.ts.map +0 -1
  1474. package/dist/hooks/autopilot/index.js +0 -23
  1475. package/dist/hooks/autopilot/index.js.map +0 -1
  1476. package/dist/hooks/autopilot/pipeline-types.d.ts +0 -135
  1477. package/dist/hooks/autopilot/pipeline-types.d.ts.map +0 -1
  1478. package/dist/hooks/autopilot/pipeline-types.js +0 -44
  1479. package/dist/hooks/autopilot/pipeline-types.js.map +0 -1
  1480. package/dist/hooks/autopilot/pipeline.d.ts +0 -124
  1481. package/dist/hooks/autopilot/pipeline.d.ts.map +0 -1
  1482. package/dist/hooks/autopilot/pipeline.js +0 -422
  1483. package/dist/hooks/autopilot/pipeline.js.map +0 -1
  1484. package/dist/hooks/autopilot/prompts.d.ts +0 -39
  1485. package/dist/hooks/autopilot/prompts.d.ts.map +0 -1
  1486. package/dist/hooks/autopilot/prompts.js +0 -385
  1487. package/dist/hooks/autopilot/prompts.js.map +0 -1
  1488. package/dist/hooks/autopilot/state.d.ts +0 -106
  1489. package/dist/hooks/autopilot/state.d.ts.map +0 -1
  1490. package/dist/hooks/autopilot/state.js +0 -457
  1491. package/dist/hooks/autopilot/state.js.map +0 -1
  1492. package/dist/hooks/autopilot/transition-helper.d.ts +0 -22
  1493. package/dist/hooks/autopilot/transition-helper.d.ts.map +0 -1
  1494. package/dist/hooks/autopilot/transition-helper.js +0 -31
  1495. package/dist/hooks/autopilot/transition-helper.js.map +0 -1
  1496. package/dist/hooks/autopilot/types.d.ts +0 -234
  1497. package/dist/hooks/autopilot/types.d.ts.map +0 -1
  1498. package/dist/hooks/autopilot/types.js +0 -30
  1499. package/dist/hooks/autopilot/types.js.map +0 -1
  1500. package/dist/hooks/autopilot/validation.d.ts +0 -66
  1501. package/dist/hooks/autopilot/validation.d.ts.map +0 -1
  1502. package/dist/hooks/autopilot/validation.js +0 -350
  1503. package/dist/hooks/autopilot/validation.js.map +0 -1
  1504. package/dist/hooks/background-notification/index.d.ts +0 -60
  1505. package/dist/hooks/background-notification/index.d.ts.map +0 -1
  1506. package/dist/hooks/background-notification/index.js +0 -180
  1507. package/dist/hooks/background-notification/index.js.map +0 -1
  1508. package/dist/hooks/background-notification/types.d.ts +0 -64
  1509. package/dist/hooks/background-notification/types.d.ts.map +0 -1
  1510. package/dist/hooks/background-notification/types.js +0 -8
  1511. package/dist/hooks/background-notification/types.js.map +0 -1
  1512. package/dist/hooks/beads-context/__tests__/index.test.d.ts +0 -2
  1513. package/dist/hooks/beads-context/__tests__/index.test.d.ts.map +0 -1
  1514. package/dist/hooks/beads-context/__tests__/index.test.js +0 -150
  1515. package/dist/hooks/beads-context/__tests__/index.test.js.map +0 -1
  1516. package/dist/hooks/beads-context/constants.d.ts +0 -3
  1517. package/dist/hooks/beads-context/constants.d.ts.map +0 -1
  1518. package/dist/hooks/beads-context/constants.js +0 -35
  1519. package/dist/hooks/beads-context/constants.js.map +0 -1
  1520. package/dist/hooks/beads-context/index.d.ts +0 -21
  1521. package/dist/hooks/beads-context/index.d.ts.map +0 -1
  1522. package/dist/hooks/beads-context/index.js +0 -62
  1523. package/dist/hooks/beads-context/index.js.map +0 -1
  1524. package/dist/hooks/beads-context/types.d.ts +0 -7
  1525. package/dist/hooks/beads-context/types.d.ts.map +0 -1
  1526. package/dist/hooks/beads-context/types.js +0 -2
  1527. package/dist/hooks/beads-context/types.js.map +0 -1
  1528. package/dist/hooks/bridge-normalize.d.ts +0 -143
  1529. package/dist/hooks/bridge-normalize.d.ts.map +0 -1
  1530. package/dist/hooks/bridge-normalize.js +0 -193
  1531. package/dist/hooks/bridge-normalize.js.map +0 -1
  1532. package/dist/hooks/bridge.d.ts +0 -98
  1533. package/dist/hooks/bridge.d.ts.map +0 -1
  1534. package/dist/hooks/bridge.js +0 -1700
  1535. package/dist/hooks/bridge.js.map +0 -1
  1536. package/dist/hooks/code-simplifier/index.d.ts +0 -75
  1537. package/dist/hooks/code-simplifier/index.d.ts.map +0 -1
  1538. package/dist/hooks/code-simplifier/index.js +0 -148
  1539. package/dist/hooks/code-simplifier/index.js.map +0 -1
  1540. package/dist/hooks/codebase-map.d.ts +0 -59
  1541. package/dist/hooks/codebase-map.d.ts.map +0 -1
  1542. package/dist/hooks/codebase-map.js +0 -196
  1543. package/dist/hooks/codebase-map.js.map +0 -1
  1544. package/dist/hooks/comment-checker/constants.d.ts +0 -28
  1545. package/dist/hooks/comment-checker/constants.d.ts.map +0 -1
  1546. package/dist/hooks/comment-checker/constants.js +0 -189
  1547. package/dist/hooks/comment-checker/constants.js.map +0 -1
  1548. package/dist/hooks/comment-checker/filters.d.ts +0 -39
  1549. package/dist/hooks/comment-checker/filters.d.ts.map +0 -1
  1550. package/dist/hooks/comment-checker/filters.js +0 -126
  1551. package/dist/hooks/comment-checker/filters.js.map +0 -1
  1552. package/dist/hooks/comment-checker/index.d.ts +0 -58
  1553. package/dist/hooks/comment-checker/index.d.ts.map +0 -1
  1554. package/dist/hooks/comment-checker/index.js +0 -283
  1555. package/dist/hooks/comment-checker/index.js.map +0 -1
  1556. package/dist/hooks/comment-checker/types.d.ts +0 -88
  1557. package/dist/hooks/comment-checker/types.d.ts.map +0 -1
  1558. package/dist/hooks/comment-checker/types.js +0 -9
  1559. package/dist/hooks/comment-checker/types.js.map +0 -1
  1560. package/dist/hooks/conductor/__tests__/state.test.d.ts +0 -2
  1561. package/dist/hooks/conductor/__tests__/state.test.d.ts.map +0 -1
  1562. package/dist/hooks/conductor/__tests__/state.test.js +0 -492
  1563. package/dist/hooks/conductor/__tests__/state.test.js.map +0 -1
  1564. package/dist/hooks/conductor/context.d.ts +0 -77
  1565. package/dist/hooks/conductor/context.d.ts.map +0 -1
  1566. package/dist/hooks/conductor/context.js +0 -312
  1567. package/dist/hooks/conductor/context.js.map +0 -1
  1568. package/dist/hooks/conductor/index.d.ts +0 -23
  1569. package/dist/hooks/conductor/index.d.ts.map +0 -1
  1570. package/dist/hooks/conductor/index.js +0 -94
  1571. package/dist/hooks/conductor/index.js.map +0 -1
  1572. package/dist/hooks/conductor/prompts.d.ts +0 -39
  1573. package/dist/hooks/conductor/prompts.d.ts.map +0 -1
  1574. package/dist/hooks/conductor/prompts.js +0 -331
  1575. package/dist/hooks/conductor/prompts.js.map +0 -1
  1576. package/dist/hooks/conductor/revert.d.ts +0 -44
  1577. package/dist/hooks/conductor/revert.d.ts.map +0 -1
  1578. package/dist/hooks/conductor/revert.js +0 -252
  1579. package/dist/hooks/conductor/revert.js.map +0 -1
  1580. package/dist/hooks/conductor/review.d.ts +0 -24
  1581. package/dist/hooks/conductor/review.d.ts.map +0 -1
  1582. package/dist/hooks/conductor/review.js +0 -238
  1583. package/dist/hooks/conductor/review.js.map +0 -1
  1584. package/dist/hooks/conductor/state.d.ts +0 -86
  1585. package/dist/hooks/conductor/state.d.ts.map +0 -1
  1586. package/dist/hooks/conductor/state.js +0 -366
  1587. package/dist/hooks/conductor/state.js.map +0 -1
  1588. package/dist/hooks/conductor/status.d.ts +0 -19
  1589. package/dist/hooks/conductor/status.d.ts.map +0 -1
  1590. package/dist/hooks/conductor/status.js +0 -171
  1591. package/dist/hooks/conductor/status.js.map +0 -1
  1592. package/dist/hooks/conductor/track.d.ts +0 -51
  1593. package/dist/hooks/conductor/track.d.ts.map +0 -1
  1594. package/dist/hooks/conductor/track.js +0 -284
  1595. package/dist/hooks/conductor/track.js.map +0 -1
  1596. package/dist/hooks/conductor/types.d.ts +0 -147
  1597. package/dist/hooks/conductor/types.d.ts.map +0 -1
  1598. package/dist/hooks/conductor/types.js +0 -28
  1599. package/dist/hooks/conductor/types.js.map +0 -1
  1600. package/dist/hooks/directory-readme-injector/constants.d.ts +0 -19
  1601. package/dist/hooks/directory-readme-injector/constants.d.ts.map +0 -1
  1602. package/dist/hooks/directory-readme-injector/constants.js +0 -21
  1603. package/dist/hooks/directory-readme-injector/constants.js.map +0 -1
  1604. package/dist/hooks/directory-readme-injector/index.d.ts +0 -45
  1605. package/dist/hooks/directory-readme-injector/index.d.ts.map +0 -1
  1606. package/dist/hooks/directory-readme-injector/index.js +0 -185
  1607. package/dist/hooks/directory-readme-injector/index.js.map +0 -1
  1608. package/dist/hooks/directory-readme-injector/storage.d.ts +0 -20
  1609. package/dist/hooks/directory-readme-injector/storage.d.ts.map +0 -1
  1610. package/dist/hooks/directory-readme-injector/storage.js +0 -56
  1611. package/dist/hooks/directory-readme-injector/storage.js.map +0 -1
  1612. package/dist/hooks/directory-readme-injector/types.d.ts +0 -20
  1613. package/dist/hooks/directory-readme-injector/types.d.ts.map +0 -1
  1614. package/dist/hooks/directory-readme-injector/types.js +0 -9
  1615. package/dist/hooks/directory-readme-injector/types.js.map +0 -1
  1616. package/dist/hooks/empty-message-sanitizer/__tests__/index.test.d.ts +0 -2
  1617. package/dist/hooks/empty-message-sanitizer/__tests__/index.test.d.ts.map +0 -1
  1618. package/dist/hooks/empty-message-sanitizer/__tests__/index.test.js +0 -416
  1619. package/dist/hooks/empty-message-sanitizer/__tests__/index.test.js.map +0 -1
  1620. package/dist/hooks/empty-message-sanitizer/constants.d.ts +0 -33
  1621. package/dist/hooks/empty-message-sanitizer/constants.d.ts.map +0 -1
  1622. package/dist/hooks/empty-message-sanitizer/constants.js +0 -37
  1623. package/dist/hooks/empty-message-sanitizer/constants.js.map +0 -1
  1624. package/dist/hooks/empty-message-sanitizer/index.d.ts +0 -59
  1625. package/dist/hooks/empty-message-sanitizer/index.d.ts.map +0 -1
  1626. package/dist/hooks/empty-message-sanitizer/index.js +0 -171
  1627. package/dist/hooks/empty-message-sanitizer/index.js.map +0 -1
  1628. package/dist/hooks/empty-message-sanitizer/types.d.ts +0 -79
  1629. package/dist/hooks/empty-message-sanitizer/types.d.ts.map +0 -1
  1630. package/dist/hooks/empty-message-sanitizer/types.js +0 -10
  1631. package/dist/hooks/empty-message-sanitizer/types.js.map +0 -1
  1632. package/dist/hooks/factcheck/__tests__/factcheck.test.d.ts +0 -7
  1633. package/dist/hooks/factcheck/__tests__/factcheck.test.d.ts.map +0 -1
  1634. package/dist/hooks/factcheck/__tests__/factcheck.test.js +0 -153
  1635. package/dist/hooks/factcheck/__tests__/factcheck.test.js.map +0 -1
  1636. package/dist/hooks/factcheck/__tests__/sentinel-gate.test.d.ts +0 -5
  1637. package/dist/hooks/factcheck/__tests__/sentinel-gate.test.d.ts.map +0 -1
  1638. package/dist/hooks/factcheck/__tests__/sentinel-gate.test.js +0 -159
  1639. package/dist/hooks/factcheck/__tests__/sentinel-gate.test.js.map +0 -1
  1640. package/dist/hooks/factcheck/__tests__/sentinel.test.d.ts +0 -7
  1641. package/dist/hooks/factcheck/__tests__/sentinel.test.d.ts.map +0 -1
  1642. package/dist/hooks/factcheck/__tests__/sentinel.test.js +0 -117
  1643. package/dist/hooks/factcheck/__tests__/sentinel.test.js.map +0 -1
  1644. package/dist/hooks/factcheck/checks.d.ts +0 -36
  1645. package/dist/hooks/factcheck/checks.d.ts.map +0 -1
  1646. package/dist/hooks/factcheck/checks.js +0 -144
  1647. package/dist/hooks/factcheck/checks.js.map +0 -1
  1648. package/dist/hooks/factcheck/config.d.ts +0 -25
  1649. package/dist/hooks/factcheck/config.d.ts.map +0 -1
  1650. package/dist/hooks/factcheck/config.js +0 -125
  1651. package/dist/hooks/factcheck/config.js.map +0 -1
  1652. package/dist/hooks/factcheck/index.d.ts +0 -34
  1653. package/dist/hooks/factcheck/index.d.ts.map +0 -1
  1654. package/dist/hooks/factcheck/index.js +0 -120
  1655. package/dist/hooks/factcheck/index.js.map +0 -1
  1656. package/dist/hooks/factcheck/sentinel.d.ts +0 -32
  1657. package/dist/hooks/factcheck/sentinel.d.ts.map +0 -1
  1658. package/dist/hooks/factcheck/sentinel.js +0 -153
  1659. package/dist/hooks/factcheck/sentinel.js.map +0 -1
  1660. package/dist/hooks/factcheck/types.d.ts +0 -99
  1661. package/dist/hooks/factcheck/types.d.ts.map +0 -1
  1662. package/dist/hooks/factcheck/types.js +0 -27
  1663. package/dist/hooks/factcheck/types.js.map +0 -1
  1664. package/dist/hooks/index.d.ts +0 -48
  1665. package/dist/hooks/index.d.ts.map +0 -1
  1666. package/dist/hooks/index.js +0 -141
  1667. package/dist/hooks/index.js.map +0 -1
  1668. package/dist/hooks/keyword-detector/__tests__/index.test.d.ts +0 -2
  1669. package/dist/hooks/keyword-detector/__tests__/index.test.d.ts.map +0 -1
  1670. package/dist/hooks/keyword-detector/__tests__/index.test.js +0 -1509
  1671. package/dist/hooks/keyword-detector/__tests__/index.test.js.map +0 -1
  1672. package/dist/hooks/keyword-detector/index.d.ts +0 -108
  1673. package/dist/hooks/keyword-detector/index.d.ts.map +0 -1
  1674. package/dist/hooks/keyword-detector/index.js +0 -326
  1675. package/dist/hooks/keyword-detector/index.js.map +0 -1
  1676. package/dist/hooks/learner/auto-invoke.d.ts +0 -82
  1677. package/dist/hooks/learner/auto-invoke.d.ts.map +0 -1
  1678. package/dist/hooks/learner/auto-invoke.js +0 -233
  1679. package/dist/hooks/learner/auto-invoke.js.map +0 -1
  1680. package/dist/hooks/learner/auto-learner.d.ts +0 -55
  1681. package/dist/hooks/learner/auto-learner.d.ts.map +0 -1
  1682. package/dist/hooks/learner/auto-learner.js +0 -364
  1683. package/dist/hooks/learner/auto-learner.js.map +0 -1
  1684. package/dist/hooks/learner/bridge.d.ts +0 -85
  1685. package/dist/hooks/learner/bridge.d.ts.map +0 -1
  1686. package/dist/hooks/learner/bridge.js +0 -567
  1687. package/dist/hooks/learner/bridge.js.map +0 -1
  1688. package/dist/hooks/learner/config.d.ts +0 -53
  1689. package/dist/hooks/learner/config.d.ts.map +0 -1
  1690. package/dist/hooks/learner/config.js +0 -103
  1691. package/dist/hooks/learner/config.js.map +0 -1
  1692. package/dist/hooks/learner/constants.d.ts +0 -30
  1693. package/dist/hooks/learner/constants.d.ts.map +0 -1
  1694. package/dist/hooks/learner/constants.js +0 -34
  1695. package/dist/hooks/learner/constants.js.map +0 -1
  1696. package/dist/hooks/learner/detection-hook.d.ts +0 -39
  1697. package/dist/hooks/learner/detection-hook.d.ts.map +0 -1
  1698. package/dist/hooks/learner/detection-hook.js +0 -83
  1699. package/dist/hooks/learner/detection-hook.js.map +0 -1
  1700. package/dist/hooks/learner/detector.d.ts +0 -30
  1701. package/dist/hooks/learner/detector.d.ts.map +0 -1
  1702. package/dist/hooks/learner/detector.js +0 -254
  1703. package/dist/hooks/learner/detector.js.map +0 -1
  1704. package/dist/hooks/learner/finder.d.ts +0 -23
  1705. package/dist/hooks/learner/finder.d.ts.map +0 -1
  1706. package/dist/hooks/learner/finder.js +0 -172
  1707. package/dist/hooks/learner/finder.js.map +0 -1
  1708. package/dist/hooks/learner/index.d.ts +0 -65
  1709. package/dist/hooks/learner/index.d.ts.map +0 -1
  1710. package/dist/hooks/learner/index.js +0 -147
  1711. package/dist/hooks/learner/index.js.map +0 -1
  1712. package/dist/hooks/learner/loader.d.ts +0 -20
  1713. package/dist/hooks/learner/loader.d.ts.map +0 -1
  1714. package/dist/hooks/learner/loader.js +0 -112
  1715. package/dist/hooks/learner/loader.js.map +0 -1
  1716. package/dist/hooks/learner/matcher.d.ts +0 -40
  1717. package/dist/hooks/learner/matcher.d.ts.map +0 -1
  1718. package/dist/hooks/learner/matcher.js +0 -230
  1719. package/dist/hooks/learner/matcher.js.map +0 -1
  1720. package/dist/hooks/learner/parser.d.ts +0 -21
  1721. package/dist/hooks/learner/parser.d.ts.map +0 -1
  1722. package/dist/hooks/learner/parser.js +0 -200
  1723. package/dist/hooks/learner/parser.js.map +0 -1
  1724. package/dist/hooks/learner/promotion.d.ts +0 -29
  1725. package/dist/hooks/learner/promotion.d.ts.map +0 -1
  1726. package/dist/hooks/learner/promotion.js +0 -87
  1727. package/dist/hooks/learner/promotion.js.map +0 -1
  1728. package/dist/hooks/learner/transliteration-map.d.ts +0 -30
  1729. package/dist/hooks/learner/transliteration-map.d.ts.map +0 -1
  1730. package/dist/hooks/learner/transliteration-map.js +0 -51
  1731. package/dist/hooks/learner/transliteration-map.js.map +0 -1
  1732. package/dist/hooks/learner/types.d.ts +0 -111
  1733. package/dist/hooks/learner/types.d.ts.map +0 -1
  1734. package/dist/hooks/learner/types.js +0 -8
  1735. package/dist/hooks/learner/types.js.map +0 -1
  1736. package/dist/hooks/learner/validator.d.ts +0 -15
  1737. package/dist/hooks/learner/validator.d.ts.map +0 -1
  1738. package/dist/hooks/learner/validator.js +0 -87
  1739. package/dist/hooks/learner/validator.js.map +0 -1
  1740. package/dist/hooks/learner/writer.d.ts +0 -27
  1741. package/dist/hooks/learner/writer.d.ts.map +0 -1
  1742. package/dist/hooks/learner/writer.js +0 -126
  1743. package/dist/hooks/learner/writer.js.map +0 -1
  1744. package/dist/hooks/mode-registry/__tests__/session-isolation.test.d.ts +0 -2
  1745. package/dist/hooks/mode-registry/__tests__/session-isolation.test.d.ts.map +0 -1
  1746. package/dist/hooks/mode-registry/__tests__/session-isolation.test.js +0 -278
  1747. package/dist/hooks/mode-registry/__tests__/session-isolation.test.js.map +0 -1
  1748. package/dist/hooks/mode-registry/index.d.ts +0 -163
  1749. package/dist/hooks/mode-registry/index.d.ts.map +0 -1
  1750. package/dist/hooks/mode-registry/index.js +0 -580
  1751. package/dist/hooks/mode-registry/index.js.map +0 -1
  1752. package/dist/hooks/mode-registry/types.d.ts +0 -31
  1753. package/dist/hooks/mode-registry/types.d.ts.map +0 -1
  1754. package/dist/hooks/mode-registry/types.js +0 -7
  1755. package/dist/hooks/mode-registry/types.js.map +0 -1
  1756. package/dist/hooks/non-interactive-env/constants.d.ts +0 -35
  1757. package/dist/hooks/non-interactive-env/constants.d.ts.map +0 -1
  1758. package/dist/hooks/non-interactive-env/constants.js +0 -69
  1759. package/dist/hooks/non-interactive-env/constants.js.map +0 -1
  1760. package/dist/hooks/non-interactive-env/detector.d.ts +0 -2
  1761. package/dist/hooks/non-interactive-env/detector.d.ts.map +0 -1
  1762. package/dist/hooks/non-interactive-env/detector.js +0 -16
  1763. package/dist/hooks/non-interactive-env/detector.js.map +0 -1
  1764. package/dist/hooks/non-interactive-env/index.d.ts +0 -14
  1765. package/dist/hooks/non-interactive-env/index.d.ts.map +0 -1
  1766. package/dist/hooks/non-interactive-env/index.js +0 -72
  1767. package/dist/hooks/non-interactive-env/index.js.map +0 -1
  1768. package/dist/hooks/non-interactive-env/index.test.d.ts +0 -2
  1769. package/dist/hooks/non-interactive-env/index.test.d.ts.map +0 -1
  1770. package/dist/hooks/non-interactive-env/index.test.js +0 -30
  1771. package/dist/hooks/non-interactive-env/index.test.js.map +0 -1
  1772. package/dist/hooks/non-interactive-env/types.d.ts +0 -14
  1773. package/dist/hooks/non-interactive-env/types.d.ts.map +0 -1
  1774. package/dist/hooks/non-interactive-env/types.js +0 -2
  1775. package/dist/hooks/non-interactive-env/types.js.map +0 -1
  1776. package/dist/hooks/notepad/index.d.ts +0 -114
  1777. package/dist/hooks/notepad/index.d.ts.map +0 -1
  1778. package/dist/hooks/notepad/index.js +0 -404
  1779. package/dist/hooks/notepad/index.js.map +0 -1
  1780. package/dist/hooks/omc-orchestrator/audit.d.ts +0 -31
  1781. package/dist/hooks/omc-orchestrator/audit.d.ts.map +0 -1
  1782. package/dist/hooks/omc-orchestrator/audit.js +0 -67
  1783. package/dist/hooks/omc-orchestrator/audit.js.map +0 -1
  1784. package/dist/hooks/omc-orchestrator/constants.d.ts +0 -28
  1785. package/dist/hooks/omc-orchestrator/constants.d.ts.map +0 -1
  1786. package/dist/hooks/omc-orchestrator/constants.js +0 -179
  1787. package/dist/hooks/omc-orchestrator/constants.js.map +0 -1
  1788. package/dist/hooks/omc-orchestrator/index.d.ts +0 -124
  1789. package/dist/hooks/omc-orchestrator/index.d.ts.map +0 -1
  1790. package/dist/hooks/omc-orchestrator/index.js +0 -454
  1791. package/dist/hooks/omc-orchestrator/index.js.map +0 -1
  1792. package/dist/hooks/permission-handler/__tests__/index.test.d.ts +0 -2
  1793. package/dist/hooks/permission-handler/__tests__/index.test.d.ts.map +0 -1
  1794. package/dist/hooks/permission-handler/__tests__/index.test.js +0 -440
  1795. package/dist/hooks/permission-handler/__tests__/index.test.js.map +0 -1
  1796. package/dist/hooks/permission-handler/index.d.ts +0 -64
  1797. package/dist/hooks/permission-handler/index.d.ts.map +0 -1
  1798. package/dist/hooks/permission-handler/index.js +0 -293
  1799. package/dist/hooks/permission-handler/index.js.map +0 -1
  1800. package/dist/hooks/persistent-mode/__tests__/cancel-race.test.d.ts +0 -2
  1801. package/dist/hooks/persistent-mode/__tests__/cancel-race.test.d.ts.map +0 -1
  1802. package/dist/hooks/persistent-mode/__tests__/cancel-race.test.js +0 -73
  1803. package/dist/hooks/persistent-mode/__tests__/cancel-race.test.js.map +0 -1
  1804. package/dist/hooks/persistent-mode/__tests__/error-handling.test.d.ts +0 -6
  1805. package/dist/hooks/persistent-mode/__tests__/error-handling.test.d.ts.map +0 -1
  1806. package/dist/hooks/persistent-mode/__tests__/error-handling.test.js +0 -71
  1807. package/dist/hooks/persistent-mode/__tests__/error-handling.test.js.map +0 -1
  1808. package/dist/hooks/persistent-mode/__tests__/idle-cooldown.test.d.ts +0 -6
  1809. package/dist/hooks/persistent-mode/__tests__/idle-cooldown.test.d.ts.map +0 -1
  1810. package/dist/hooks/persistent-mode/__tests__/idle-cooldown.test.js +0 -363
  1811. package/dist/hooks/persistent-mode/__tests__/idle-cooldown.test.js.map +0 -1
  1812. package/dist/hooks/persistent-mode/__tests__/ralph-max-iteration.test.d.ts +0 -2
  1813. package/dist/hooks/persistent-mode/__tests__/ralph-max-iteration.test.d.ts.map +0 -1
  1814. package/dist/hooks/persistent-mode/__tests__/ralph-max-iteration.test.js +0 -38
  1815. package/dist/hooks/persistent-mode/__tests__/ralph-max-iteration.test.js.map +0 -1
  1816. package/dist/hooks/persistent-mode/__tests__/ralph-verification-flow.test.d.ts +0 -2
  1817. package/dist/hooks/persistent-mode/__tests__/ralph-verification-flow.test.d.ts.map +0 -1
  1818. package/dist/hooks/persistent-mode/__tests__/ralph-verification-flow.test.js +0 -90
  1819. package/dist/hooks/persistent-mode/__tests__/ralph-verification-flow.test.js.map +0 -1
  1820. package/dist/hooks/persistent-mode/__tests__/rate-limit-stop.test.d.ts +0 -2
  1821. package/dist/hooks/persistent-mode/__tests__/rate-limit-stop.test.d.ts.map +0 -1
  1822. package/dist/hooks/persistent-mode/__tests__/rate-limit-stop.test.js +0 -116
  1823. package/dist/hooks/persistent-mode/__tests__/rate-limit-stop.test.js.map +0 -1
  1824. package/dist/hooks/persistent-mode/__tests__/skill-state-stop.test.d.ts +0 -2
  1825. package/dist/hooks/persistent-mode/__tests__/skill-state-stop.test.d.ts.map +0 -1
  1826. package/dist/hooks/persistent-mode/__tests__/skill-state-stop.test.js +0 -191
  1827. package/dist/hooks/persistent-mode/__tests__/skill-state-stop.test.js.map +0 -1
  1828. package/dist/hooks/persistent-mode/__tests__/team-ralplan-stop.test.d.ts +0 -2
  1829. package/dist/hooks/persistent-mode/__tests__/team-ralplan-stop.test.d.ts.map +0 -1
  1830. package/dist/hooks/persistent-mode/__tests__/team-ralplan-stop.test.js +0 -646
  1831. package/dist/hooks/persistent-mode/__tests__/team-ralplan-stop.test.js.map +0 -1
  1832. package/dist/hooks/persistent-mode/__tests__/tool-error.test.d.ts +0 -6
  1833. package/dist/hooks/persistent-mode/__tests__/tool-error.test.d.ts.map +0 -1
  1834. package/dist/hooks/persistent-mode/__tests__/tool-error.test.js +0 -335
  1835. package/dist/hooks/persistent-mode/__tests__/tool-error.test.js.map +0 -1
  1836. package/dist/hooks/persistent-mode/idle-cooldown.test.d.ts +0 -6
  1837. package/dist/hooks/persistent-mode/idle-cooldown.test.d.ts.map +0 -1
  1838. package/dist/hooks/persistent-mode/idle-cooldown.test.js +0 -115
  1839. package/dist/hooks/persistent-mode/idle-cooldown.test.js.map +0 -1
  1840. package/dist/hooks/persistent-mode/index.d.ts +0 -86
  1841. package/dist/hooks/persistent-mode/index.d.ts.map +0 -1
  1842. package/dist/hooks/persistent-mode/index.js +0 -1042
  1843. package/dist/hooks/persistent-mode/index.js.map +0 -1
  1844. package/dist/hooks/persistent-mode/session-isolation.test.d.ts +0 -2
  1845. package/dist/hooks/persistent-mode/session-isolation.test.d.ts.map +0 -1
  1846. package/dist/hooks/persistent-mode/session-isolation.test.js +0 -513
  1847. package/dist/hooks/persistent-mode/session-isolation.test.js.map +0 -1
  1848. package/dist/hooks/persistent-mode/stop-hook-blocking.test.d.ts +0 -2
  1849. package/dist/hooks/persistent-mode/stop-hook-blocking.test.d.ts.map +0 -1
  1850. package/dist/hooks/persistent-mode/stop-hook-blocking.test.js +0 -691
  1851. package/dist/hooks/persistent-mode/stop-hook-blocking.test.js.map +0 -1
  1852. package/dist/hooks/plugin-patterns/__tests__/index.test.d.ts +0 -13
  1853. package/dist/hooks/plugin-patterns/__tests__/index.test.d.ts.map +0 -1
  1854. package/dist/hooks/plugin-patterns/__tests__/index.test.js +0 -100
  1855. package/dist/hooks/plugin-patterns/__tests__/index.test.js.map +0 -1
  1856. package/dist/hooks/plugin-patterns/index.d.ts +0 -119
  1857. package/dist/hooks/plugin-patterns/index.d.ts.map +0 -1
  1858. package/dist/hooks/plugin-patterns/index.js +0 -354
  1859. package/dist/hooks/plugin-patterns/index.js.map +0 -1
  1860. package/dist/hooks/pre-compact/index.d.ts +0 -117
  1861. package/dist/hooks/pre-compact/index.d.ts.map +0 -1
  1862. package/dist/hooks/pre-compact/index.js +0 -429
  1863. package/dist/hooks/pre-compact/index.js.map +0 -1
  1864. package/dist/hooks/preemptive-compaction/constants.d.ts +0 -48
  1865. package/dist/hooks/preemptive-compaction/constants.d.ts.map +0 -1
  1866. package/dist/hooks/preemptive-compaction/constants.js +0 -90
  1867. package/dist/hooks/preemptive-compaction/constants.js.map +0 -1
  1868. package/dist/hooks/preemptive-compaction/index.d.ts +0 -69
  1869. package/dist/hooks/preemptive-compaction/index.d.ts.map +0 -1
  1870. package/dist/hooks/preemptive-compaction/index.js +0 -278
  1871. package/dist/hooks/preemptive-compaction/index.js.map +0 -1
  1872. package/dist/hooks/preemptive-compaction/types.d.ts +0 -76
  1873. package/dist/hooks/preemptive-compaction/types.d.ts.map +0 -1
  1874. package/dist/hooks/preemptive-compaction/types.js +0 -9
  1875. package/dist/hooks/preemptive-compaction/types.js.map +0 -1
  1876. package/dist/hooks/project-memory/__tests__/detector.test.d.ts +0 -5
  1877. package/dist/hooks/project-memory/__tests__/detector.test.d.ts.map +0 -1
  1878. package/dist/hooks/project-memory/__tests__/detector.test.js +0 -165
  1879. package/dist/hooks/project-memory/__tests__/detector.test.js.map +0 -1
  1880. package/dist/hooks/project-memory/__tests__/formatter.test.d.ts +0 -5
  1881. package/dist/hooks/project-memory/__tests__/formatter.test.d.ts.map +0 -1
  1882. package/dist/hooks/project-memory/__tests__/formatter.test.js +0 -315
  1883. package/dist/hooks/project-memory/__tests__/formatter.test.js.map +0 -1
  1884. package/dist/hooks/project-memory/__tests__/integration.test.d.ts +0 -5
  1885. package/dist/hooks/project-memory/__tests__/integration.test.d.ts.map +0 -1
  1886. package/dist/hooks/project-memory/__tests__/integration.test.js +0 -265
  1887. package/dist/hooks/project-memory/__tests__/integration.test.js.map +0 -1
  1888. package/dist/hooks/project-memory/__tests__/learner.test.d.ts +0 -5
  1889. package/dist/hooks/project-memory/__tests__/learner.test.d.ts.map +0 -1
  1890. package/dist/hooks/project-memory/__tests__/learner.test.js +0 -159
  1891. package/dist/hooks/project-memory/__tests__/learner.test.js.map +0 -1
  1892. package/dist/hooks/project-memory/__tests__/pre-compact.test.d.ts +0 -5
  1893. package/dist/hooks/project-memory/__tests__/pre-compact.test.d.ts.map +0 -1
  1894. package/dist/hooks/project-memory/__tests__/pre-compact.test.js +0 -121
  1895. package/dist/hooks/project-memory/__tests__/pre-compact.test.js.map +0 -1
  1896. package/dist/hooks/project-memory/__tests__/storage.test.d.ts +0 -5
  1897. package/dist/hooks/project-memory/__tests__/storage.test.d.ts.map +0 -1
  1898. package/dist/hooks/project-memory/__tests__/storage.test.js +0 -244
  1899. package/dist/hooks/project-memory/__tests__/storage.test.js.map +0 -1
  1900. package/dist/hooks/project-memory/constants.d.ts +0 -33
  1901. package/dist/hooks/project-memory/constants.d.ts.map +0 -1
  1902. package/dist/hooks/project-memory/constants.js +0 -134
  1903. package/dist/hooks/project-memory/constants.js.map +0 -1
  1904. package/dist/hooks/project-memory/detector.d.ts +0 -10
  1905. package/dist/hooks/project-memory/detector.d.ts.map +0 -1
  1906. package/dist/hooks/project-memory/detector.js +0 -481
  1907. package/dist/hooks/project-memory/detector.js.map +0 -1
  1908. package/dist/hooks/project-memory/directive-detector.d.ts +0 -22
  1909. package/dist/hooks/project-memory/directive-detector.d.ts.map +0 -1
  1910. package/dist/hooks/project-memory/directive-detector.js +0 -149
  1911. package/dist/hooks/project-memory/directive-detector.js.map +0 -1
  1912. package/dist/hooks/project-memory/directory-mapper.d.ts +0 -14
  1913. package/dist/hooks/project-memory/directory-mapper.d.ts.map +0 -1
  1914. package/dist/hooks/project-memory/directory-mapper.js +0 -156
  1915. package/dist/hooks/project-memory/directory-mapper.js.map +0 -1
  1916. package/dist/hooks/project-memory/formatter.d.ts +0 -15
  1917. package/dist/hooks/project-memory/formatter.d.ts.map +0 -1
  1918. package/dist/hooks/project-memory/formatter.js +0 -241
  1919. package/dist/hooks/project-memory/formatter.js.map +0 -1
  1920. package/dist/hooks/project-memory/hot-path-tracker.d.ts +0 -18
  1921. package/dist/hooks/project-memory/hot-path-tracker.d.ts.map +0 -1
  1922. package/dist/hooks/project-memory/hot-path-tracker.js +0 -125
  1923. package/dist/hooks/project-memory/hot-path-tracker.js.map +0 -1
  1924. package/dist/hooks/project-memory/index.d.ts +0 -17
  1925. package/dist/hooks/project-memory/index.d.ts.map +0 -1
  1926. package/dist/hooks/project-memory/index.js +0 -110
  1927. package/dist/hooks/project-memory/index.js.map +0 -1
  1928. package/dist/hooks/project-memory/learner.d.ts +0 -23
  1929. package/dist/hooks/project-memory/learner.d.ts.map +0 -1
  1930. package/dist/hooks/project-memory/learner.js +0 -231
  1931. package/dist/hooks/project-memory/learner.js.map +0 -1
  1932. package/dist/hooks/project-memory/pre-compact.d.ts +0 -23
  1933. package/dist/hooks/project-memory/pre-compact.d.ts.map +0 -1
  1934. package/dist/hooks/project-memory/pre-compact.js +0 -52
  1935. package/dist/hooks/project-memory/pre-compact.js.map +0 -1
  1936. package/dist/hooks/project-memory/storage.d.ts +0 -37
  1937. package/dist/hooks/project-memory/storage.d.ts.map +0 -1
  1938. package/dist/hooks/project-memory/storage.js +0 -89
  1939. package/dist/hooks/project-memory/storage.js.map +0 -1
  1940. package/dist/hooks/project-memory/types.d.ts +0 -106
  1941. package/dist/hooks/project-memory/types.d.ts.map +0 -1
  1942. package/dist/hooks/project-memory/types.js +0 -6
  1943. package/dist/hooks/project-memory/types.js.map +0 -1
  1944. package/dist/hooks/ralph/index.d.ts +0 -11
  1945. package/dist/hooks/ralph/index.d.ts.map +0 -1
  1946. package/dist/hooks/ralph/index.js +0 -57
  1947. package/dist/hooks/ralph/index.js.map +0 -1
  1948. package/dist/hooks/ralph/loop.d.ts +0 -144
  1949. package/dist/hooks/ralph/loop.d.ts.map +0 -1
  1950. package/dist/hooks/ralph/loop.js +0 -357
  1951. package/dist/hooks/ralph/loop.js.map +0 -1
  1952. package/dist/hooks/ralph/prd.d.ts +0 -130
  1953. package/dist/hooks/ralph/prd.d.ts.map +0 -1
  1954. package/dist/hooks/ralph/prd.js +0 -311
  1955. package/dist/hooks/ralph/prd.js.map +0 -1
  1956. package/dist/hooks/ralph/progress.d.ts +0 -102
  1957. package/dist/hooks/ralph/progress.d.ts.map +0 -1
  1958. package/dist/hooks/ralph/progress.js +0 -409
  1959. package/dist/hooks/ralph/progress.js.map +0 -1
  1960. package/dist/hooks/ralph/verifier.d.ts +0 -78
  1961. package/dist/hooks/ralph/verifier.d.ts.map +0 -1
  1962. package/dist/hooks/ralph/verifier.js +0 -280
  1963. package/dist/hooks/ralph/verifier.js.map +0 -1
  1964. package/dist/hooks/recovery/__tests__/storage.test.d.ts +0 -2
  1965. package/dist/hooks/recovery/__tests__/storage.test.d.ts.map +0 -1
  1966. package/dist/hooks/recovery/__tests__/storage.test.js +0 -65
  1967. package/dist/hooks/recovery/__tests__/storage.test.js.map +0 -1
  1968. package/dist/hooks/recovery/constants.d.ts +0 -114
  1969. package/dist/hooks/recovery/constants.d.ts.map +0 -1
  1970. package/dist/hooks/recovery/constants.js +0 -221
  1971. package/dist/hooks/recovery/constants.js.map +0 -1
  1972. package/dist/hooks/recovery/context-window.d.ts +0 -28
  1973. package/dist/hooks/recovery/context-window.d.ts.map +0 -1
  1974. package/dist/hooks/recovery/context-window.js +0 -342
  1975. package/dist/hooks/recovery/context-window.js.map +0 -1
  1976. package/dist/hooks/recovery/edit-error.d.ts +0 -24
  1977. package/dist/hooks/recovery/edit-error.d.ts.map +0 -1
  1978. package/dist/hooks/recovery/edit-error.js +0 -56
  1979. package/dist/hooks/recovery/edit-error.js.map +0 -1
  1980. package/dist/hooks/recovery/index.d.ts +0 -102
  1981. package/dist/hooks/recovery/index.d.ts.map +0 -1
  1982. package/dist/hooks/recovery/index.js +0 -166
  1983. package/dist/hooks/recovery/index.js.map +0 -1
  1984. package/dist/hooks/recovery/session-recovery.d.ts +0 -24
  1985. package/dist/hooks/recovery/session-recovery.d.ts.map +0 -1
  1986. package/dist/hooks/recovery/session-recovery.js +0 -284
  1987. package/dist/hooks/recovery/session-recovery.js.map +0 -1
  1988. package/dist/hooks/recovery/storage.d.ts +0 -79
  1989. package/dist/hooks/recovery/storage.d.ts.map +0 -1
  1990. package/dist/hooks/recovery/storage.js +0 -360
  1991. package/dist/hooks/recovery/storage.js.map +0 -1
  1992. package/dist/hooks/recovery/types.d.ts +0 -196
  1993. package/dist/hooks/recovery/types.d.ts.map +0 -1
  1994. package/dist/hooks/recovery/types.js +0 -32
  1995. package/dist/hooks/recovery/types.js.map +0 -1
  1996. package/dist/hooks/rules-injector/constants.d.ts +0 -25
  1997. package/dist/hooks/rules-injector/constants.d.ts.map +0 -1
  1998. package/dist/hooks/rules-injector/constants.js +0 -40
  1999. package/dist/hooks/rules-injector/constants.js.map +0 -1
  2000. package/dist/hooks/rules-injector/finder.d.ts +0 -24
  2001. package/dist/hooks/rules-injector/finder.d.ts.map +0 -1
  2002. package/dist/hooks/rules-injector/finder.js +0 -215
  2003. package/dist/hooks/rules-injector/finder.js.map +0 -1
  2004. package/dist/hooks/rules-injector/index.d.ts +0 -45
  2005. package/dist/hooks/rules-injector/index.d.ts.map +0 -1
  2006. package/dist/hooks/rules-injector/index.js +0 -187
  2007. package/dist/hooks/rules-injector/index.js.map +0 -1
  2008. package/dist/hooks/rules-injector/matcher.d.ts +0 -25
  2009. package/dist/hooks/rules-injector/matcher.d.ts.map +0 -1
  2010. package/dist/hooks/rules-injector/matcher.js +0 -70
  2011. package/dist/hooks/rules-injector/matcher.js.map +0 -1
  2012. package/dist/hooks/rules-injector/parser.d.ts +0 -20
  2013. package/dist/hooks/rules-injector/parser.d.ts.map +0 -1
  2014. package/dist/hooks/rules-injector/parser.js +0 -181
  2015. package/dist/hooks/rules-injector/parser.js.map +0 -1
  2016. package/dist/hooks/rules-injector/storage.d.ts +0 -26
  2017. package/dist/hooks/rules-injector/storage.d.ts.map +0 -1
  2018. package/dist/hooks/rules-injector/storage.js +0 -61
  2019. package/dist/hooks/rules-injector/storage.js.map +0 -1
  2020. package/dist/hooks/rules-injector/types.d.ts +0 -101
  2021. package/dist/hooks/rules-injector/types.d.ts.map +0 -1
  2022. package/dist/hooks/rules-injector/types.js +0 -10
  2023. package/dist/hooks/rules-injector/types.js.map +0 -1
  2024. package/dist/hooks/session-end/__tests__/callbacks.test.d.ts +0 -2
  2025. package/dist/hooks/session-end/__tests__/callbacks.test.d.ts.map +0 -1
  2026. package/dist/hooks/session-end/__tests__/callbacks.test.js +0 -381
  2027. package/dist/hooks/session-end/__tests__/callbacks.test.js.map +0 -1
  2028. package/dist/hooks/session-end/__tests__/duplicate-notifications.test.d.ts +0 -2
  2029. package/dist/hooks/session-end/__tests__/duplicate-notifications.test.d.ts.map +0 -1
  2030. package/dist/hooks/session-end/__tests__/duplicate-notifications.test.js +0 -140
  2031. package/dist/hooks/session-end/__tests__/duplicate-notifications.test.js.map +0 -1
  2032. package/dist/hooks/session-end/__tests__/mode-state-cleanup.test.d.ts +0 -2
  2033. package/dist/hooks/session-end/__tests__/mode-state-cleanup.test.d.ts.map +0 -1
  2034. package/dist/hooks/session-end/__tests__/mode-state-cleanup.test.js +0 -150
  2035. package/dist/hooks/session-end/__tests__/mode-state-cleanup.test.js.map +0 -1
  2036. package/dist/hooks/session-end/__tests__/openclaw-session-end.test.d.ts +0 -2
  2037. package/dist/hooks/session-end/__tests__/openclaw-session-end.test.d.ts.map +0 -1
  2038. package/dist/hooks/session-end/__tests__/openclaw-session-end.test.js +0 -112
  2039. package/dist/hooks/session-end/__tests__/openclaw-session-end.test.js.map +0 -1
  2040. package/dist/hooks/session-end/__tests__/python-repl-cleanup.test.d.ts +0 -2
  2041. package/dist/hooks/session-end/__tests__/python-repl-cleanup.test.d.ts.map +0 -1
  2042. package/dist/hooks/session-end/__tests__/python-repl-cleanup.test.js +0 -46
  2043. package/dist/hooks/session-end/__tests__/python-repl-cleanup.test.js.map +0 -1
  2044. package/dist/hooks/session-end/__tests__/session-duration.test.d.ts +0 -2
  2045. package/dist/hooks/session-end/__tests__/session-duration.test.d.ts.map +0 -1
  2046. package/dist/hooks/session-end/__tests__/session-duration.test.js +0 -236
  2047. package/dist/hooks/session-end/__tests__/session-duration.test.js.map +0 -1
  2048. package/dist/hooks/session-end/__tests__/session-end-bridge-cleanup.test.d.ts +0 -2
  2049. package/dist/hooks/session-end/__tests__/session-end-bridge-cleanup.test.d.ts.map +0 -1
  2050. package/dist/hooks/session-end/__tests__/session-end-bridge-cleanup.test.js +0 -58
  2051. package/dist/hooks/session-end/__tests__/session-end-bridge-cleanup.test.js.map +0 -1
  2052. package/dist/hooks/session-end/__tests__/session-end-timeout.test.d.ts +0 -2
  2053. package/dist/hooks/session-end/__tests__/session-end-timeout.test.d.ts.map +0 -1
  2054. package/dist/hooks/session-end/__tests__/session-end-timeout.test.js +0 -91
  2055. package/dist/hooks/session-end/__tests__/session-end-timeout.test.js.map +0 -1
  2056. package/dist/hooks/session-end/__tests__/subdirectory-cwd.test.d.ts +0 -10
  2057. package/dist/hooks/session-end/__tests__/subdirectory-cwd.test.d.ts.map +0 -1
  2058. package/dist/hooks/session-end/__tests__/subdirectory-cwd.test.js +0 -122
  2059. package/dist/hooks/session-end/__tests__/subdirectory-cwd.test.js.map +0 -1
  2060. package/dist/hooks/session-end/__tests__/team-cleanup.test.d.ts +0 -2
  2061. package/dist/hooks/session-end/__tests__/team-cleanup.test.d.ts.map +0 -1
  2062. package/dist/hooks/session-end/__tests__/team-cleanup.test.js +0 -150
  2063. package/dist/hooks/session-end/__tests__/team-cleanup.test.js.map +0 -1
  2064. package/dist/hooks/session-end/callbacks.d.ts +0 -29
  2065. package/dist/hooks/session-end/callbacks.d.ts.map +0 -1
  2066. package/dist/hooks/session-end/callbacks.js +0 -230
  2067. package/dist/hooks/session-end/callbacks.js.map +0 -1
  2068. package/dist/hooks/session-end/index.d.ts +0 -87
  2069. package/dist/hooks/session-end/index.d.ts.map +0 -1
  2070. package/dist/hooks/session-end/index.js +0 -683
  2071. package/dist/hooks/session-end/index.js.map +0 -1
  2072. package/dist/hooks/setup/__tests__/prune.test.d.ts +0 -2
  2073. package/dist/hooks/setup/__tests__/prune.test.d.ts.map +0 -1
  2074. package/dist/hooks/setup/__tests__/prune.test.js +0 -94
  2075. package/dist/hooks/setup/__tests__/prune.test.js.map +0 -1
  2076. package/dist/hooks/setup/__tests__/windows-patch.test.d.ts +0 -2
  2077. package/dist/hooks/setup/__tests__/windows-patch.test.d.ts.map +0 -1
  2078. package/dist/hooks/setup/__tests__/windows-patch.test.js +0 -111
  2079. package/dist/hooks/setup/__tests__/windows-patch.test.js.map +0 -1
  2080. package/dist/hooks/setup/index.d.ts +0 -80
  2081. package/dist/hooks/setup/index.d.ts.map +0 -1
  2082. package/dist/hooks/setup/index.js +0 -349
  2083. package/dist/hooks/setup/index.js.map +0 -1
  2084. package/dist/hooks/setup/types.d.ts +0 -25
  2085. package/dist/hooks/setup/types.d.ts.map +0 -1
  2086. package/dist/hooks/setup/types.js +0 -5
  2087. package/dist/hooks/setup/types.js.map +0 -1
  2088. package/dist/hooks/skill-bridge.cjs +0 -512
  2089. package/dist/hooks/skill-state/__tests__/skill-state.test.d.ts +0 -2
  2090. package/dist/hooks/skill-state/__tests__/skill-state.test.d.ts.map +0 -1
  2091. package/dist/hooks/skill-state/__tests__/skill-state.test.js +0 -369
  2092. package/dist/hooks/skill-state/__tests__/skill-state.test.js.map +0 -1
  2093. package/dist/hooks/skill-state/index.d.ts +0 -88
  2094. package/dist/hooks/skill-state/index.d.ts.map +0 -1
  2095. package/dist/hooks/skill-state/index.js +0 -231
  2096. package/dist/hooks/skill-state/index.js.map +0 -1
  2097. package/dist/hooks/subagent-tracker/__tests__/flow-tracer.test.d.ts +0 -2
  2098. package/dist/hooks/subagent-tracker/__tests__/flow-tracer.test.d.ts.map +0 -1
  2099. package/dist/hooks/subagent-tracker/__tests__/flow-tracer.test.js +0 -107
  2100. package/dist/hooks/subagent-tracker/__tests__/flow-tracer.test.js.map +0 -1
  2101. package/dist/hooks/subagent-tracker/__tests__/flush-race.test.d.ts +0 -2
  2102. package/dist/hooks/subagent-tracker/__tests__/flush-race.test.d.ts.map +0 -1
  2103. package/dist/hooks/subagent-tracker/__tests__/flush-race.test.js +0 -375
  2104. package/dist/hooks/subagent-tracker/__tests__/flush-race.test.js.map +0 -1
  2105. package/dist/hooks/subagent-tracker/__tests__/index.test.d.ts +0 -2
  2106. package/dist/hooks/subagent-tracker/__tests__/index.test.d.ts.map +0 -1
  2107. package/dist/hooks/subagent-tracker/__tests__/index.test.js +0 -859
  2108. package/dist/hooks/subagent-tracker/__tests__/index.test.js.map +0 -1
  2109. package/dist/hooks/subagent-tracker/__tests__/session-replay.test.d.ts +0 -2
  2110. package/dist/hooks/subagent-tracker/__tests__/session-replay.test.d.ts.map +0 -1
  2111. package/dist/hooks/subagent-tracker/__tests__/session-replay.test.js +0 -139
  2112. package/dist/hooks/subagent-tracker/__tests__/session-replay.test.js.map +0 -1
  2113. package/dist/hooks/subagent-tracker/flow-tracer.d.ts +0 -31
  2114. package/dist/hooks/subagent-tracker/flow-tracer.d.ts.map +0 -1
  2115. package/dist/hooks/subagent-tracker/flow-tracer.js +0 -75
  2116. package/dist/hooks/subagent-tracker/flow-tracer.js.map +0 -1
  2117. package/dist/hooks/subagent-tracker/index.d.ts +0 -270
  2118. package/dist/hooks/subagent-tracker/index.d.ts.map +0 -1
  2119. package/dist/hooks/subagent-tracker/index.js +0 -1047
  2120. package/dist/hooks/subagent-tracker/index.js.map +0 -1
  2121. package/dist/hooks/subagent-tracker/session-replay.d.ts +0 -143
  2122. package/dist/hooks/subagent-tracker/session-replay.d.ts.map +0 -1
  2123. package/dist/hooks/subagent-tracker/session-replay.js +0 -390
  2124. package/dist/hooks/subagent-tracker/session-replay.js.map +0 -1
  2125. package/dist/hooks/task-size-detector/__tests__/index.test.d.ts +0 -2
  2126. package/dist/hooks/task-size-detector/__tests__/index.test.d.ts.map +0 -1
  2127. package/dist/hooks/task-size-detector/__tests__/index.test.js +0 -338
  2128. package/dist/hooks/task-size-detector/__tests__/index.test.js.map +0 -1
  2129. package/dist/hooks/task-size-detector/index.d.ts +0 -65
  2130. package/dist/hooks/task-size-detector/index.d.ts.map +0 -1
  2131. package/dist/hooks/task-size-detector/index.js +0 -194
  2132. package/dist/hooks/task-size-detector/index.js.map +0 -1
  2133. package/dist/hooks/team-dispatch-hook.d.ts +0 -65
  2134. package/dist/hooks/team-dispatch-hook.d.ts.map +0 -1
  2135. package/dist/hooks/team-dispatch-hook.js +0 -665
  2136. package/dist/hooks/team-dispatch-hook.js.map +0 -1
  2137. package/dist/hooks/team-leader-nudge-hook.d.ts +0 -42
  2138. package/dist/hooks/team-leader-nudge-hook.d.ts.map +0 -1
  2139. package/dist/hooks/team-leader-nudge-hook.js +0 -316
  2140. package/dist/hooks/team-leader-nudge-hook.js.map +0 -1
  2141. package/dist/hooks/team-pipeline/__tests__/transitions.test.d.ts +0 -2
  2142. package/dist/hooks/team-pipeline/__tests__/transitions.test.d.ts.map +0 -1
  2143. package/dist/hooks/team-pipeline/__tests__/transitions.test.js +0 -156
  2144. package/dist/hooks/team-pipeline/__tests__/transitions.test.js.map +0 -1
  2145. package/dist/hooks/team-pipeline/index.d.ts +0 -4
  2146. package/dist/hooks/team-pipeline/index.d.ts.map +0 -1
  2147. package/dist/hooks/team-pipeline/index.js +0 -4
  2148. package/dist/hooks/team-pipeline/index.js.map +0 -1
  2149. package/dist/hooks/team-pipeline/state.d.ts +0 -7
  2150. package/dist/hooks/team-pipeline/state.d.ts.map +0 -1
  2151. package/dist/hooks/team-pipeline/state.js +0 -163
  2152. package/dist/hooks/team-pipeline/state.js.map +0 -1
  2153. package/dist/hooks/team-pipeline/transitions.d.ts +0 -6
  2154. package/dist/hooks/team-pipeline/transitions.d.ts.map +0 -1
  2155. package/dist/hooks/team-pipeline/transitions.js +0 -103
  2156. package/dist/hooks/team-pipeline/transitions.js.map +0 -1
  2157. package/dist/hooks/team-pipeline/types.d.ts +0 -58
  2158. package/dist/hooks/team-pipeline/types.d.ts.map +0 -1
  2159. package/dist/hooks/team-pipeline/types.js +0 -7
  2160. package/dist/hooks/team-pipeline/types.js.map +0 -1
  2161. package/dist/hooks/team-worker-hook.d.ts +0 -45
  2162. package/dist/hooks/team-worker-hook.d.ts.map +0 -1
  2163. package/dist/hooks/team-worker-hook.js +0 -418
  2164. package/dist/hooks/team-worker-hook.js.map +0 -1
  2165. package/dist/hooks/think-mode/__tests__/index.test.d.ts +0 -2
  2166. package/dist/hooks/think-mode/__tests__/index.test.d.ts.map +0 -1
  2167. package/dist/hooks/think-mode/__tests__/index.test.js +0 -556
  2168. package/dist/hooks/think-mode/__tests__/index.test.js.map +0 -1
  2169. package/dist/hooks/think-mode/detector.d.ts +0 -28
  2170. package/dist/hooks/think-mode/detector.d.ts.map +0 -1
  2171. package/dist/hooks/think-mode/detector.js +0 -105
  2172. package/dist/hooks/think-mode/detector.js.map +0 -1
  2173. package/dist/hooks/think-mode/index.d.ts +0 -70
  2174. package/dist/hooks/think-mode/index.d.ts.map +0 -1
  2175. package/dist/hooks/think-mode/index.js +0 -144
  2176. package/dist/hooks/think-mode/index.js.map +0 -1
  2177. package/dist/hooks/think-mode/switcher.d.ts +0 -39
  2178. package/dist/hooks/think-mode/switcher.d.ts.map +0 -1
  2179. package/dist/hooks/think-mode/switcher.js +0 -184
  2180. package/dist/hooks/think-mode/switcher.js.map +0 -1
  2181. package/dist/hooks/think-mode/types.d.ts +0 -60
  2182. package/dist/hooks/think-mode/types.d.ts.map +0 -1
  2183. package/dist/hooks/think-mode/types.js +0 -9
  2184. package/dist/hooks/think-mode/types.js.map +0 -1
  2185. package/dist/hooks/thinking-block-validator/__tests__/index.test.d.ts +0 -2
  2186. package/dist/hooks/thinking-block-validator/__tests__/index.test.d.ts.map +0 -1
  2187. package/dist/hooks/thinking-block-validator/__tests__/index.test.js +0 -56
  2188. package/dist/hooks/thinking-block-validator/__tests__/index.test.js.map +0 -1
  2189. package/dist/hooks/thinking-block-validator/constants.d.ts +0 -37
  2190. package/dist/hooks/thinking-block-validator/constants.d.ts.map +0 -1
  2191. package/dist/hooks/thinking-block-validator/constants.js +0 -50
  2192. package/dist/hooks/thinking-block-validator/constants.js.map +0 -1
  2193. package/dist/hooks/thinking-block-validator/index.d.ts +0 -35
  2194. package/dist/hooks/thinking-block-validator/index.d.ts.map +0 -1
  2195. package/dist/hooks/thinking-block-validator/index.js +0 -157
  2196. package/dist/hooks/thinking-block-validator/index.js.map +0 -1
  2197. package/dist/hooks/thinking-block-validator/types.d.ts +0 -67
  2198. package/dist/hooks/thinking-block-validator/types.d.ts.map +0 -1
  2199. package/dist/hooks/thinking-block-validator/types.js +0 -9
  2200. package/dist/hooks/thinking-block-validator/types.js.map +0 -1
  2201. package/dist/hooks/todo-continuation/__tests__/isAuthenticationError.test.d.ts +0 -2
  2202. package/dist/hooks/todo-continuation/__tests__/isAuthenticationError.test.d.ts.map +0 -1
  2203. package/dist/hooks/todo-continuation/__tests__/isAuthenticationError.test.js +0 -33
  2204. package/dist/hooks/todo-continuation/__tests__/isAuthenticationError.test.js.map +0 -1
  2205. package/dist/hooks/todo-continuation/__tests__/isRateLimitStop.test.d.ts +0 -2
  2206. package/dist/hooks/todo-continuation/__tests__/isRateLimitStop.test.d.ts.map +0 -1
  2207. package/dist/hooks/todo-continuation/__tests__/isRateLimitStop.test.js +0 -88
  2208. package/dist/hooks/todo-continuation/__tests__/isRateLimitStop.test.js.map +0 -1
  2209. package/dist/hooks/todo-continuation/__tests__/isUserAbort.test.d.ts +0 -2
  2210. package/dist/hooks/todo-continuation/__tests__/isUserAbort.test.d.ts.map +0 -1
  2211. package/dist/hooks/todo-continuation/__tests__/isUserAbort.test.js +0 -119
  2212. package/dist/hooks/todo-continuation/__tests__/isUserAbort.test.js.map +0 -1
  2213. package/dist/hooks/todo-continuation/index.d.ts +0 -231
  2214. package/dist/hooks/todo-continuation/index.d.ts.map +0 -1
  2215. package/dist/hooks/todo-continuation/index.js +0 -470
  2216. package/dist/hooks/todo-continuation/index.js.map +0 -1
  2217. package/dist/hooks/ultraqa/index.d.ts +0 -96
  2218. package/dist/hooks/ultraqa/index.d.ts.map +0 -1
  2219. package/dist/hooks/ultraqa/index.js +0 -172
  2220. package/dist/hooks/ultraqa/index.js.map +0 -1
  2221. package/dist/hooks/ultrawork/index.d.ts +0 -72
  2222. package/dist/hooks/ultrawork/index.d.ts.map +0 -1
  2223. package/dist/hooks/ultrawork/index.js +0 -183
  2224. package/dist/hooks/ultrawork/index.js.map +0 -1
  2225. package/dist/hooks/ultrawork/session-isolation.test.d.ts +0 -2
  2226. package/dist/hooks/ultrawork/session-isolation.test.d.ts.map +0 -1
  2227. package/dist/hooks/ultrawork/session-isolation.test.js +0 -333
  2228. package/dist/hooks/ultrawork/session-isolation.test.js.map +0 -1
  2229. package/dist/hud/background-cleanup.d.ts +0 -28
  2230. package/dist/hud/background-cleanup.d.ts.map +0 -1
  2231. package/dist/hud/background-cleanup.js +0 -92
  2232. package/dist/hud/background-cleanup.js.map +0 -1
  2233. package/dist/hud/background-tasks.d.ts +0 -33
  2234. package/dist/hud/background-tasks.d.ts.map +0 -1
  2235. package/dist/hud/background-tasks.js +0 -199
  2236. package/dist/hud/background-tasks.js.map +0 -1
  2237. package/dist/hud/colors.d.ts +0 -54
  2238. package/dist/hud/colors.d.ts.map +0 -1
  2239. package/dist/hud/colors.js +0 -156
  2240. package/dist/hud/colors.js.map +0 -1
  2241. package/dist/hud/custom-rate-provider.d.ts +0 -33
  2242. package/dist/hud/custom-rate-provider.d.ts.map +0 -1
  2243. package/dist/hud/custom-rate-provider.js +0 -185
  2244. package/dist/hud/custom-rate-provider.js.map +0 -1
  2245. package/dist/hud/elements/agents.d.ts +0 -73
  2246. package/dist/hud/elements/agents.d.ts.map +0 -1
  2247. package/dist/hud/elements/agents.js +0 -487
  2248. package/dist/hud/elements/agents.js.map +0 -1
  2249. package/dist/hud/elements/api-key-source.d.ts +0 -30
  2250. package/dist/hud/elements/api-key-source.d.ts.map +0 -1
  2251. package/dist/hud/elements/api-key-source.js +0 -70
  2252. package/dist/hud/elements/api-key-source.js.map +0 -1
  2253. package/dist/hud/elements/autopilot.d.ts +0 -29
  2254. package/dist/hud/elements/autopilot.d.ts.map +0 -1
  2255. package/dist/hud/elements/autopilot.js +0 -97
  2256. package/dist/hud/elements/autopilot.js.map +0 -1
  2257. package/dist/hud/elements/background.d.ts +0 -20
  2258. package/dist/hud/elements/background.d.ts.map +0 -1
  2259. package/dist/hud/elements/background.js +0 -71
  2260. package/dist/hud/elements/background.js.map +0 -1
  2261. package/dist/hud/elements/call-counts.d.ts +0 -21
  2262. package/dist/hud/elements/call-counts.d.ts.map +0 -1
  2263. package/dist/hud/elements/call-counts.js +0 -41
  2264. package/dist/hud/elements/call-counts.js.map +0 -1
  2265. package/dist/hud/elements/context-warning.d.ts +0 -17
  2266. package/dist/hud/elements/context-warning.d.ts.map +0 -1
  2267. package/dist/hud/elements/context-warning.js +0 -31
  2268. package/dist/hud/elements/context-warning.js.map +0 -1
  2269. package/dist/hud/elements/context.d.ts +0 -29
  2270. package/dist/hud/elements/context.d.ts.map +0 -1
  2271. package/dist/hud/elements/context.js +0 -115
  2272. package/dist/hud/elements/context.js.map +0 -1
  2273. package/dist/hud/elements/cwd.d.ts +0 -15
  2274. package/dist/hud/elements/cwd.d.ts.map +0 -1
  2275. package/dist/hud/elements/cwd.js +0 -39
  2276. package/dist/hud/elements/cwd.js.map +0 -1
  2277. package/dist/hud/elements/git.d.ts +0 -41
  2278. package/dist/hud/elements/git.d.ts.map +0 -1
  2279. package/dist/hud/elements/git.js +0 -112
  2280. package/dist/hud/elements/git.js.map +0 -1
  2281. package/dist/hud/elements/index.d.ts +0 -25
  2282. package/dist/hud/elements/index.d.ts.map +0 -1
  2283. package/dist/hud/elements/index.js +0 -25
  2284. package/dist/hud/elements/index.js.map +0 -1
  2285. package/dist/hud/elements/limits.d.ts +0 -44
  2286. package/dist/hud/elements/limits.d.ts.map +0 -1
  2287. package/dist/hud/elements/limits.js +0 -241
  2288. package/dist/hud/elements/limits.js.map +0 -1
  2289. package/dist/hud/elements/mission-board.d.ts +0 -2
  2290. package/dist/hud/elements/mission-board.d.ts.map +0 -1
  2291. package/dist/hud/elements/mission-board.js +0 -2
  2292. package/dist/hud/elements/mission-board.js.map +0 -1
  2293. package/dist/hud/elements/model.d.ts +0 -16
  2294. package/dist/hud/elements/model.d.ts.map +0 -1
  2295. package/dist/hud/elements/model.js +0 -63
  2296. package/dist/hud/elements/model.js.map +0 -1
  2297. package/dist/hud/elements/permission.d.ts +0 -13
  2298. package/dist/hud/elements/permission.d.ts.map +0 -1
  2299. package/dist/hud/elements/permission.js +0 -20
  2300. package/dist/hud/elements/permission.js.map +0 -1
  2301. package/dist/hud/elements/prd.d.ts +0 -20
  2302. package/dist/hud/elements/prd.d.ts.map +0 -1
  2303. package/dist/hud/elements/prd.js +0 -52
  2304. package/dist/hud/elements/prd.js.map +0 -1
  2305. package/dist/hud/elements/prompt-time.d.ts +0 -13
  2306. package/dist/hud/elements/prompt-time.d.ts.map +0 -1
  2307. package/dist/hud/elements/prompt-time.js +0 -21
  2308. package/dist/hud/elements/prompt-time.js.map +0 -1
  2309. package/dist/hud/elements/ralph.d.ts +0 -14
  2310. package/dist/hud/elements/ralph.d.ts.map +0 -1
  2311. package/dist/hud/elements/ralph.js +0 -36
  2312. package/dist/hud/elements/ralph.js.map +0 -1
  2313. package/dist/hud/elements/session-summary.d.ts +0 -23
  2314. package/dist/hud/elements/session-summary.d.ts.map +0 -1
  2315. package/dist/hud/elements/session-summary.js +0 -23
  2316. package/dist/hud/elements/session-summary.js.map +0 -1
  2317. package/dist/hud/elements/session.d.ts +0 -13
  2318. package/dist/hud/elements/session.d.ts.map +0 -1
  2319. package/dist/hud/elements/session.js +0 -24
  2320. package/dist/hud/elements/session.js.map +0 -1
  2321. package/dist/hud/elements/skills.d.ts +0 -24
  2322. package/dist/hud/elements/skills.d.ts.map +0 -1
  2323. package/dist/hud/elements/skills.js +0 -93
  2324. package/dist/hud/elements/skills.js.map +0 -1
  2325. package/dist/hud/elements/thinking.d.ts +0 -15
  2326. package/dist/hud/elements/thinking.d.ts.map +0 -1
  2327. package/dist/hud/elements/thinking.js +0 -31
  2328. package/dist/hud/elements/thinking.js.map +0 -1
  2329. package/dist/hud/elements/todos.d.ts +0 -20
  2330. package/dist/hud/elements/todos.d.ts.map +0 -1
  2331. package/dist/hud/elements/todos.js +0 -71
  2332. package/dist/hud/elements/todos.js.map +0 -1
  2333. package/dist/hud/elements/token-usage.d.ts +0 -8
  2334. package/dist/hud/elements/token-usage.d.ts.map +0 -1
  2335. package/dist/hud/elements/token-usage.js +0 -24
  2336. package/dist/hud/elements/token-usage.js.map +0 -1
  2337. package/dist/hud/index.d.ts +0 -18
  2338. package/dist/hud/index.d.ts.map +0 -1
  2339. package/dist/hud/index.js +0 -392
  2340. package/dist/hud/index.js.map +0 -1
  2341. package/dist/hud/mission-board.d.ts +0 -75
  2342. package/dist/hud/mission-board.d.ts.map +0 -1
  2343. package/dist/hud/mission-board.js +0 -426
  2344. package/dist/hud/mission-board.js.map +0 -1
  2345. package/dist/hud/omc-state.d.ts +0 -38
  2346. package/dist/hud/omc-state.d.ts.map +0 -1
  2347. package/dist/hud/omc-state.js +0 -260
  2348. package/dist/hud/omc-state.js.map +0 -1
  2349. package/dist/hud/render.d.ts +0 -29
  2350. package/dist/hud/render.d.ts.map +0 -1
  2351. package/dist/hud/render.js +0 -394
  2352. package/dist/hud/render.js.map +0 -1
  2353. package/dist/hud/sanitize.d.ts +0 -54
  2354. package/dist/hud/sanitize.d.ts.map +0 -1
  2355. package/dist/hud/sanitize.js +0 -88
  2356. package/dist/hud/sanitize.js.map +0 -1
  2357. package/dist/hud/state.d.ts +0 -49
  2358. package/dist/hud/state.d.ts.map +0 -1
  2359. package/dist/hud/state.js +0 -308
  2360. package/dist/hud/state.js.map +0 -1
  2361. package/dist/hud/stdin.d.ts +0 -39
  2362. package/dist/hud/stdin.d.ts.map +0 -1
  2363. package/dist/hud/stdin.js +0 -158
  2364. package/dist/hud/stdin.js.map +0 -1
  2365. package/dist/hud/transcript.d.ts +0 -35
  2366. package/dist/hud/transcript.d.ts.map +0 -1
  2367. package/dist/hud/transcript.js +0 -486
  2368. package/dist/hud/transcript.js.map +0 -1
  2369. package/dist/hud/types.d.ts +0 -387
  2370. package/dist/hud/types.d.ts.map +0 -1
  2371. package/dist/hud/types.js +0 -255
  2372. package/dist/hud/types.js.map +0 -1
  2373. package/dist/hud/usage-api.d.ts +0 -50
  2374. package/dist/hud/usage-api.d.ts.map +0 -1
  2375. package/dist/hud/usage-api.js +0 -787
  2376. package/dist/hud/usage-api.js.map +0 -1
  2377. package/dist/index.d.ts +0 -121
  2378. package/dist/index.d.ts.map +0 -1
  2379. package/dist/index.js +0 -187
  2380. package/dist/index.js.map +0 -1
  2381. package/dist/installer/__tests__/claude-md-merge.test.d.ts +0 -6
  2382. package/dist/installer/__tests__/claude-md-merge.test.d.ts.map +0 -1
  2383. package/dist/installer/__tests__/claude-md-merge.test.js +0 -316
  2384. package/dist/installer/__tests__/claude-md-merge.test.js.map +0 -1
  2385. package/dist/installer/__tests__/hook-templates.test.d.ts +0 -2
  2386. package/dist/installer/__tests__/hook-templates.test.d.ts.map +0 -1
  2387. package/dist/installer/__tests__/hook-templates.test.js +0 -121
  2388. package/dist/installer/__tests__/hook-templates.test.js.map +0 -1
  2389. package/dist/installer/__tests__/mcp-registry.test.d.ts +0 -2
  2390. package/dist/installer/__tests__/mcp-registry.test.d.ts.map +0 -1
  2391. package/dist/installer/__tests__/mcp-registry.test.js +0 -316
  2392. package/dist/installer/__tests__/mcp-registry.test.js.map +0 -1
  2393. package/dist/installer/__tests__/safe-installer.test.d.ts +0 -6
  2394. package/dist/installer/__tests__/safe-installer.test.d.ts.map +0 -1
  2395. package/dist/installer/__tests__/safe-installer.test.js +0 -185
  2396. package/dist/installer/__tests__/safe-installer.test.js.map +0 -1
  2397. package/dist/installer/__tests__/session-start-template.test.d.ts +0 -2
  2398. package/dist/installer/__tests__/session-start-template.test.d.ts.map +0 -1
  2399. package/dist/installer/__tests__/session-start-template.test.js +0 -95
  2400. package/dist/installer/__tests__/session-start-template.test.js.map +0 -1
  2401. package/dist/installer/hooks.d.ts +0 -138
  2402. package/dist/installer/hooks.d.ts.map +0 -1
  2403. package/dist/installer/hooks.js +0 -442
  2404. package/dist/installer/hooks.js.map +0 -1
  2405. package/dist/installer/index.d.ts +0 -174
  2406. package/dist/installer/index.d.ts.map +0 -1
  2407. package/dist/installer/index.js +0 -1241
  2408. package/dist/installer/index.js.map +0 -1
  2409. package/dist/installer/mcp-registry.d.ts +0 -48
  2410. package/dist/installer/mcp-registry.d.ts.map +0 -1
  2411. package/dist/installer/mcp-registry.js +0 -453
  2412. package/dist/installer/mcp-registry.js.map +0 -1
  2413. package/dist/interop/__tests__/mcp-bridge.test.d.ts +0 -2
  2414. package/dist/interop/__tests__/mcp-bridge.test.d.ts.map +0 -1
  2415. package/dist/interop/__tests__/mcp-bridge.test.js +0 -60
  2416. package/dist/interop/__tests__/mcp-bridge.test.js.map +0 -1
  2417. package/dist/interop/mcp-bridge.d.ts +0 -66
  2418. package/dist/interop/mcp-bridge.d.ts.map +0 -1
  2419. package/dist/interop/mcp-bridge.js +0 -528
  2420. package/dist/interop/mcp-bridge.js.map +0 -1
  2421. package/dist/interop/omx-team-state.d.ts +0 -133
  2422. package/dist/interop/omx-team-state.d.ts.map +0 -1
  2423. package/dist/interop/omx-team-state.js +0 -301
  2424. package/dist/interop/omx-team-state.js.map +0 -1
  2425. package/dist/interop/shared-state.d.ts +0 -96
  2426. package/dist/interop/shared-state.d.ts.map +0 -1
  2427. package/dist/interop/shared-state.js +0 -324
  2428. package/dist/interop/shared-state.js.map +0 -1
  2429. package/dist/lib/__tests__/mode-state-io.test.d.ts +0 -2
  2430. package/dist/lib/__tests__/mode-state-io.test.d.ts.map +0 -1
  2431. package/dist/lib/__tests__/mode-state-io.test.js +0 -244
  2432. package/dist/lib/__tests__/mode-state-io.test.js.map +0 -1
  2433. package/dist/lib/__tests__/payload-limits.test.d.ts +0 -2
  2434. package/dist/lib/__tests__/payload-limits.test.d.ts.map +0 -1
  2435. package/dist/lib/__tests__/payload-limits.test.js +0 -124
  2436. package/dist/lib/__tests__/payload-limits.test.js.map +0 -1
  2437. package/dist/lib/__tests__/swallowed-error.test.d.ts +0 -2
  2438. package/dist/lib/__tests__/swallowed-error.test.d.ts.map +0 -1
  2439. package/dist/lib/__tests__/swallowed-error.test.js +0 -19
  2440. package/dist/lib/__tests__/swallowed-error.test.js.map +0 -1
  2441. package/dist/lib/__tests__/worktree-paths.test.d.ts +0 -2
  2442. package/dist/lib/__tests__/worktree-paths.test.d.ts.map +0 -1
  2443. package/dist/lib/__tests__/worktree-paths.test.js +0 -472
  2444. package/dist/lib/__tests__/worktree-paths.test.js.map +0 -1
  2445. package/dist/lib/atomic-write.d.ts +0 -56
  2446. package/dist/lib/atomic-write.d.ts.map +0 -1
  2447. package/dist/lib/atomic-write.js +0 -242
  2448. package/dist/lib/atomic-write.js.map +0 -1
  2449. package/dist/lib/featured-contributors.d.ts +0 -54
  2450. package/dist/lib/featured-contributors.d.ts.map +0 -1
  2451. package/dist/lib/featured-contributors.js +0 -290
  2452. package/dist/lib/featured-contributors.js.map +0 -1
  2453. package/dist/lib/file-lock.d.ts +0 -75
  2454. package/dist/lib/file-lock.d.ts.map +0 -1
  2455. package/dist/lib/file-lock.js +0 -244
  2456. package/dist/lib/file-lock.js.map +0 -1
  2457. package/dist/lib/job-state-db.d.ts +0 -150
  2458. package/dist/lib/job-state-db.d.ts.map +0 -1
  2459. package/dist/lib/job-state-db.js +0 -650
  2460. package/dist/lib/job-state-db.js.map +0 -1
  2461. package/dist/lib/mode-names.d.ts +0 -54
  2462. package/dist/lib/mode-names.d.ts.map +0 -1
  2463. package/dist/lib/mode-names.js +0 -75
  2464. package/dist/lib/mode-names.js.map +0 -1
  2465. package/dist/lib/mode-state-io.d.ts +0 -43
  2466. package/dist/lib/mode-state-io.d.ts.map +0 -1
  2467. package/dist/lib/mode-state-io.js +0 -173
  2468. package/dist/lib/mode-state-io.js.map +0 -1
  2469. package/dist/lib/payload-limits.d.ts +0 -31
  2470. package/dist/lib/payload-limits.d.ts.map +0 -1
  2471. package/dist/lib/payload-limits.js +0 -82
  2472. package/dist/lib/payload-limits.js.map +0 -1
  2473. package/dist/lib/project-memory-merge.d.ts +0 -36
  2474. package/dist/lib/project-memory-merge.d.ts.map +0 -1
  2475. package/dist/lib/project-memory-merge.js +0 -156
  2476. package/dist/lib/project-memory-merge.js.map +0 -1
  2477. package/dist/lib/session-isolation.d.ts +0 -32
  2478. package/dist/lib/session-isolation.d.ts.map +0 -1
  2479. package/dist/lib/session-isolation.js +0 -39
  2480. package/dist/lib/session-isolation.js.map +0 -1
  2481. package/dist/lib/shared-memory.d.ts +0 -82
  2482. package/dist/lib/shared-memory.d.ts.map +0 -1
  2483. package/dist/lib/shared-memory.js +0 -324
  2484. package/dist/lib/shared-memory.js.map +0 -1
  2485. package/dist/lib/swallowed-error.d.ts +0 -4
  2486. package/dist/lib/swallowed-error.d.ts.map +0 -1
  2487. package/dist/lib/swallowed-error.js +0 -26
  2488. package/dist/lib/swallowed-error.js.map +0 -1
  2489. package/dist/lib/version.d.ts +0 -10
  2490. package/dist/lib/version.d.ts.map +0 -1
  2491. package/dist/lib/version.js +0 -37
  2492. package/dist/lib/version.js.map +0 -1
  2493. package/dist/lib/worktree-paths.d.ts +0 -256
  2494. package/dist/lib/worktree-paths.d.ts.map +0 -1
  2495. package/dist/lib/worktree-paths.js +0 -643
  2496. package/dist/lib/worktree-paths.js.map +0 -1
  2497. package/dist/mcp/__tests__/prompt-injection.test.d.ts +0 -2
  2498. package/dist/mcp/__tests__/prompt-injection.test.d.ts.map +0 -1
  2499. package/dist/mcp/__tests__/prompt-injection.test.js +0 -121
  2500. package/dist/mcp/__tests__/prompt-injection.test.js.map +0 -1
  2501. package/dist/mcp/__tests__/standalone-shutdown.test.d.ts +0 -2
  2502. package/dist/mcp/__tests__/standalone-shutdown.test.d.ts.map +0 -1
  2503. package/dist/mcp/__tests__/standalone-shutdown.test.js +0 -57
  2504. package/dist/mcp/__tests__/standalone-shutdown.test.js.map +0 -1
  2505. package/dist/mcp/__tests__/team-cleanup.test.d.ts +0 -11
  2506. package/dist/mcp/__tests__/team-cleanup.test.d.ts.map +0 -1
  2507. package/dist/mcp/__tests__/team-cleanup.test.js +0 -228
  2508. package/dist/mcp/__tests__/team-cleanup.test.js.map +0 -1
  2509. package/dist/mcp/__tests__/team-server-artifact-convergence.test.d.ts +0 -2
  2510. package/dist/mcp/__tests__/team-server-artifact-convergence.test.d.ts.map +0 -1
  2511. package/dist/mcp/__tests__/team-server-artifact-convergence.test.js +0 -111
  2512. package/dist/mcp/__tests__/team-server-artifact-convergence.test.js.map +0 -1
  2513. package/dist/mcp/index.d.ts +0 -14
  2514. package/dist/mcp/index.d.ts.map +0 -1
  2515. package/dist/mcp/index.js +0 -17
  2516. package/dist/mcp/index.js.map +0 -1
  2517. package/dist/mcp/job-management.d.ts +0 -155
  2518. package/dist/mcp/job-management.d.ts.map +0 -1
  2519. package/dist/mcp/job-management.js +0 -655
  2520. package/dist/mcp/job-management.js.map +0 -1
  2521. package/dist/mcp/mcp-config.d.ts +0 -55
  2522. package/dist/mcp/mcp-config.d.ts.map +0 -1
  2523. package/dist/mcp/mcp-config.js +0 -94
  2524. package/dist/mcp/mcp-config.js.map +0 -1
  2525. package/dist/mcp/omc-tools-server.d.ts +0 -72
  2526. package/dist/mcp/omc-tools-server.d.ts.map +0 -1
  2527. package/dist/mcp/omc-tools-server.js +0 -188
  2528. package/dist/mcp/omc-tools-server.js.map +0 -1
  2529. package/dist/mcp/prompt-injection.d.ts +0 -23
  2530. package/dist/mcp/prompt-injection.d.ts.map +0 -1
  2531. package/dist/mcp/prompt-injection.js +0 -76
  2532. package/dist/mcp/prompt-injection.js.map +0 -1
  2533. package/dist/mcp/prompt-persistence.d.ts +0 -155
  2534. package/dist/mcp/prompt-persistence.d.ts.map +0 -1
  2535. package/dist/mcp/prompt-persistence.js +0 -374
  2536. package/dist/mcp/prompt-persistence.js.map +0 -1
  2537. package/dist/mcp/servers.d.ts +0 -61
  2538. package/dist/mcp/servers.d.ts.map +0 -1
  2539. package/dist/mcp/servers.js +0 -90
  2540. package/dist/mcp/servers.js.map +0 -1
  2541. package/dist/mcp/standalone-server.d.ts +0 -11
  2542. package/dist/mcp/standalone-server.d.ts.map +0 -1
  2543. package/dist/mcp/standalone-server.js +0 -205
  2544. package/dist/mcp/standalone-server.js.map +0 -1
  2545. package/dist/mcp/standalone-shutdown.d.ts +0 -25
  2546. package/dist/mcp/standalone-shutdown.d.ts.map +0 -1
  2547. package/dist/mcp/standalone-shutdown.js +0 -68
  2548. package/dist/mcp/standalone-shutdown.js.map +0 -1
  2549. package/dist/mcp/team-job-convergence.d.ts +0 -19
  2550. package/dist/mcp/team-job-convergence.d.ts.map +0 -1
  2551. package/dist/mcp/team-job-convergence.js +0 -101
  2552. package/dist/mcp/team-job-convergence.js.map +0 -1
  2553. package/dist/mcp/team-server.d.ts +0 -39
  2554. package/dist/mcp/team-server.d.ts.map +0 -1
  2555. package/dist/mcp/team-server.js +0 -487
  2556. package/dist/mcp/team-server.js.map +0 -1
  2557. package/dist/notifications/__tests__/config-merge.test.d.ts +0 -2
  2558. package/dist/notifications/__tests__/config-merge.test.d.ts.map +0 -1
  2559. package/dist/notifications/__tests__/config-merge.test.js +0 -345
  2560. package/dist/notifications/__tests__/config-merge.test.js.map +0 -1
  2561. package/dist/notifications/__tests__/config.test.d.ts +0 -2
  2562. package/dist/notifications/__tests__/config.test.d.ts.map +0 -1
  2563. package/dist/notifications/__tests__/config.test.js +0 -401
  2564. package/dist/notifications/__tests__/config.test.js.map +0 -1
  2565. package/dist/notifications/__tests__/custom-integration.test.d.ts +0 -8
  2566. package/dist/notifications/__tests__/custom-integration.test.d.ts.map +0 -1
  2567. package/dist/notifications/__tests__/custom-integration.test.js +0 -297
  2568. package/dist/notifications/__tests__/custom-integration.test.js.map +0 -1
  2569. package/dist/notifications/__tests__/dispatcher.test.d.ts +0 -2
  2570. package/dist/notifications/__tests__/dispatcher.test.d.ts.map +0 -1
  2571. package/dist/notifications/__tests__/dispatcher.test.js +0 -1194
  2572. package/dist/notifications/__tests__/dispatcher.test.js.map +0 -1
  2573. package/dist/notifications/__tests__/formatter.test.d.ts +0 -2
  2574. package/dist/notifications/__tests__/formatter.test.d.ts.map +0 -1
  2575. package/dist/notifications/__tests__/formatter.test.js +0 -303
  2576. package/dist/notifications/__tests__/formatter.test.js.map +0 -1
  2577. package/dist/notifications/__tests__/hook-config.test.d.ts +0 -14
  2578. package/dist/notifications/__tests__/hook-config.test.d.ts.map +0 -1
  2579. package/dist/notifications/__tests__/hook-config.test.js +0 -210
  2580. package/dist/notifications/__tests__/hook-config.test.js.map +0 -1
  2581. package/dist/notifications/__tests__/notify-registry-integration.test.d.ts +0 -2
  2582. package/dist/notifications/__tests__/notify-registry-integration.test.d.ts.map +0 -1
  2583. package/dist/notifications/__tests__/notify-registry-integration.test.js +0 -378
  2584. package/dist/notifications/__tests__/notify-registry-integration.test.js.map +0 -1
  2585. package/dist/notifications/__tests__/platform-gating.test.d.ts +0 -12
  2586. package/dist/notifications/__tests__/platform-gating.test.d.ts.map +0 -1
  2587. package/dist/notifications/__tests__/platform-gating.test.js +0 -140
  2588. package/dist/notifications/__tests__/platform-gating.test.js.map +0 -1
  2589. package/dist/notifications/__tests__/profiles.test.d.ts +0 -2
  2590. package/dist/notifications/__tests__/profiles.test.d.ts.map +0 -1
  2591. package/dist/notifications/__tests__/profiles.test.js +0 -253
  2592. package/dist/notifications/__tests__/profiles.test.js.map +0 -1
  2593. package/dist/notifications/__tests__/redact.test.d.ts +0 -2
  2594. package/dist/notifications/__tests__/redact.test.d.ts.map +0 -1
  2595. package/dist/notifications/__tests__/redact.test.js +0 -111
  2596. package/dist/notifications/__tests__/redact.test.js.map +0 -1
  2597. package/dist/notifications/__tests__/reply-config.test.d.ts +0 -2
  2598. package/dist/notifications/__tests__/reply-config.test.d.ts.map +0 -1
  2599. package/dist/notifications/__tests__/reply-config.test.js +0 -213
  2600. package/dist/notifications/__tests__/reply-config.test.js.map +0 -1
  2601. package/dist/notifications/__tests__/reply-listener.test.d.ts +0 -2
  2602. package/dist/notifications/__tests__/reply-listener.test.d.ts.map +0 -1
  2603. package/dist/notifications/__tests__/reply-listener.test.js +0 -486
  2604. package/dist/notifications/__tests__/reply-listener.test.js.map +0 -1
  2605. package/dist/notifications/__tests__/session-registry.test.d.ts +0 -2
  2606. package/dist/notifications/__tests__/session-registry.test.d.ts.map +0 -1
  2607. package/dist/notifications/__tests__/session-registry.test.js +0 -487
  2608. package/dist/notifications/__tests__/session-registry.test.js.map +0 -1
  2609. package/dist/notifications/__tests__/slack-socket.test.d.ts +0 -2
  2610. package/dist/notifications/__tests__/slack-socket.test.d.ts.map +0 -1
  2611. package/dist/notifications/__tests__/slack-socket.test.js +0 -293
  2612. package/dist/notifications/__tests__/slack-socket.test.js.map +0 -1
  2613. package/dist/notifications/__tests__/template-engine.test.d.ts +0 -13
  2614. package/dist/notifications/__tests__/template-engine.test.d.ts.map +0 -1
  2615. package/dist/notifications/__tests__/template-engine.test.js +0 -410
  2616. package/dist/notifications/__tests__/template-engine.test.js.map +0 -1
  2617. package/dist/notifications/__tests__/tmux.test.d.ts +0 -2
  2618. package/dist/notifications/__tests__/tmux.test.d.ts.map +0 -1
  2619. package/dist/notifications/__tests__/tmux.test.js +0 -137
  2620. package/dist/notifications/__tests__/tmux.test.js.map +0 -1
  2621. package/dist/notifications/__tests__/verbosity.test.d.ts +0 -2
  2622. package/dist/notifications/__tests__/verbosity.test.d.ts.map +0 -1
  2623. package/dist/notifications/__tests__/verbosity.test.js +0 -162
  2624. package/dist/notifications/__tests__/verbosity.test.js.map +0 -1
  2625. package/dist/notifications/config.d.ts +0 -155
  2626. package/dist/notifications/config.d.ts.map +0 -1
  2627. package/dist/notifications/config.js +0 -865
  2628. package/dist/notifications/config.js.map +0 -1
  2629. package/dist/notifications/dispatcher.d.ts +0 -57
  2630. package/dist/notifications/dispatcher.d.ts.map +0 -1
  2631. package/dist/notifications/dispatcher.js +0 -672
  2632. package/dist/notifications/dispatcher.js.map +0 -1
  2633. package/dist/notifications/formatter.d.ts +0 -50
  2634. package/dist/notifications/formatter.d.ts.map +0 -1
  2635. package/dist/notifications/formatter.js +0 -254
  2636. package/dist/notifications/formatter.js.map +0 -1
  2637. package/dist/notifications/hook-config-types.d.ts +0 -44
  2638. package/dist/notifications/hook-config-types.d.ts.map +0 -1
  2639. package/dist/notifications/hook-config-types.js +0 -8
  2640. package/dist/notifications/hook-config-types.js.map +0 -1
  2641. package/dist/notifications/hook-config.d.ts +0 -36
  2642. package/dist/notifications/hook-config.d.ts.map +0 -1
  2643. package/dist/notifications/hook-config.js +0 -95
  2644. package/dist/notifications/hook-config.js.map +0 -1
  2645. package/dist/notifications/index.d.ts +0 -44
  2646. package/dist/notifications/index.d.ts.map +0 -1
  2647. package/dist/notifications/index.js +0 -165
  2648. package/dist/notifications/index.js.map +0 -1
  2649. package/dist/notifications/presets.d.ts +0 -43
  2650. package/dist/notifications/presets.d.ts.map +0 -1
  2651. package/dist/notifications/presets.js +0 -122
  2652. package/dist/notifications/presets.js.map +0 -1
  2653. package/dist/notifications/redact.d.ts +0 -21
  2654. package/dist/notifications/redact.d.ts.map +0 -1
  2655. package/dist/notifications/redact.js +0 -42
  2656. package/dist/notifications/redact.js.map +0 -1
  2657. package/dist/notifications/reply-listener.d.ts +0 -140
  2658. package/dist/notifications/reply-listener.d.ts.map +0 -1
  2659. package/dist/notifications/reply-listener.js +0 -965
  2660. package/dist/notifications/reply-listener.js.map +0 -1
  2661. package/dist/notifications/session-registry.d.ts +0 -52
  2662. package/dist/notifications/session-registry.d.ts.map +0 -1
  2663. package/dist/notifications/session-registry.js +0 -382
  2664. package/dist/notifications/session-registry.js.map +0 -1
  2665. package/dist/notifications/slack-socket.d.ts +0 -242
  2666. package/dist/notifications/slack-socket.d.ts.map +0 -1
  2667. package/dist/notifications/slack-socket.js +0 -603
  2668. package/dist/notifications/slack-socket.js.map +0 -1
  2669. package/dist/notifications/template-engine.d.ts +0 -34
  2670. package/dist/notifications/template-engine.d.ts.map +0 -1
  2671. package/dist/notifications/template-engine.js +0 -252
  2672. package/dist/notifications/template-engine.js.map +0 -1
  2673. package/dist/notifications/template-variables.d.ts +0 -26
  2674. package/dist/notifications/template-variables.d.ts.map +0 -1
  2675. package/dist/notifications/template-variables.js +0 -139
  2676. package/dist/notifications/template-variables.js.map +0 -1
  2677. package/dist/notifications/tmux.d.ts +0 -27
  2678. package/dist/notifications/tmux.d.ts.map +0 -1
  2679. package/dist/notifications/tmux.js +0 -103
  2680. package/dist/notifications/tmux.js.map +0 -1
  2681. package/dist/notifications/types.d.ts +0 -257
  2682. package/dist/notifications/types.d.ts.map +0 -1
  2683. package/dist/notifications/types.js +0 -9
  2684. package/dist/notifications/types.js.map +0 -1
  2685. package/dist/notifications/validation.d.ts +0 -24
  2686. package/dist/notifications/validation.d.ts.map +0 -1
  2687. package/dist/notifications/validation.js +0 -167
  2688. package/dist/notifications/validation.js.map +0 -1
  2689. package/dist/openclaw/__tests__/config.test.d.ts +0 -2
  2690. package/dist/openclaw/__tests__/config.test.d.ts.map +0 -1
  2691. package/dist/openclaw/__tests__/config.test.js +0 -200
  2692. package/dist/openclaw/__tests__/config.test.js.map +0 -1
  2693. package/dist/openclaw/__tests__/dispatcher.test.d.ts +0 -2
  2694. package/dist/openclaw/__tests__/dispatcher.test.d.ts.map +0 -1
  2695. package/dist/openclaw/__tests__/dispatcher.test.js +0 -373
  2696. package/dist/openclaw/__tests__/dispatcher.test.js.map +0 -1
  2697. package/dist/openclaw/__tests__/index.test.d.ts +0 -2
  2698. package/dist/openclaw/__tests__/index.test.d.ts.map +0 -1
  2699. package/dist/openclaw/__tests__/index.test.js +0 -359
  2700. package/dist/openclaw/__tests__/index.test.js.map +0 -1
  2701. package/dist/openclaw/__tests__/signal.test.d.ts +0 -2
  2702. package/dist/openclaw/__tests__/signal.test.d.ts.map +0 -1
  2703. package/dist/openclaw/__tests__/signal.test.js +0 -69
  2704. package/dist/openclaw/__tests__/signal.test.js.map +0 -1
  2705. package/dist/openclaw/config.d.ts +0 -33
  2706. package/dist/openclaw/config.d.ts.map +0 -1
  2707. package/dist/openclaw/config.js +0 -83
  2708. package/dist/openclaw/config.js.map +0 -1
  2709. package/dist/openclaw/dispatcher.d.ts +0 -51
  2710. package/dist/openclaw/dispatcher.d.ts.map +0 -1
  2711. package/dist/openclaw/dispatcher.js +0 -149
  2712. package/dist/openclaw/dispatcher.js.map +0 -1
  2713. package/dist/openclaw/index.d.ts +0 -26
  2714. package/dist/openclaw/index.d.ts.map +0 -1
  2715. package/dist/openclaw/index.js +0 -169
  2716. package/dist/openclaw/index.js.map +0 -1
  2717. package/dist/openclaw/signal.d.ts +0 -3
  2718. package/dist/openclaw/signal.d.ts.map +0 -1
  2719. package/dist/openclaw/signal.js +0 -215
  2720. package/dist/openclaw/signal.js.map +0 -1
  2721. package/dist/openclaw/types.d.ts +0 -149
  2722. package/dist/openclaw/types.d.ts.map +0 -1
  2723. package/dist/openclaw/types.js +0 -8
  2724. package/dist/openclaw/types.js.map +0 -1
  2725. package/dist/planning/__tests__/artifacts.test.d.ts +0 -2
  2726. package/dist/planning/__tests__/artifacts.test.d.ts.map +0 -1
  2727. package/dist/planning/__tests__/artifacts.test.js +0 -303
  2728. package/dist/planning/__tests__/artifacts.test.js.map +0 -1
  2729. package/dist/planning/artifacts.d.ts +0 -29
  2730. package/dist/planning/artifacts.d.ts.map +0 -1
  2731. package/dist/planning/artifacts.js +0 -144
  2732. package/dist/planning/artifacts.js.map +0 -1
  2733. package/dist/platform/index.d.ts +0 -21
  2734. package/dist/platform/index.d.ts.map +0 -1
  2735. package/dist/platform/index.js +0 -46
  2736. package/dist/platform/index.js.map +0 -1
  2737. package/dist/platform/process-utils.d.ts +0 -27
  2738. package/dist/platform/process-utils.d.ts.map +0 -1
  2739. package/dist/platform/process-utils.js +0 -207
  2740. package/dist/platform/process-utils.js.map +0 -1
  2741. package/dist/providers/azure-devops.d.ts +0 -13
  2742. package/dist/providers/azure-devops.d.ts.map +0 -1
  2743. package/dist/providers/azure-devops.js +0 -77
  2744. package/dist/providers/azure-devops.js.map +0 -1
  2745. package/dist/providers/bitbucket.d.ts +0 -13
  2746. package/dist/providers/bitbucket.d.ts.map +0 -1
  2747. package/dist/providers/bitbucket.js +0 -87
  2748. package/dist/providers/bitbucket.js.map +0 -1
  2749. package/dist/providers/gitea.d.ts +0 -20
  2750. package/dist/providers/gitea.d.ts.map +0 -1
  2751. package/dist/providers/gitea.js +0 -174
  2752. package/dist/providers/gitea.js.map +0 -1
  2753. package/dist/providers/github.d.ts +0 -13
  2754. package/dist/providers/github.d.ts.map +0 -1
  2755. package/dist/providers/github.js +0 -79
  2756. package/dist/providers/github.js.map +0 -1
  2757. package/dist/providers/gitlab.d.ts +0 -14
  2758. package/dist/providers/gitlab.d.ts.map +0 -1
  2759. package/dist/providers/gitlab.js +0 -94
  2760. package/dist/providers/gitlab.js.map +0 -1
  2761. package/dist/providers/index.d.ts +0 -41
  2762. package/dist/providers/index.d.ts.map +0 -1
  2763. package/dist/providers/index.js +0 -219
  2764. package/dist/providers/index.js.map +0 -1
  2765. package/dist/providers/types.d.ts +0 -66
  2766. package/dist/providers/types.d.ts.map +0 -1
  2767. package/dist/providers/types.js +0 -8
  2768. package/dist/providers/types.js.map +0 -1
  2769. package/dist/ralphthon/__tests__/cli.test.d.ts +0 -5
  2770. package/dist/ralphthon/__tests__/cli.test.d.ts.map +0 -1
  2771. package/dist/ralphthon/__tests__/cli.test.js +0 -103
  2772. package/dist/ralphthon/__tests__/cli.test.js.map +0 -1
  2773. package/dist/ralphthon/__tests__/orchestrator.test.d.ts +0 -5
  2774. package/dist/ralphthon/__tests__/orchestrator.test.d.ts.map +0 -1
  2775. package/dist/ralphthon/__tests__/orchestrator.test.js +0 -393
  2776. package/dist/ralphthon/__tests__/orchestrator.test.js.map +0 -1
  2777. package/dist/ralphthon/__tests__/prd.test.d.ts +0 -5
  2778. package/dist/ralphthon/__tests__/prd.test.d.ts.map +0 -1
  2779. package/dist/ralphthon/__tests__/prd.test.js +0 -454
  2780. package/dist/ralphthon/__tests__/prd.test.js.map +0 -1
  2781. package/dist/ralphthon/deep-interview-prompt.d.ts +0 -2
  2782. package/dist/ralphthon/deep-interview-prompt.d.ts.map +0 -1
  2783. package/dist/ralphthon/deep-interview-prompt.js +0 -20
  2784. package/dist/ralphthon/deep-interview-prompt.js.map +0 -1
  2785. package/dist/ralphthon/index.d.ts +0 -13
  2786. package/dist/ralphthon/index.d.ts.map +0 -1
  2787. package/dist/ralphthon/index.js +0 -14
  2788. package/dist/ralphthon/index.js.map +0 -1
  2789. package/dist/ralphthon/orchestrator.d.ts +0 -112
  2790. package/dist/ralphthon/orchestrator.d.ts.map +0 -1
  2791. package/dist/ralphthon/orchestrator.js +0 -453
  2792. package/dist/ralphthon/orchestrator.js.map +0 -1
  2793. package/dist/ralphthon/prd.d.ts +0 -111
  2794. package/dist/ralphthon/prd.d.ts.map +0 -1
  2795. package/dist/ralphthon/prd.js +0 -345
  2796. package/dist/ralphthon/prd.js.map +0 -1
  2797. package/dist/ralphthon/types.d.ts +0 -213
  2798. package/dist/ralphthon/types.d.ts.map +0 -1
  2799. package/dist/ralphthon/types.js +0 -21
  2800. package/dist/ralphthon/types.js.map +0 -1
  2801. package/dist/shared/index.d.ts +0 -5
  2802. package/dist/shared/index.d.ts.map +0 -1
  2803. package/dist/shared/index.js +0 -5
  2804. package/dist/shared/index.js.map +0 -1
  2805. package/dist/shared/types.d.ts +0 -347
  2806. package/dist/shared/types.d.ts.map +0 -1
  2807. package/dist/shared/types.js +0 -5
  2808. package/dist/shared/types.js.map +0 -1
  2809. package/dist/skills/__tests__/mingw-escape.test.d.ts +0 -9
  2810. package/dist/skills/__tests__/mingw-escape.test.d.ts.map +0 -1
  2811. package/dist/skills/__tests__/mingw-escape.test.js +0 -150
  2812. package/dist/skills/__tests__/mingw-escape.test.js.map +0 -1
  2813. package/dist/team/__tests__/activity-log.test.d.ts +0 -2
  2814. package/dist/team/__tests__/activity-log.test.d.ts.map +0 -1
  2815. package/dist/team/__tests__/activity-log.test.js +0 -141
  2816. package/dist/team/__tests__/activity-log.test.js.map +0 -1
  2817. package/dist/team/__tests__/allocation-policy.test.d.ts +0 -2
  2818. package/dist/team/__tests__/allocation-policy.test.d.ts.map +0 -1
  2819. package/dist/team/__tests__/allocation-policy.test.js +0 -125
  2820. package/dist/team/__tests__/allocation-policy.test.js.map +0 -1
  2821. package/dist/team/__tests__/api-interop.cleanup.test.d.ts +0 -2
  2822. package/dist/team/__tests__/api-interop.cleanup.test.d.ts.map +0 -1
  2823. package/dist/team/__tests__/api-interop.cleanup.test.js +0 -129
  2824. package/dist/team/__tests__/api-interop.cleanup.test.js.map +0 -1
  2825. package/dist/team/__tests__/api-interop.command-dialect.test.d.ts +0 -2
  2826. package/dist/team/__tests__/api-interop.command-dialect.test.d.ts.map +0 -1
  2827. package/dist/team/__tests__/api-interop.command-dialect.test.js +0 -26
  2828. package/dist/team/__tests__/api-interop.command-dialect.test.js.map +0 -1
  2829. package/dist/team/__tests__/api-interop.compatibility.test.d.ts +0 -2
  2830. package/dist/team/__tests__/api-interop.compatibility.test.d.ts.map +0 -1
  2831. package/dist/team/__tests__/api-interop.compatibility.test.js +0 -93
  2832. package/dist/team/__tests__/api-interop.compatibility.test.js.map +0 -1
  2833. package/dist/team/__tests__/api-interop.cwd-resolution.test.d.ts +0 -2
  2834. package/dist/team/__tests__/api-interop.cwd-resolution.test.d.ts.map +0 -1
  2835. package/dist/team/__tests__/api-interop.cwd-resolution.test.js +0 -100
  2836. package/dist/team/__tests__/api-interop.cwd-resolution.test.js.map +0 -1
  2837. package/dist/team/__tests__/api-interop.dispatch.test.d.ts +0 -2
  2838. package/dist/team/__tests__/api-interop.dispatch.test.d.ts.map +0 -1
  2839. package/dist/team/__tests__/api-interop.dispatch.test.js +0 -184
  2840. package/dist/team/__tests__/api-interop.dispatch.test.js.map +0 -1
  2841. package/dist/team/__tests__/audit-log.test.d.ts +0 -2
  2842. package/dist/team/__tests__/audit-log.test.d.ts.map +0 -1
  2843. package/dist/team/__tests__/audit-log.test.js +0 -300
  2844. package/dist/team/__tests__/audit-log.test.js.map +0 -1
  2845. package/dist/team/__tests__/auto-cleanup.test.d.ts +0 -13
  2846. package/dist/team/__tests__/auto-cleanup.test.d.ts.map +0 -1
  2847. package/dist/team/__tests__/auto-cleanup.test.js +0 -176
  2848. package/dist/team/__tests__/auto-cleanup.test.js.map +0 -1
  2849. package/dist/team/__tests__/bridge-entry.guardrails.test.d.ts +0 -2
  2850. package/dist/team/__tests__/bridge-entry.guardrails.test.d.ts.map +0 -1
  2851. package/dist/team/__tests__/bridge-entry.guardrails.test.js +0 -33
  2852. package/dist/team/__tests__/bridge-entry.guardrails.test.js.map +0 -1
  2853. package/dist/team/__tests__/bridge-entry.test.d.ts +0 -2
  2854. package/dist/team/__tests__/bridge-entry.test.d.ts.map +0 -1
  2855. package/dist/team/__tests__/bridge-entry.test.js +0 -82
  2856. package/dist/team/__tests__/bridge-entry.test.js.map +0 -1
  2857. package/dist/team/__tests__/bridge-integration.test.d.ts +0 -2
  2858. package/dist/team/__tests__/bridge-integration.test.d.ts.map +0 -1
  2859. package/dist/team/__tests__/bridge-integration.test.js +0 -316
  2860. package/dist/team/__tests__/bridge-integration.test.js.map +0 -1
  2861. package/dist/team/__tests__/capabilities.test.d.ts +0 -2
  2862. package/dist/team/__tests__/capabilities.test.d.ts.map +0 -1
  2863. package/dist/team/__tests__/capabilities.test.js +0 -97
  2864. package/dist/team/__tests__/capabilities.test.js.map +0 -1
  2865. package/dist/team/__tests__/capture-file-snapshot.test.d.ts +0 -2
  2866. package/dist/team/__tests__/capture-file-snapshot.test.d.ts.map +0 -1
  2867. package/dist/team/__tests__/capture-file-snapshot.test.js +0 -48
  2868. package/dist/team/__tests__/capture-file-snapshot.test.js.map +0 -1
  2869. package/dist/team/__tests__/cli-detection.test.d.ts +0 -2
  2870. package/dist/team/__tests__/cli-detection.test.d.ts.map +0 -1
  2871. package/dist/team/__tests__/cli-detection.test.js +0 -36
  2872. package/dist/team/__tests__/cli-detection.test.js.map +0 -1
  2873. package/dist/team/__tests__/edge-cases.test.d.ts +0 -16
  2874. package/dist/team/__tests__/edge-cases.test.d.ts.map +0 -1
  2875. package/dist/team/__tests__/edge-cases.test.js +0 -745
  2876. package/dist/team/__tests__/edge-cases.test.js.map +0 -1
  2877. package/dist/team/__tests__/events.swallowed-error.test.d.ts +0 -2
  2878. package/dist/team/__tests__/events.swallowed-error.test.d.ts.map +0 -1
  2879. package/dist/team/__tests__/events.swallowed-error.test.js +0 -33
  2880. package/dist/team/__tests__/events.swallowed-error.test.js.map +0 -1
  2881. package/dist/team/__tests__/followup-planner.test.d.ts +0 -2
  2882. package/dist/team/__tests__/followup-planner.test.d.ts.map +0 -1
  2883. package/dist/team/__tests__/followup-planner.test.js +0 -197
  2884. package/dist/team/__tests__/followup-planner.test.js.map +0 -1
  2885. package/dist/team/__tests__/fs-utils.test.d.ts +0 -2
  2886. package/dist/team/__tests__/fs-utils.test.d.ts.map +0 -1
  2887. package/dist/team/__tests__/fs-utils.test.js +0 -69
  2888. package/dist/team/__tests__/fs-utils.test.js.map +0 -1
  2889. package/dist/team/__tests__/git-worktree.test.d.ts +0 -2
  2890. package/dist/team/__tests__/git-worktree.test.d.ts.map +0 -1
  2891. package/dist/team/__tests__/git-worktree.test.js +0 -90
  2892. package/dist/team/__tests__/git-worktree.test.js.map +0 -1
  2893. package/dist/team/__tests__/governance-enforcement.test.d.ts +0 -2
  2894. package/dist/team/__tests__/governance-enforcement.test.d.ts.map +0 -1
  2895. package/dist/team/__tests__/governance-enforcement.test.js +0 -138
  2896. package/dist/team/__tests__/governance-enforcement.test.js.map +0 -1
  2897. package/dist/team/__tests__/governance.test.d.ts +0 -2
  2898. package/dist/team/__tests__/governance.test.d.ts.map +0 -1
  2899. package/dist/team/__tests__/governance.test.js +0 -38
  2900. package/dist/team/__tests__/governance.test.js.map +0 -1
  2901. package/dist/team/__tests__/heartbeat.test.d.ts +0 -2
  2902. package/dist/team/__tests__/heartbeat.test.d.ts.map +0 -1
  2903. package/dist/team/__tests__/heartbeat.test.js +0 -92
  2904. package/dist/team/__tests__/heartbeat.test.js.map +0 -1
  2905. package/dist/team/__tests__/idle-nudge.test.d.ts +0 -11
  2906. package/dist/team/__tests__/idle-nudge.test.d.ts.map +0 -1
  2907. package/dist/team/__tests__/idle-nudge.test.js +0 -291
  2908. package/dist/team/__tests__/idle-nudge.test.js.map +0 -1
  2909. package/dist/team/__tests__/inbox-outbox.test.d.ts +0 -2
  2910. package/dist/team/__tests__/inbox-outbox.test.d.ts.map +0 -1
  2911. package/dist/team/__tests__/inbox-outbox.test.js +0 -217
  2912. package/dist/team/__tests__/inbox-outbox.test.js.map +0 -1
  2913. package/dist/team/__tests__/index.compat-exports.test.d.ts +0 -2
  2914. package/dist/team/__tests__/index.compat-exports.test.d.ts.map +0 -1
  2915. package/dist/team/__tests__/index.compat-exports.test.js +0 -20
  2916. package/dist/team/__tests__/index.compat-exports.test.js.map +0 -1
  2917. package/dist/team/__tests__/leader-nudge-guidance.test.d.ts +0 -2
  2918. package/dist/team/__tests__/leader-nudge-guidance.test.d.ts.map +0 -1
  2919. package/dist/team/__tests__/leader-nudge-guidance.test.js +0 -37
  2920. package/dist/team/__tests__/leader-nudge-guidance.test.js.map +0 -1
  2921. package/dist/team/__tests__/lifecycle-profile.test.d.ts +0 -2
  2922. package/dist/team/__tests__/lifecycle-profile.test.d.ts.map +0 -1
  2923. package/dist/team/__tests__/lifecycle-profile.test.js +0 -46
  2924. package/dist/team/__tests__/lifecycle-profile.test.js.map +0 -1
  2925. package/dist/team/__tests__/mcp-team-bridge.spawn-args.test.d.ts +0 -2
  2926. package/dist/team/__tests__/mcp-team-bridge.spawn-args.test.d.ts.map +0 -1
  2927. package/dist/team/__tests__/mcp-team-bridge.spawn-args.test.js +0 -18
  2928. package/dist/team/__tests__/mcp-team-bridge.spawn-args.test.js.map +0 -1
  2929. package/dist/team/__tests__/mcp-team-bridge.usage.test.d.ts +0 -2
  2930. package/dist/team/__tests__/mcp-team-bridge.usage.test.d.ts.map +0 -1
  2931. package/dist/team/__tests__/mcp-team-bridge.usage.test.js +0 -51
  2932. package/dist/team/__tests__/mcp-team-bridge.usage.test.js.map +0 -1
  2933. package/dist/team/__tests__/merge-coordinator.test.d.ts +0 -2
  2934. package/dist/team/__tests__/merge-coordinator.test.d.ts.map +0 -1
  2935. package/dist/team/__tests__/merge-coordinator.test.js +0 -128
  2936. package/dist/team/__tests__/merge-coordinator.test.js.map +0 -1
  2937. package/dist/team/__tests__/message-router.test.d.ts +0 -2
  2938. package/dist/team/__tests__/message-router.test.d.ts.map +0 -1
  2939. package/dist/team/__tests__/message-router.test.js +0 -78
  2940. package/dist/team/__tests__/message-router.test.js.map +0 -1
  2941. package/dist/team/__tests__/model-contract.test.d.ts +0 -2
  2942. package/dist/team/__tests__/model-contract.test.d.ts.map +0 -1
  2943. package/dist/team/__tests__/model-contract.test.js +0 -355
  2944. package/dist/team/__tests__/model-contract.test.js.map +0 -1
  2945. package/dist/team/__tests__/outbox-reader.test.d.ts +0 -2
  2946. package/dist/team/__tests__/outbox-reader.test.d.ts.map +0 -1
  2947. package/dist/team/__tests__/outbox-reader.test.js +0 -149
  2948. package/dist/team/__tests__/outbox-reader.test.js.map +0 -1
  2949. package/dist/team/__tests__/permissions.test.d.ts +0 -2
  2950. package/dist/team/__tests__/permissions.test.d.ts.map +0 -1
  2951. package/dist/team/__tests__/permissions.test.js +0 -170
  2952. package/dist/team/__tests__/permissions.test.js.map +0 -1
  2953. package/dist/team/__tests__/phase-controller.test.d.ts +0 -2
  2954. package/dist/team/__tests__/phase-controller.test.d.ts.map +0 -1
  2955. package/dist/team/__tests__/phase-controller.test.js +0 -45
  2956. package/dist/team/__tests__/phase-controller.test.js.map +0 -1
  2957. package/dist/team/__tests__/phase1-foundation.test.d.ts +0 -2
  2958. package/dist/team/__tests__/phase1-foundation.test.d.ts.map +0 -1
  2959. package/dist/team/__tests__/phase1-foundation.test.js +0 -151
  2960. package/dist/team/__tests__/phase1-foundation.test.js.map +0 -1
  2961. package/dist/team/__tests__/prompt-sanitization.test.d.ts +0 -2
  2962. package/dist/team/__tests__/prompt-sanitization.test.d.ts.map +0 -1
  2963. package/dist/team/__tests__/prompt-sanitization.test.js +0 -150
  2964. package/dist/team/__tests__/prompt-sanitization.test.js.map +0 -1
  2965. package/dist/team/__tests__/role-router.test.d.ts +0 -2
  2966. package/dist/team/__tests__/role-router.test.d.ts.map +0 -1
  2967. package/dist/team/__tests__/role-router.test.js +0 -122
  2968. package/dist/team/__tests__/role-router.test.js.map +0 -1
  2969. package/dist/team/__tests__/runtime-assign.test.d.ts +0 -2
  2970. package/dist/team/__tests__/runtime-assign.test.d.ts.map +0 -1
  2971. package/dist/team/__tests__/runtime-assign.test.js +0 -43
  2972. package/dist/team/__tests__/runtime-assign.test.js.map +0 -1
  2973. package/dist/team/__tests__/runtime-cli.test.d.ts +0 -2
  2974. package/dist/team/__tests__/runtime-cli.test.d.ts.map +0 -1
  2975. package/dist/team/__tests__/runtime-cli.test.js +0 -159
  2976. package/dist/team/__tests__/runtime-cli.test.js.map +0 -1
  2977. package/dist/team/__tests__/runtime-done-recovery.test.d.ts +0 -2
  2978. package/dist/team/__tests__/runtime-done-recovery.test.d.ts.map +0 -1
  2979. package/dist/team/__tests__/runtime-done-recovery.test.js +0 -78
  2980. package/dist/team/__tests__/runtime-done-recovery.test.js.map +0 -1
  2981. package/dist/team/__tests__/runtime-prompt-mode.test.d.ts +0 -2
  2982. package/dist/team/__tests__/runtime-prompt-mode.test.d.ts.map +0 -1
  2983. package/dist/team/__tests__/runtime-prompt-mode.test.js +0 -394
  2984. package/dist/team/__tests__/runtime-prompt-mode.test.js.map +0 -1
  2985. package/dist/team/__tests__/runtime-v2.dispatch.test.d.ts +0 -2
  2986. package/dist/team/__tests__/runtime-v2.dispatch.test.d.ts.map +0 -1
  2987. package/dist/team/__tests__/runtime-v2.dispatch.test.js +0 -345
  2988. package/dist/team/__tests__/runtime-v2.dispatch.test.js.map +0 -1
  2989. package/dist/team/__tests__/runtime-v2.feature-flag.test.d.ts +0 -2
  2990. package/dist/team/__tests__/runtime-v2.feature-flag.test.d.ts.map +0 -1
  2991. package/dist/team/__tests__/runtime-v2.feature-flag.test.js +0 -20
  2992. package/dist/team/__tests__/runtime-v2.feature-flag.test.js.map +0 -1
  2993. package/dist/team/__tests__/runtime-v2.monitor.test.d.ts +0 -2
  2994. package/dist/team/__tests__/runtime-v2.monitor.test.d.ts.map +0 -1
  2995. package/dist/team/__tests__/runtime-v2.monitor.test.js +0 -148
  2996. package/dist/team/__tests__/runtime-v2.monitor.test.js.map +0 -1
  2997. package/dist/team/__tests__/runtime-v2.shutdown-pane-cleanup.test.d.ts +0 -2
  2998. package/dist/team/__tests__/runtime-v2.shutdown-pane-cleanup.test.d.ts.map +0 -1
  2999. package/dist/team/__tests__/runtime-v2.shutdown-pane-cleanup.test.js +0 -110
  3000. package/dist/team/__tests__/runtime-v2.shutdown-pane-cleanup.test.js.map +0 -1
  3001. package/dist/team/__tests__/runtime-v2.shutdown.test.d.ts +0 -2
  3002. package/dist/team/__tests__/runtime-v2.shutdown.test.d.ts.map +0 -1
  3003. package/dist/team/__tests__/runtime-v2.shutdown.test.js +0 -49
  3004. package/dist/team/__tests__/runtime-v2.shutdown.test.js.map +0 -1
  3005. package/dist/team/__tests__/runtime-watchdog-retry.test.d.ts +0 -2
  3006. package/dist/team/__tests__/runtime-watchdog-retry.test.d.ts.map +0 -1
  3007. package/dist/team/__tests__/runtime-watchdog-retry.test.js +0 -411
  3008. package/dist/team/__tests__/runtime-watchdog-retry.test.js.map +0 -1
  3009. package/dist/team/__tests__/runtime.test.d.ts +0 -2
  3010. package/dist/team/__tests__/runtime.test.d.ts.map +0 -1
  3011. package/dist/team/__tests__/runtime.test.js +0 -37
  3012. package/dist/team/__tests__/runtime.test.js.map +0 -1
  3013. package/dist/team/__tests__/scaling.test.d.ts +0 -2
  3014. package/dist/team/__tests__/scaling.test.d.ts.map +0 -1
  3015. package/dist/team/__tests__/scaling.test.js +0 -44
  3016. package/dist/team/__tests__/scaling.test.js.map +0 -1
  3017. package/dist/team/__tests__/shell-affinity.test.d.ts +0 -2
  3018. package/dist/team/__tests__/shell-affinity.test.d.ts.map +0 -1
  3019. package/dist/team/__tests__/shell-affinity.test.js +0 -98
  3020. package/dist/team/__tests__/shell-affinity.test.js.map +0 -1
  3021. package/dist/team/__tests__/state-paths.test.d.ts +0 -2
  3022. package/dist/team/__tests__/state-paths.test.d.ts.map +0 -1
  3023. package/dist/team/__tests__/state-paths.test.js +0 -19
  3024. package/dist/team/__tests__/state-paths.test.js.map +0 -1
  3025. package/dist/team/__tests__/summary-report.test.d.ts +0 -2
  3026. package/dist/team/__tests__/summary-report.test.d.ts.map +0 -1
  3027. package/dist/team/__tests__/summary-report.test.js +0 -194
  3028. package/dist/team/__tests__/summary-report.test.js.map +0 -1
  3029. package/dist/team/__tests__/task-file-ops.test.d.ts +0 -2
  3030. package/dist/team/__tests__/task-file-ops.test.d.ts.map +0 -1
  3031. package/dist/team/__tests__/task-file-ops.test.js +0 -351
  3032. package/dist/team/__tests__/task-file-ops.test.js.map +0 -1
  3033. package/dist/team/__tests__/task-router.test.d.ts +0 -2
  3034. package/dist/team/__tests__/task-router.test.d.ts.map +0 -1
  3035. package/dist/team/__tests__/task-router.test.js +0 -118
  3036. package/dist/team/__tests__/task-router.test.js.map +0 -1
  3037. package/dist/team/__tests__/team-leader-nudge-hook.logging.test.d.ts +0 -2
  3038. package/dist/team/__tests__/team-leader-nudge-hook.logging.test.d.ts.map +0 -1
  3039. package/dist/team/__tests__/team-leader-nudge-hook.logging.test.js +0 -63
  3040. package/dist/team/__tests__/team-leader-nudge-hook.logging.test.js.map +0 -1
  3041. package/dist/team/__tests__/team-leader-nudge-hook.test.d.ts +0 -2
  3042. package/dist/team/__tests__/team-leader-nudge-hook.test.d.ts.map +0 -1
  3043. package/dist/team/__tests__/team-leader-nudge-hook.test.js +0 -90
  3044. package/dist/team/__tests__/team-leader-nudge-hook.test.js.map +0 -1
  3045. package/dist/team/__tests__/team-name.test.d.ts +0 -2
  3046. package/dist/team/__tests__/team-name.test.d.ts.map +0 -1
  3047. package/dist/team/__tests__/team-name.test.js +0 -18
  3048. package/dist/team/__tests__/team-name.test.js.map +0 -1
  3049. package/dist/team/__tests__/team-registration.test.d.ts +0 -2
  3050. package/dist/team/__tests__/team-registration.test.d.ts.map +0 -1
  3051. package/dist/team/__tests__/team-registration.test.js +0 -86
  3052. package/dist/team/__tests__/team-registration.test.js.map +0 -1
  3053. package/dist/team/__tests__/team-status.test.d.ts +0 -2
  3054. package/dist/team/__tests__/team-status.test.d.ts.map +0 -1
  3055. package/dist/team/__tests__/team-status.test.js +0 -186
  3056. package/dist/team/__tests__/team-status.test.js.map +0 -1
  3057. package/dist/team/__tests__/tmux-comm.test.d.ts +0 -2
  3058. package/dist/team/__tests__/tmux-comm.test.d.ts.map +0 -1
  3059. package/dist/team/__tests__/tmux-comm.test.js +0 -27
  3060. package/dist/team/__tests__/tmux-comm.test.js.map +0 -1
  3061. package/dist/team/__tests__/tmux-session.create-team.test.d.ts +0 -2
  3062. package/dist/team/__tests__/tmux-session.create-team.test.d.ts.map +0 -1
  3063. package/dist/team/__tests__/tmux-session.create-team.test.js +0 -163
  3064. package/dist/team/__tests__/tmux-session.create-team.test.js.map +0 -1
  3065. package/dist/team/__tests__/tmux-session.kill-team-session.test.d.ts +0 -2
  3066. package/dist/team/__tests__/tmux-session.kill-team-session.test.d.ts.map +0 -1
  3067. package/dist/team/__tests__/tmux-session.kill-team-session.test.js +0 -94
  3068. package/dist/team/__tests__/tmux-session.kill-team-session.test.js.map +0 -1
  3069. package/dist/team/__tests__/tmux-session.spawn.test.d.ts +0 -2
  3070. package/dist/team/__tests__/tmux-session.spawn.test.d.ts.map +0 -1
  3071. package/dist/team/__tests__/tmux-session.spawn.test.js +0 -70
  3072. package/dist/team/__tests__/tmux-session.spawn.test.js.map +0 -1
  3073. package/dist/team/__tests__/tmux-session.test.d.ts +0 -2
  3074. package/dist/team/__tests__/tmux-session.test.d.ts.map +0 -1
  3075. package/dist/team/__tests__/tmux-session.test.js +0 -298
  3076. package/dist/team/__tests__/tmux-session.test.js.map +0 -1
  3077. package/dist/team/__tests__/unified-team.test.d.ts +0 -2
  3078. package/dist/team/__tests__/unified-team.test.d.ts.map +0 -1
  3079. package/dist/team/__tests__/unified-team.test.js +0 -77
  3080. package/dist/team/__tests__/unified-team.test.js.map +0 -1
  3081. package/dist/team/__tests__/usage-tracker.test.d.ts +0 -2
  3082. package/dist/team/__tests__/usage-tracker.test.d.ts.map +0 -1
  3083. package/dist/team/__tests__/usage-tracker.test.js +0 -104
  3084. package/dist/team/__tests__/usage-tracker.test.js.map +0 -1
  3085. package/dist/team/__tests__/worker-bootstrap.test.d.ts +0 -2
  3086. package/dist/team/__tests__/worker-bootstrap.test.d.ts.map +0 -1
  3087. package/dist/team/__tests__/worker-bootstrap.test.js +0 -143
  3088. package/dist/team/__tests__/worker-bootstrap.test.js.map +0 -1
  3089. package/dist/team/__tests__/worker-canonicalization.test.d.ts +0 -2
  3090. package/dist/team/__tests__/worker-canonicalization.test.d.ts.map +0 -1
  3091. package/dist/team/__tests__/worker-canonicalization.test.js +0 -35
  3092. package/dist/team/__tests__/worker-canonicalization.test.js.map +0 -1
  3093. package/dist/team/__tests__/worker-health.test.d.ts +0 -2
  3094. package/dist/team/__tests__/worker-health.test.d.ts.map +0 -1
  3095. package/dist/team/__tests__/worker-health.test.js +0 -129
  3096. package/dist/team/__tests__/worker-health.test.js.map +0 -1
  3097. package/dist/team/__tests__/worker-restart.test.d.ts +0 -2
  3098. package/dist/team/__tests__/worker-restart.test.d.ts.map +0 -1
  3099. package/dist/team/__tests__/worker-restart.test.js +0 -124
  3100. package/dist/team/__tests__/worker-restart.test.js.map +0 -1
  3101. package/dist/team/activity-log.d.ts +0 -23
  3102. package/dist/team/activity-log.d.ts.map +0 -1
  3103. package/dist/team/activity-log.js +0 -102
  3104. package/dist/team/activity-log.js.map +0 -1
  3105. package/dist/team/allocation-policy.d.ts +0 -34
  3106. package/dist/team/allocation-policy.d.ts.map +0 -1
  3107. package/dist/team/allocation-policy.js +0 -92
  3108. package/dist/team/allocation-policy.js.map +0 -1
  3109. package/dist/team/api-interop.d.ts +0 -20
  3110. package/dist/team/api-interop.d.ts.map +0 -1
  3111. package/dist/team/api-interop.js +0 -797
  3112. package/dist/team/api-interop.js.map +0 -1
  3113. package/dist/team/audit-log.d.ts +0 -29
  3114. package/dist/team/audit-log.d.ts.map +0 -1
  3115. package/dist/team/audit-log.js +0 -93
  3116. package/dist/team/audit-log.js.map +0 -1
  3117. package/dist/team/bridge-entry.d.ts +0 -7
  3118. package/dist/team/bridge-entry.d.ts.map +0 -1
  3119. package/dist/team/bridge-entry.js +0 -193
  3120. package/dist/team/bridge-entry.js.map +0 -1
  3121. package/dist/team/capabilities.d.ts +0 -30
  3122. package/dist/team/capabilities.d.ts.map +0 -1
  3123. package/dist/team/capabilities.js +0 -54
  3124. package/dist/team/capabilities.js.map +0 -1
  3125. package/dist/team/cli-detection.d.ts +0 -9
  3126. package/dist/team/cli-detection.d.ts.map +0 -1
  3127. package/dist/team/cli-detection.js +0 -33
  3128. package/dist/team/cli-detection.js.map +0 -1
  3129. package/dist/team/contracts.d.ts +0 -14
  3130. package/dist/team/contracts.d.ts.map +0 -1
  3131. package/dist/team/contracts.js +0 -32
  3132. package/dist/team/contracts.js.map +0 -1
  3133. package/dist/team/dispatch-queue.d.ts +0 -64
  3134. package/dist/team/dispatch-queue.d.ts.map +0 -1
  3135. package/dist/team/dispatch-queue.js +0 -288
  3136. package/dist/team/dispatch-queue.js.map +0 -1
  3137. package/dist/team/events.d.ts +0 -49
  3138. package/dist/team/events.d.ts.map +0 -1
  3139. package/dist/team/events.js +0 -115
  3140. package/dist/team/events.js.map +0 -1
  3141. package/dist/team/followup-planner.d.ts +0 -32
  3142. package/dist/team/followup-planner.d.ts.map +0 -1
  3143. package/dist/team/followup-planner.js +0 -82
  3144. package/dist/team/followup-planner.js.map +0 -1
  3145. package/dist/team/fs-utils.d.ts +0 -14
  3146. package/dist/team/fs-utils.d.ts.map +0 -1
  3147. package/dist/team/fs-utils.js +0 -91
  3148. package/dist/team/fs-utils.js.map +0 -1
  3149. package/dist/team/git-worktree.d.ts +0 -26
  3150. package/dist/team/git-worktree.d.ts.map +0 -1
  3151. package/dist/team/git-worktree.js +0 -148
  3152. package/dist/team/git-worktree.js.map +0 -1
  3153. package/dist/team/governance.d.ts +0 -18
  3154. package/dist/team/governance.d.ts.map +0 -1
  3155. package/dist/team/governance.js +0 -68
  3156. package/dist/team/governance.js.map +0 -1
  3157. package/dist/team/heartbeat.d.ts +0 -18
  3158. package/dist/team/heartbeat.d.ts.map +0 -1
  3159. package/dist/team/heartbeat.js +0 -110
  3160. package/dist/team/heartbeat.js.map +0 -1
  3161. package/dist/team/idle-nudge.d.ts +0 -53
  3162. package/dist/team/idle-nudge.d.ts.map +0 -1
  3163. package/dist/team/idle-nudge.js +0 -124
  3164. package/dist/team/idle-nudge.js.map +0 -1
  3165. package/dist/team/inbox-outbox.d.ts +0 -58
  3166. package/dist/team/inbox-outbox.d.ts.map +0 -1
  3167. package/dist/team/inbox-outbox.js +0 -338
  3168. package/dist/team/inbox-outbox.js.map +0 -1
  3169. package/dist/team/index.d.ts +0 -69
  3170. package/dist/team/index.d.ts.map +0 -1
  3171. package/dist/team/index.js +0 -49
  3172. package/dist/team/index.js.map +0 -1
  3173. package/dist/team/layout-stabilizer.d.ts +0 -23
  3174. package/dist/team/layout-stabilizer.d.ts.map +0 -1
  3175. package/dist/team/layout-stabilizer.js +0 -117
  3176. package/dist/team/layout-stabilizer.js.map +0 -1
  3177. package/dist/team/leader-nudge-guidance.d.ts +0 -23
  3178. package/dist/team/leader-nudge-guidance.d.ts.map +0 -1
  3179. package/dist/team/leader-nudge-guidance.js +0 -44
  3180. package/dist/team/leader-nudge-guidance.js.map +0 -1
  3181. package/dist/team/mcp-comm.d.ts +0 -99
  3182. package/dist/team/mcp-comm.d.ts.map +0 -1
  3183. package/dist/team/mcp-comm.js +0 -249
  3184. package/dist/team/mcp-comm.js.map +0 -1
  3185. package/dist/team/mcp-team-bridge.d.ts +0 -26
  3186. package/dist/team/mcp-team-bridge.d.ts.map +0 -1
  3187. package/dist/team/mcp-team-bridge.js +0 -869
  3188. package/dist/team/mcp-team-bridge.js.map +0 -1
  3189. package/dist/team/merge-coordinator.d.ts +0 -27
  3190. package/dist/team/merge-coordinator.d.ts.map +0 -1
  3191. package/dist/team/merge-coordinator.js +0 -140
  3192. package/dist/team/merge-coordinator.js.map +0 -1
  3193. package/dist/team/message-router.d.ts +0 -21
  3194. package/dist/team/message-router.d.ts.map +0 -1
  3195. package/dist/team/message-router.js +0 -82
  3196. package/dist/team/message-router.js.map +0 -1
  3197. package/dist/team/model-contract.d.ts +0 -81
  3198. package/dist/team/model-contract.d.ts.map +0 -1
  3199. package/dist/team/model-contract.js +0 -355
  3200. package/dist/team/model-contract.js.map +0 -1
  3201. package/dist/team/monitor.d.ts +0 -45
  3202. package/dist/team/monitor.d.ts.map +0 -1
  3203. package/dist/team/monitor.js +0 -406
  3204. package/dist/team/monitor.js.map +0 -1
  3205. package/dist/team/outbox-reader.d.ts +0 -22
  3206. package/dist/team/outbox-reader.d.ts.map +0 -1
  3207. package/dist/team/outbox-reader.js +0 -116
  3208. package/dist/team/outbox-reader.js.map +0 -1
  3209. package/dist/team/permissions.d.ts +0 -47
  3210. package/dist/team/permissions.d.ts.map +0 -1
  3211. package/dist/team/permissions.js +0 -219
  3212. package/dist/team/permissions.js.map +0 -1
  3213. package/dist/team/phase-controller.d.ts +0 -33
  3214. package/dist/team/phase-controller.d.ts.map +0 -1
  3215. package/dist/team/phase-controller.js +0 -79
  3216. package/dist/team/phase-controller.js.map +0 -1
  3217. package/dist/team/role-router.d.ts +0 -36
  3218. package/dist/team/role-router.d.ts.map +0 -1
  3219. package/dist/team/role-router.js +0 -215
  3220. package/dist/team/role-router.js.map +0 -1
  3221. package/dist/team/runtime-cli.d.ts +0 -33
  3222. package/dist/team/runtime-cli.d.ts.map +0 -1
  3223. package/dist/team/runtime-cli.js +0 -444
  3224. package/dist/team/runtime-cli.js.map +0 -1
  3225. package/dist/team/runtime-v2.d.ts +0 -127
  3226. package/dist/team/runtime-v2.d.ts.map +0 -1
  3227. package/dist/team/runtime-v2.js +0 -1053
  3228. package/dist/team/runtime-v2.js.map +0 -1
  3229. package/dist/team/runtime.d.ts +0 -102
  3230. package/dist/team/runtime.d.ts.map +0 -1
  3231. package/dist/team/runtime.js +0 -824
  3232. package/dist/team/runtime.js.map +0 -1
  3233. package/dist/team/scaling.d.ts +0 -59
  3234. package/dist/team/scaling.d.ts.map +0 -1
  3235. package/dist/team/scaling.js +0 -320
  3236. package/dist/team/scaling.js.map +0 -1
  3237. package/dist/team/sentinel-gate.d.ts +0 -23
  3238. package/dist/team/sentinel-gate.d.ts.map +0 -1
  3239. package/dist/team/sentinel-gate.js +0 -127
  3240. package/dist/team/sentinel-gate.js.map +0 -1
  3241. package/dist/team/state/tasks.d.ts +0 -48
  3242. package/dist/team/state/tasks.d.ts.map +0 -1
  3243. package/dist/team/state/tasks.js +0 -184
  3244. package/dist/team/state/tasks.js.map +0 -1
  3245. package/dist/team/state-paths.d.ts +0 -88
  3246. package/dist/team/state-paths.d.ts.map +0 -1
  3247. package/dist/team/state-paths.js +0 -110
  3248. package/dist/team/state-paths.js.map +0 -1
  3249. package/dist/team/summary-report.d.ts +0 -11
  3250. package/dist/team/summary-report.d.ts.map +0 -1
  3251. package/dist/team/summary-report.js +0 -101
  3252. package/dist/team/summary-report.js.map +0 -1
  3253. package/dist/team/task-file-ops.d.ts +0 -97
  3254. package/dist/team/task-file-ops.d.ts.map +0 -1
  3255. package/dist/team/task-file-ops.js +0 -388
  3256. package/dist/team/task-file-ops.js.map +0 -1
  3257. package/dist/team/task-router.d.ts +0 -28
  3258. package/dist/team/task-router.d.ts.map +0 -1
  3259. package/dist/team/task-router.js +0 -91
  3260. package/dist/team/task-router.js.map +0 -1
  3261. package/dist/team/team-name.d.ts +0 -2
  3262. package/dist/team/team-name.d.ts.map +0 -1
  3263. package/dist/team/team-name.js +0 -8
  3264. package/dist/team/team-name.js.map +0 -1
  3265. package/dist/team/team-ops.d.ts +0 -44
  3266. package/dist/team/team-ops.d.ts.map +0 -1
  3267. package/dist/team/team-ops.js +0 -591
  3268. package/dist/team/team-ops.js.map +0 -1
  3269. package/dist/team/team-registration.d.ts +0 -30
  3270. package/dist/team/team-registration.d.ts.map +0 -1
  3271. package/dist/team/team-registration.js +0 -191
  3272. package/dist/team/team-registration.js.map +0 -1
  3273. package/dist/team/team-status.d.ts +0 -39
  3274. package/dist/team/team-status.d.ts.map +0 -1
  3275. package/dist/team/team-status.js +0 -127
  3276. package/dist/team/team-status.js.map +0 -1
  3277. package/dist/team/tmux-comm.d.ts +0 -36
  3278. package/dist/team/tmux-comm.d.ts.map +0 -1
  3279. package/dist/team/tmux-comm.js +0 -181
  3280. package/dist/team/tmux-comm.js.map +0 -1
  3281. package/dist/team/tmux-session.d.ts +0 -156
  3282. package/dist/team/tmux-session.d.ts.map +0 -1
  3283. package/dist/team/tmux-session.js +0 -886
  3284. package/dist/team/tmux-session.js.map +0 -1
  3285. package/dist/team/types.d.ts +0 -438
  3286. package/dist/team/types.d.ts.map +0 -1
  3287. package/dist/team/types.js +0 -4
  3288. package/dist/team/types.js.map +0 -1
  3289. package/dist/team/unified-team.d.ts +0 -16
  3290. package/dist/team/unified-team.d.ts.map +0 -1
  3291. package/dist/team/unified-team.js +0 -92
  3292. package/dist/team/unified-team.js.map +0 -1
  3293. package/dist/team/usage-tracker.d.ts +0 -44
  3294. package/dist/team/usage-tracker.d.ts.map +0 -1
  3295. package/dist/team/usage-tracker.js +0 -102
  3296. package/dist/team/usage-tracker.js.map +0 -1
  3297. package/dist/team/worker-bootstrap.d.ts +0 -41
  3298. package/dist/team/worker-bootstrap.d.ts.map +0 -1
  3299. package/dist/team/worker-bootstrap.js +0 -216
  3300. package/dist/team/worker-bootstrap.js.map +0 -1
  3301. package/dist/team/worker-canonicalization.d.ts +0 -8
  3302. package/dist/team/worker-canonicalization.d.ts.map +0 -1
  3303. package/dist/team/worker-canonicalization.js +0 -98
  3304. package/dist/team/worker-canonicalization.js.map +0 -1
  3305. package/dist/team/worker-health.d.ts +0 -29
  3306. package/dist/team/worker-health.d.ts.map +0 -1
  3307. package/dist/team/worker-health.js +0 -116
  3308. package/dist/team/worker-health.js.map +0 -1
  3309. package/dist/team/worker-restart.d.ts +0 -38
  3310. package/dist/team/worker-restart.d.ts.map +0 -1
  3311. package/dist/team/worker-restart.js +0 -100
  3312. package/dist/team/worker-restart.js.map +0 -1
  3313. package/dist/testing/analyzers/complexity.d.ts +0 -18
  3314. package/dist/testing/analyzers/complexity.d.ts.map +0 -1
  3315. package/dist/testing/analyzers/complexity.js +0 -121
  3316. package/dist/testing/analyzers/complexity.js.map +0 -1
  3317. package/dist/testing/analyzers/coverage.d.ts +0 -13
  3318. package/dist/testing/analyzers/coverage.d.ts.map +0 -1
  3319. package/dist/testing/analyzers/coverage.js +0 -99
  3320. package/dist/testing/analyzers/coverage.js.map +0 -1
  3321. package/dist/testing/analyzers/quality-scorer.d.ts +0 -8
  3322. package/dist/testing/analyzers/quality-scorer.d.ts.map +0 -1
  3323. package/dist/testing/analyzers/quality-scorer.js +0 -128
  3324. package/dist/testing/analyzers/quality-scorer.js.map +0 -1
  3325. package/dist/testing/analyzers/types.d.ts +0 -56
  3326. package/dist/testing/analyzers/types.d.ts.map +0 -1
  3327. package/dist/testing/analyzers/types.js +0 -2
  3328. package/dist/testing/analyzers/types.js.map +0 -1
  3329. package/dist/testing/cli/agent-integration.d.ts +0 -20
  3330. package/dist/testing/cli/agent-integration.d.ts.map +0 -1
  3331. package/dist/testing/cli/agent-integration.js +0 -60
  3332. package/dist/testing/cli/agent-integration.js.map +0 -1
  3333. package/dist/testing/cli/commands.d.ts +0 -89
  3334. package/dist/testing/cli/commands.d.ts.map +0 -1
  3335. package/dist/testing/cli/commands.js +0 -228
  3336. package/dist/testing/cli/commands.js.map +0 -1
  3337. package/dist/testing/cli/ultraqa-integration.d.ts +0 -13
  3338. package/dist/testing/cli/ultraqa-integration.d.ts.map +0 -1
  3339. package/dist/testing/cli/ultraqa-integration.js +0 -68
  3340. package/dist/testing/cli/ultraqa-integration.js.map +0 -1
  3341. package/dist/testing/detectors/go.d.ts +0 -3
  3342. package/dist/testing/detectors/go.d.ts.map +0 -1
  3343. package/dist/testing/detectors/go.js +0 -38
  3344. package/dist/testing/detectors/go.js.map +0 -1
  3345. package/dist/testing/detectors/index.d.ts +0 -8
  3346. package/dist/testing/detectors/index.d.ts.map +0 -1
  3347. package/dist/testing/detectors/index.js +0 -46
  3348. package/dist/testing/detectors/index.js.map +0 -1
  3349. package/dist/testing/detectors/package-json.d.ts +0 -3
  3350. package/dist/testing/detectors/package-json.d.ts.map +0 -1
  3351. package/dist/testing/detectors/package-json.js +0 -52
  3352. package/dist/testing/detectors/package-json.js.map +0 -1
  3353. package/dist/testing/detectors/python.d.ts +0 -3
  3354. package/dist/testing/detectors/python.d.ts.map +0 -1
  3355. package/dist/testing/detectors/python.js +0 -37
  3356. package/dist/testing/detectors/python.js.map +0 -1
  3357. package/dist/testing/detectors/rust.d.ts +0 -3
  3358. package/dist/testing/detectors/rust.d.ts.map +0 -1
  3359. package/dist/testing/detectors/rust.js +0 -39
  3360. package/dist/testing/detectors/rust.js.map +0 -1
  3361. package/dist/testing/generators/contract.d.ts +0 -14
  3362. package/dist/testing/generators/contract.d.ts.map +0 -1
  3363. package/dist/testing/generators/contract.js +0 -163
  3364. package/dist/testing/generators/contract.js.map +0 -1
  3365. package/dist/testing/generators/e2e.d.ts +0 -34
  3366. package/dist/testing/generators/e2e.d.ts.map +0 -1
  3367. package/dist/testing/generators/e2e.js +0 -74
  3368. package/dist/testing/generators/e2e.js.map +0 -1
  3369. package/dist/testing/generators/go.d.ts +0 -12
  3370. package/dist/testing/generators/go.d.ts.map +0 -1
  3371. package/dist/testing/generators/go.js +0 -144
  3372. package/dist/testing/generators/go.js.map +0 -1
  3373. package/dist/testing/generators/nodejs.d.ts +0 -12
  3374. package/dist/testing/generators/nodejs.d.ts.map +0 -1
  3375. package/dist/testing/generators/nodejs.js +0 -37
  3376. package/dist/testing/generators/nodejs.js.map +0 -1
  3377. package/dist/testing/generators/python.d.ts +0 -12
  3378. package/dist/testing/generators/python.d.ts.map +0 -1
  3379. package/dist/testing/generators/python.js +0 -163
  3380. package/dist/testing/generators/python.js.map +0 -1
  3381. package/dist/testing/generators/react.d.ts +0 -12
  3382. package/dist/testing/generators/react.d.ts.map +0 -1
  3383. package/dist/testing/generators/react.js +0 -31
  3384. package/dist/testing/generators/react.js.map +0 -1
  3385. package/dist/testing/generators/rust.d.ts +0 -11
  3386. package/dist/testing/generators/rust.d.ts.map +0 -1
  3387. package/dist/testing/generators/rust.js +0 -138
  3388. package/dist/testing/generators/rust.js.map +0 -1
  3389. package/dist/testing/index.d.ts +0 -6
  3390. package/dist/testing/index.d.ts.map +0 -1
  3391. package/dist/testing/index.js +0 -11
  3392. package/dist/testing/index.js.map +0 -1
  3393. package/dist/testing/integrations/autopilot.d.ts +0 -42
  3394. package/dist/testing/integrations/autopilot.d.ts.map +0 -1
  3395. package/dist/testing/integrations/autopilot.js +0 -55
  3396. package/dist/testing/integrations/autopilot.js.map +0 -1
  3397. package/dist/testing/integrations/cicd.d.ts +0 -26
  3398. package/dist/testing/integrations/cicd.d.ts.map +0 -1
  3399. package/dist/testing/integrations/cicd.js +0 -162
  3400. package/dist/testing/integrations/cicd.js.map +0 -1
  3401. package/dist/testing/integrations/giskard/behavioral-tests.d.ts +0 -4
  3402. package/dist/testing/integrations/giskard/behavioral-tests.d.ts.map +0 -1
  3403. package/dist/testing/integrations/giskard/behavioral-tests.js +0 -66
  3404. package/dist/testing/integrations/giskard/behavioral-tests.js.map +0 -1
  3405. package/dist/testing/integrations/giskard/types.d.ts +0 -35
  3406. package/dist/testing/integrations/giskard/types.d.ts.map +0 -1
  3407. package/dist/testing/integrations/giskard/types.js +0 -2
  3408. package/dist/testing/integrations/giskard/types.js.map +0 -1
  3409. package/dist/testing/integrations/ralph.d.ts +0 -65
  3410. package/dist/testing/integrations/ralph.d.ts.map +0 -1
  3411. package/dist/testing/integrations/ralph.js +0 -69
  3412. package/dist/testing/integrations/ralph.js.map +0 -1
  3413. package/dist/testing/performance/cache-manager.d.ts +0 -16
  3414. package/dist/testing/performance/cache-manager.d.ts.map +0 -1
  3415. package/dist/testing/performance/cache-manager.js +0 -39
  3416. package/dist/testing/performance/cache-manager.js.map +0 -1
  3417. package/dist/testing/performance/parallel-generator.d.ts +0 -23
  3418. package/dist/testing/performance/parallel-generator.d.ts.map +0 -1
  3419. package/dist/testing/performance/parallel-generator.js +0 -31
  3420. package/dist/testing/performance/parallel-generator.js.map +0 -1
  3421. package/dist/testing/types.d.ts +0 -23
  3422. package/dist/testing/types.d.ts.map +0 -1
  3423. package/dist/testing/types.js +0 -2
  3424. package/dist/testing/types.js.map +0 -1
  3425. package/dist/tools/__tests__/cancel-integration.test.d.ts +0 -2
  3426. package/dist/tools/__tests__/cancel-integration.test.d.ts.map +0 -1
  3427. package/dist/tools/__tests__/cancel-integration.test.js +0 -303
  3428. package/dist/tools/__tests__/cancel-integration.test.js.map +0 -1
  3429. package/dist/tools/__tests__/deepinit-manifest.test.d.ts +0 -7
  3430. package/dist/tools/__tests__/deepinit-manifest.test.d.ts.map +0 -1
  3431. package/dist/tools/__tests__/deepinit-manifest.test.js +0 -559
  3432. package/dist/tools/__tests__/deepinit-manifest.test.js.map +0 -1
  3433. package/dist/tools/__tests__/memory-tools.test.d.ts +0 -2
  3434. package/dist/tools/__tests__/memory-tools.test.d.ts.map +0 -1
  3435. package/dist/tools/__tests__/memory-tools.test.js +0 -94
  3436. package/dist/tools/__tests__/memory-tools.test.js.map +0 -1
  3437. package/dist/tools/__tests__/schema-conversion.test.d.ts +0 -11
  3438. package/dist/tools/__tests__/schema-conversion.test.d.ts.map +0 -1
  3439. package/dist/tools/__tests__/schema-conversion.test.js +0 -270
  3440. package/dist/tools/__tests__/schema-conversion.test.js.map +0 -1
  3441. package/dist/tools/__tests__/state-tools.test.d.ts +0 -2
  3442. package/dist/tools/__tests__/state-tools.test.d.ts.map +0 -1
  3443. package/dist/tools/__tests__/state-tools.test.js +0 -450
  3444. package/dist/tools/__tests__/state-tools.test.js.map +0 -1
  3445. package/dist/tools/ast-tools.d.ts +0 -63
  3446. package/dist/tools/ast-tools.d.ts.map +0 -1
  3447. package/dist/tools/ast-tools.js +0 -507
  3448. package/dist/tools/ast-tools.js.map +0 -1
  3449. package/dist/tools/deepinit-manifest.d.ts +0 -88
  3450. package/dist/tools/deepinit-manifest.d.ts.map +0 -1
  3451. package/dist/tools/deepinit-manifest.js +0 -373
  3452. package/dist/tools/deepinit-manifest.js.map +0 -1
  3453. package/dist/tools/diagnostics/index.d.ts +0 -29
  3454. package/dist/tools/diagnostics/index.d.ts.map +0 -1
  3455. package/dist/tools/diagnostics/index.js +0 -118
  3456. package/dist/tools/diagnostics/index.js.map +0 -1
  3457. package/dist/tools/diagnostics/lsp-aggregator.d.ts +0 -26
  3458. package/dist/tools/diagnostics/lsp-aggregator.d.ts.map +0 -1
  3459. package/dist/tools/diagnostics/lsp-aggregator.js +0 -99
  3460. package/dist/tools/diagnostics/lsp-aggregator.js.map +0 -1
  3461. package/dist/tools/diagnostics/tsc-runner.d.ts +0 -26
  3462. package/dist/tools/diagnostics/tsc-runner.d.ts.map +0 -1
  3463. package/dist/tools/diagnostics/tsc-runner.js +0 -70
  3464. package/dist/tools/diagnostics/tsc-runner.js.map +0 -1
  3465. package/dist/tools/index.d.ts +0 -53
  3466. package/dist/tools/index.d.ts.map +0 -1
  3467. package/dist/tools/index.js +0 -123
  3468. package/dist/tools/index.js.map +0 -1
  3469. package/dist/tools/lsp/__tests__/client-devcontainer.test.d.ts +0 -2
  3470. package/dist/tools/lsp/__tests__/client-devcontainer.test.d.ts.map +0 -1
  3471. package/dist/tools/lsp/__tests__/client-devcontainer.test.js +0 -185
  3472. package/dist/tools/lsp/__tests__/client-devcontainer.test.js.map +0 -1
  3473. package/dist/tools/lsp/__tests__/client-eviction.test.d.ts +0 -2
  3474. package/dist/tools/lsp/__tests__/client-eviction.test.d.ts.map +0 -1
  3475. package/dist/tools/lsp/__tests__/client-eviction.test.js +0 -343
  3476. package/dist/tools/lsp/__tests__/client-eviction.test.js.map +0 -1
  3477. package/dist/tools/lsp/__tests__/client-handle-data.test.d.ts +0 -2
  3478. package/dist/tools/lsp/__tests__/client-handle-data.test.d.ts.map +0 -1
  3479. package/dist/tools/lsp/__tests__/client-handle-data.test.js +0 -138
  3480. package/dist/tools/lsp/__tests__/client-handle-data.test.js.map +0 -1
  3481. package/dist/tools/lsp/__tests__/client-singleton.test.d.ts +0 -2
  3482. package/dist/tools/lsp/__tests__/client-singleton.test.d.ts.map +0 -1
  3483. package/dist/tools/lsp/__tests__/client-singleton.test.js +0 -17
  3484. package/dist/tools/lsp/__tests__/client-singleton.test.js.map +0 -1
  3485. package/dist/tools/lsp/__tests__/client-timeout-env.test.d.ts +0 -2
  3486. package/dist/tools/lsp/__tests__/client-timeout-env.test.d.ts.map +0 -1
  3487. package/dist/tools/lsp/__tests__/client-timeout-env.test.js +0 -55
  3488. package/dist/tools/lsp/__tests__/client-timeout-env.test.js.map +0 -1
  3489. package/dist/tools/lsp/__tests__/client-win32-spawn.test.d.ts +0 -2
  3490. package/dist/tools/lsp/__tests__/client-win32-spawn.test.d.ts.map +0 -1
  3491. package/dist/tools/lsp/__tests__/client-win32-spawn.test.js +0 -84
  3492. package/dist/tools/lsp/__tests__/client-win32-spawn.test.js.map +0 -1
  3493. package/dist/tools/lsp/__tests__/devcontainer.test.d.ts +0 -2
  3494. package/dist/tools/lsp/__tests__/devcontainer.test.d.ts.map +0 -1
  3495. package/dist/tools/lsp/__tests__/devcontainer.test.js +0 -311
  3496. package/dist/tools/lsp/__tests__/devcontainer.test.js.map +0 -1
  3497. package/dist/tools/lsp/client.d.ts +0 -278
  3498. package/dist/tools/lsp/client.d.ts.map +0 -1
  3499. package/dist/tools/lsp/client.js +0 -873
  3500. package/dist/tools/lsp/client.js.map +0 -1
  3501. package/dist/tools/lsp/devcontainer.d.ts +0 -12
  3502. package/dist/tools/lsp/devcontainer.d.ts.map +0 -1
  3503. package/dist/tools/lsp/devcontainer.js +0 -276
  3504. package/dist/tools/lsp/devcontainer.js.map +0 -1
  3505. package/dist/tools/lsp/index.d.ts +0 -11
  3506. package/dist/tools/lsp/index.d.ts.map +0 -1
  3507. package/dist/tools/lsp/index.js +0 -8
  3508. package/dist/tools/lsp/index.js.map +0 -1
  3509. package/dist/tools/lsp/servers.d.ts +0 -38
  3510. package/dist/tools/lsp/servers.d.ts.map +0 -1
  3511. package/dist/tools/lsp/servers.js +0 -237
  3512. package/dist/tools/lsp/servers.js.map +0 -1
  3513. package/dist/tools/lsp/utils.d.ts +0 -58
  3514. package/dist/tools/lsp/utils.d.ts.map +0 -1
  3515. package/dist/tools/lsp/utils.js +0 -248
  3516. package/dist/tools/lsp/utils.js.map +0 -1
  3517. package/dist/tools/lsp-tools.d.ts +0 -151
  3518. package/dist/tools/lsp-tools.d.ts.map +0 -1
  3519. package/dist/tools/lsp-tools.js +0 -410
  3520. package/dist/tools/lsp-tools.js.map +0 -1
  3521. package/dist/tools/memory-tools.d.ts +0 -48
  3522. package/dist/tools/memory-tools.d.ts.map +0 -1
  3523. package/dist/tools/memory-tools.js +0 -231
  3524. package/dist/tools/memory-tools.js.map +0 -1
  3525. package/dist/tools/notepad-tools.d.ts +0 -49
  3526. package/dist/tools/notepad-tools.d.ts.map +0 -1
  3527. package/dist/tools/notepad-tools.js +0 -303
  3528. package/dist/tools/notepad-tools.js.map +0 -1
  3529. package/dist/tools/python-repl/__tests__/bridge-manager-cleanup.test.d.ts +0 -2
  3530. package/dist/tools/python-repl/__tests__/bridge-manager-cleanup.test.d.ts.map +0 -1
  3531. package/dist/tools/python-repl/__tests__/bridge-manager-cleanup.test.js +0 -109
  3532. package/dist/tools/python-repl/__tests__/bridge-manager-cleanup.test.js.map +0 -1
  3533. package/dist/tools/python-repl/__tests__/tcp-fallback.test.d.ts +0 -2
  3534. package/dist/tools/python-repl/__tests__/tcp-fallback.test.d.ts.map +0 -1
  3535. package/dist/tools/python-repl/__tests__/tcp-fallback.test.js +0 -138
  3536. package/dist/tools/python-repl/__tests__/tcp-fallback.test.js.map +0 -1
  3537. package/dist/tools/python-repl/bridge-manager.d.ts +0 -93
  3538. package/dist/tools/python-repl/bridge-manager.d.ts.map +0 -1
  3539. package/dist/tools/python-repl/bridge-manager.js +0 -744
  3540. package/dist/tools/python-repl/bridge-manager.js.map +0 -1
  3541. package/dist/tools/python-repl/index.d.ts +0 -40
  3542. package/dist/tools/python-repl/index.d.ts.map +0 -1
  3543. package/dist/tools/python-repl/index.js +0 -36
  3544. package/dist/tools/python-repl/index.js.map +0 -1
  3545. package/dist/tools/python-repl/paths.d.ts +0 -92
  3546. package/dist/tools/python-repl/paths.d.ts.map +0 -1
  3547. package/dist/tools/python-repl/paths.js +0 -228
  3548. package/dist/tools/python-repl/paths.js.map +0 -1
  3549. package/dist/tools/python-repl/session-lock.d.ts +0 -111
  3550. package/dist/tools/python-repl/session-lock.d.ts.map +0 -1
  3551. package/dist/tools/python-repl/session-lock.js +0 -494
  3552. package/dist/tools/python-repl/session-lock.js.map +0 -1
  3553. package/dist/tools/python-repl/socket-client.d.ts +0 -42
  3554. package/dist/tools/python-repl/socket-client.d.ts.map +0 -1
  3555. package/dist/tools/python-repl/socket-client.js +0 -194
  3556. package/dist/tools/python-repl/socket-client.js.map +0 -1
  3557. package/dist/tools/python-repl/tool.d.ts +0 -100
  3558. package/dist/tools/python-repl/tool.d.ts.map +0 -1
  3559. package/dist/tools/python-repl/tool.js +0 -571
  3560. package/dist/tools/python-repl/tool.js.map +0 -1
  3561. package/dist/tools/python-repl/types.d.ts +0 -95
  3562. package/dist/tools/python-repl/types.d.ts.map +0 -1
  3563. package/dist/tools/python-repl/types.js +0 -2
  3564. package/dist/tools/python-repl/types.js.map +0 -1
  3565. package/dist/tools/resume-session.d.ts +0 -63
  3566. package/dist/tools/resume-session.d.ts.map +0 -1
  3567. package/dist/tools/resume-session.js +0 -106
  3568. package/dist/tools/resume-session.js.map +0 -1
  3569. package/dist/tools/session-history-tools.d.ts +0 -23
  3570. package/dist/tools/session-history-tools.d.ts.map +0 -1
  3571. package/dist/tools/session-history-tools.js +0 -41
  3572. package/dist/tools/session-history-tools.js.map +0 -1
  3573. package/dist/tools/shared-memory-tools.d.ts +0 -55
  3574. package/dist/tools/shared-memory-tools.d.ts.map +0 -1
  3575. package/dist/tools/shared-memory-tools.js +0 -250
  3576. package/dist/tools/shared-memory-tools.js.map +0 -1
  3577. package/dist/tools/skills-tools.d.ts +0 -75
  3578. package/dist/tools/skills-tools.d.ts.map +0 -1
  3579. package/dist/tools/skills-tools.js +0 -151
  3580. package/dist/tools/skills-tools.js.map +0 -1
  3581. package/dist/tools/state-tools.d.ts +0 -74
  3582. package/dist/tools/state-tools.d.ts.map +0 -1
  3583. package/dist/tools/state-tools.js +0 -888
  3584. package/dist/tools/state-tools.js.map +0 -1
  3585. package/dist/tools/trace-tools.d.ts +0 -40
  3586. package/dist/tools/trace-tools.d.ts.map +0 -1
  3587. package/dist/tools/trace-tools.js +0 -415
  3588. package/dist/tools/trace-tools.js.map +0 -1
  3589. package/dist/tools/types.d.ts +0 -48
  3590. package/dist/tools/types.d.ts.map +0 -1
  3591. package/dist/tools/types.js +0 -8
  3592. package/dist/tools/types.js.map +0 -1
  3593. package/dist/utils/__tests__/frontmatter.test.d.ts +0 -2
  3594. package/dist/utils/__tests__/frontmatter.test.d.ts.map +0 -1
  3595. package/dist/utils/__tests__/frontmatter.test.js +0 -147
  3596. package/dist/utils/__tests__/frontmatter.test.js.map +0 -1
  3597. package/dist/utils/__tests__/paths.test.d.ts +0 -2
  3598. package/dist/utils/__tests__/paths.test.d.ts.map +0 -1
  3599. package/dist/utils/__tests__/paths.test.js +0 -173
  3600. package/dist/utils/__tests__/paths.test.js.map +0 -1
  3601. package/dist/utils/__tests__/string-width.test.d.ts +0 -6
  3602. package/dist/utils/__tests__/string-width.test.d.ts.map +0 -1
  3603. package/dist/utils/__tests__/string-width.test.js +0 -173
  3604. package/dist/utils/__tests__/string-width.test.js.map +0 -1
  3605. package/dist/utils/config-dir.d.ts +0 -2
  3606. package/dist/utils/config-dir.d.ts.map +0 -1
  3607. package/dist/utils/config-dir.js +0 -6
  3608. package/dist/utils/config-dir.js.map +0 -1
  3609. package/dist/utils/daemon-module-path.d.ts +0 -9
  3610. package/dist/utils/daemon-module-path.d.ts.map +0 -1
  3611. package/dist/utils/daemon-module-path.js +0 -23
  3612. package/dist/utils/daemon-module-path.js.map +0 -1
  3613. package/dist/utils/frontmatter.d.ts +0 -29
  3614. package/dist/utils/frontmatter.d.ts.map +0 -1
  3615. package/dist/utils/frontmatter.js +0 -84
  3616. package/dist/utils/frontmatter.js.map +0 -1
  3617. package/dist/utils/jsonc.d.ts +0 -16
  3618. package/dist/utils/jsonc.d.ts.map +0 -1
  3619. package/dist/utils/jsonc.js +0 -68
  3620. package/dist/utils/jsonc.js.map +0 -1
  3621. package/dist/utils/omc-cli-rendering.d.ts +0 -8
  3622. package/dist/utils/omc-cli-rendering.d.ts.map +0 -1
  3623. package/dist/utils/omc-cli-rendering.js +0 -37
  3624. package/dist/utils/omc-cli-rendering.js.map +0 -1
  3625. package/dist/utils/paths.d.ts +0 -92
  3626. package/dist/utils/paths.d.ts.map +0 -1
  3627. package/dist/utils/paths.js +0 -308
  3628. package/dist/utils/paths.js.map +0 -1
  3629. package/dist/utils/resolve-node.d.ts +0 -26
  3630. package/dist/utils/resolve-node.d.ts.map +0 -1
  3631. package/dist/utils/resolve-node.js +0 -112
  3632. package/dist/utils/resolve-node.js.map +0 -1
  3633. package/dist/utils/skill-pipeline.d.ts +0 -9
  3634. package/dist/utils/skill-pipeline.d.ts.map +0 -1
  3635. package/dist/utils/skill-pipeline.js +0 -97
  3636. package/dist/utils/skill-pipeline.js.map +0 -1
  3637. package/dist/utils/skill-resources.d.ts +0 -7
  3638. package/dist/utils/skill-resources.d.ts.map +0 -1
  3639. package/dist/utils/skill-resources.js +0 -53
  3640. package/dist/utils/skill-resources.js.map +0 -1
  3641. package/dist/utils/ssrf-guard.d.ts +0 -26
  3642. package/dist/utils/ssrf-guard.d.ts.map +0 -1
  3643. package/dist/utils/ssrf-guard.js +0 -125
  3644. package/dist/utils/ssrf-guard.js.map +0 -1
  3645. package/dist/utils/string-width.d.ts +0 -80
  3646. package/dist/utils/string-width.d.ts.map +0 -1
  3647. package/dist/utils/string-width.js +0 -230
  3648. package/dist/utils/string-width.js.map +0 -1
  3649. package/dist/verification/tier-selector.d.ts +0 -40
  3650. package/dist/verification/tier-selector.d.ts.map +0 -1
  3651. package/dist/verification/tier-selector.js +0 -95
  3652. package/dist/verification/tier-selector.js.map +0 -1
  3653. package/dist/verification/tier-selector.test.d.ts +0 -2
  3654. package/dist/verification/tier-selector.test.d.ts.map +0 -1
  3655. package/dist/verification/tier-selector.test.js +0 -282
  3656. package/dist/verification/tier-selector.test.js.map +0 -1
  3657. package/docs/2026-03-06-llm-testing-system-phase1.md +0 -0
  3658. package/docs/AGENTS.md +0 -102
  3659. package/docs/ANALYTICS-SYSTEM.md +0 -38
  3660. package/docs/ARCHITECTURE.md +0 -583
  3661. package/docs/CJK-IME-KNOWN-ISSUES.md +0 -179
  3662. package/docs/CLAUDE.md +0 -85
  3663. package/docs/COMPATIBILITY.md +0 -1068
  3664. package/docs/DELEGATION-ENFORCER.md +0 -277
  3665. package/docs/FEATURES.md +0 -582
  3666. package/docs/LOCAL_PLUGIN_INSTALL.md +0 -108
  3667. package/docs/MIGRATION.md +0 -987
  3668. package/docs/OPENCLAW-ROUTING.md +0 -102
  3669. package/docs/PERFORMANCE-MONITORING.md +0 -505
  3670. package/docs/REFERENCE.md +0 -843
  3671. package/docs/SYNC-SYSTEM.md +0 -526
  3672. package/docs/TIERED_AGENTS_V2.md +0 -323
  3673. package/docs/agent-templates/README.md +0 -110
  3674. package/docs/agent-templates/base-agent.md +0 -63
  3675. package/docs/agent-templates/tier-instructions.md +0 -94
  3676. package/docs/design/CONSOLIDATION_PHASE3_ROADMAP.md +0 -97
  3677. package/docs/design/SKILLS_2_0_ADAPTATION.md +0 -115
  3678. package/docs/design/SKILL_AUDIT_1445.md +0 -75
  3679. package/docs/design/project-session-manager.md +0 -1033
  3680. package/docs/fixes/agent-prefix-routing-fix.md +0 -105
  3681. package/docs/issues/windows-hud-missing.png +0 -0
  3682. package/docs/ko/ARCHITECTURE.md +0 -152
  3683. package/docs/ko/FEATURES.md +0 -582
  3684. package/docs/ko/MIGRATION.md +0 -987
  3685. package/docs/ko/REFERENCE.md +0 -723
  3686. package/docs/partials/agent-tiers.md +0 -156
  3687. package/docs/partials/features.md +0 -122
  3688. package/docs/partials/mode-hierarchy.md +0 -105
  3689. package/docs/partials/mode-selection-guide.md +0 -92
  3690. package/docs/partials/verification-tiers.md +0 -107
  3691. package/docs/plans/2026-02-26-skill-optimization-design.md +0 -158
  3692. package/docs/plans/2026-02-26-skill-optimization-impl.md +0 -606
  3693. package/docs/plans/2026-03-06-llm-testing-system-design.md +0 -311
  3694. package/docs/plans/2026-03-06-llm-testing-system-phase1.md +0 -1268
  3695. package/docs/plans/2026-03-06-llm-testing-system-phase2.md +0 -3053
  3696. package/docs/plans/2026-03-06-llm-testing-system-phase3.md +0 -1830
  3697. package/docs/shared/agent-tiers.md +0 -156
  3698. package/docs/shared/features.md +0 -122
  3699. package/docs/shared/mode-hierarchy.md +0 -105
  3700. package/docs/shared/mode-selection-guide.md +0 -92
  3701. package/docs/shared/verification-tiers.md +0 -107
  3702. package/docs/testing/IMPLEMENTATION.md +0 -804
  3703. package/docs/testing/PHASE2.md +0 -266
  3704. package/docs/testing/PHASE3.md +0 -601
  3705. package/docs/testing/README.md +0 -634
  3706. package/scripts/build-bridge-entry.mjs +0 -52
  3707. package/scripts/build-cli.mjs +0 -47
  3708. package/scripts/build-mcp-server.mjs +0 -54
  3709. package/scripts/build-runtime-cli.mjs +0 -26
  3710. package/scripts/build-skill-bridge.mjs +0 -32
  3711. package/scripts/build-team-server.mjs +0 -28
  3712. package/scripts/cleanup-orphans.mjs +0 -209
  3713. package/scripts/code-simplifier.mjs +0 -193
  3714. package/scripts/compose-docs.mjs +0 -44
  3715. package/scripts/context-guard-stop.mjs +0 -268
  3716. package/scripts/context-safety.mjs +0 -28
  3717. package/scripts/demo-team.mjs +0 -26
  3718. package/scripts/eval-autoresearch-json.mjs +0 -49
  3719. package/scripts/eval-autoresearch-timed-json.mjs +0 -62
  3720. package/scripts/find-node.sh +0 -90
  3721. package/scripts/generate-featured-contributors.ts +0 -43
  3722. package/scripts/keyword-detector.mjs +0 -647
  3723. package/scripts/lib/atomic-write.mjs +0 -95
  3724. package/scripts/lib/stdin.mjs +0 -64
  3725. package/scripts/openclaw-gateway-demo.mjs +0 -168
  3726. package/scripts/permission-handler.mjs +0 -21
  3727. package/scripts/persistent-mode.cjs +0 -1098
  3728. package/scripts/persistent-mode.mjs +0 -963
  3729. package/scripts/plugin-setup.mjs +0 -265
  3730. package/scripts/post-tool-use-failure.mjs +0 -177
  3731. package/scripts/post-tool-verifier.mjs +0 -498
  3732. package/scripts/pre-compact.mjs +0 -21
  3733. package/scripts/pre-tool-enforcer.mjs +0 -699
  3734. package/scripts/project-memory-posttool.mjs +0 -79
  3735. package/scripts/project-memory-precompact.mjs +0 -33
  3736. package/scripts/project-memory-session.mjs +0 -80
  3737. package/scripts/qa-tests/test-custom-integration.mjs +0 -144
  3738. package/scripts/release.ts +0 -511
  3739. package/scripts/run-provider-advisor.js +0 -253
  3740. package/scripts/run.cjs +0 -114
  3741. package/scripts/session-end.mjs +0 -22
  3742. package/scripts/session-start.mjs +0 -676
  3743. package/scripts/session-summary.mjs +0 -241
  3744. package/scripts/setup-claude-md.sh +0 -296
  3745. package/scripts/setup-init.mjs +0 -21
  3746. package/scripts/setup-maintenance.mjs +0 -21
  3747. package/scripts/setup-progress.sh +0 -123
  3748. package/scripts/skill-injector.mjs +0 -293
  3749. package/scripts/status.mjs +0 -144
  3750. package/scripts/subagent-tracker.mjs +0 -34
  3751. package/scripts/sync-metadata.ts +0 -407
  3752. package/scripts/sync-version.sh +0 -42
  3753. package/scripts/test-max-attempts.ts +0 -94
  3754. package/scripts/test-mutual-exclusion.ts +0 -152
  3755. package/scripts/test-notepad-integration.ts +0 -495
  3756. package/scripts/test-pr25.sh +0 -525
  3757. package/scripts/test-remember-tags.ts +0 -121
  3758. package/scripts/test-session-injection.ts +0 -41
  3759. package/scripts/uninstall.sh +0 -169
  3760. package/scripts/verify-deliverables.mjs +0 -234
  3761. package/skills/planning-with-files/scripts/check-complete.ps1 +0 -28
  3762. package/skills/planning-with-files/scripts/init-session.ps1 +0 -31
  3763. package/templates/deliverables.json +0 -25
  3764. package/templates/hooks/code-simplifier.mjs +0 -200
  3765. package/templates/hooks/keyword-detector.mjs +0 -578
  3766. package/templates/hooks/lib/atomic-write.mjs +0 -93
  3767. package/templates/hooks/lib/stdin.mjs +0 -62
  3768. package/templates/hooks/persistent-mode.mjs +0 -1113
  3769. package/templates/hooks/post-tool-use-failure.mjs +0 -180
  3770. package/templates/hooks/post-tool-use.mjs +0 -203
  3771. package/templates/hooks/pre-tool-use.mjs +0 -403
  3772. package/templates/hooks/session-start.mjs +0 -457
  3773. package/templates/hooks/stop-continuation.mjs +0 -20
  3774. package/templates/rules/README.md +0 -41
  3775. package/templates/rules/coding-style.md +0 -74
  3776. package/templates/rules/git-workflow.md +0 -41
  3777. package/templates/rules/karpathy-guidelines.md +0 -59
  3778. package/templates/rules/performance.md +0 -40
  3779. package/templates/rules/security.md +0 -41
  3780. package/templates/rules/testing.md +0 -42
  3781. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/analyst.md +0 -0
  3782. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/architect.md +0 -0
  3783. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/code-reviewer.md +0 -0
  3784. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/code-simplifier.md +0 -0
  3785. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/critic.md +0 -0
  3786. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/debugger.md +0 -0
  3787. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/designer.md +0 -0
  3788. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/document-specialist.md +0 -0
  3789. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/executor.md +0 -0
  3790. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/explore.md +0 -0
  3791. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/git-master.md +0 -0
  3792. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/planner.md +0 -0
  3793. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/qa-tester.md +0 -0
  3794. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/scientist.md +0 -0
  3795. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/security-reviewer.md +0 -0
  3796. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/test-engineer.md +0 -0
  3797. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/tracer.md +0 -0
  3798. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/verifier.md +0 -0
  3799. /package/{agents → bundled/upstream/oh-my-claudecode/agents}/writer.md +0 -0
  3800. /package/{hooks → bundled/upstream/oh-my-claudecode/hooks}/hooks.json +0 -0
  3801. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/AGENTS.md +0 -0
  3802. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/ai-commenting/SKILL.md +0 -0
  3803. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/ai-slop-cleaner/SKILL.md +0 -0
  3804. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/analyze/SKILL.md +0 -0
  3805. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/ask/SKILL.md +0 -0
  3806. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/autopilot/SKILL.md +0 -0
  3807. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/bdd-generator/SKILL.md +0 -0
  3808. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/cancel/SKILL.md +0 -0
  3809. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/ccg/SKILL.md +0 -0
  3810. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/conductor/SKILL.md +0 -0
  3811. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/configure-notifications/SKILL.md +0 -0
  3812. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/deep-dive/SKILL.md +0 -0
  3813. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/deep-interview/SKILL.md +0 -0
  3814. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/deepinit/SKILL.md +0 -0
  3815. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/e2e/SKILL.md +0 -0
  3816. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/electron-driver/SKILL.md +0 -0
  3817. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/electron-driver/scripts/driver-template.js +0 -0
  3818. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/external-context/SKILL.md +0 -0
  3819. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/hud/SKILL.md +0 -0
  3820. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/learner/SKILL.md +0 -0
  3821. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/mcp-setup/SKILL.md +0 -0
  3822. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/multi-model-research/SKILL.md +0 -0
  3823. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/omc-doctor/SKILL.md +0 -0
  3824. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/omc-doctor/skill-debugger.md +0 -0
  3825. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/omc-reference/SKILL.md +0 -0
  3826. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/omc-setup/SKILL.md +0 -0
  3827. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/omc-setup/phases/01-install-claude-md.md +0 -0
  3828. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/omc-setup/phases/02-configure.md +0 -0
  3829. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/omc-setup/phases/03-integrations.md +0 -0
  3830. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/omc-setup/phases/04-welcome.md +0 -0
  3831. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/omc-teams/SKILL.md +0 -0
  3832. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/plan/SKILL.md +0 -0
  3833. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/planning-with-files/SKILL.md +0 -0
  3834. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/planning-with-files/examples.md +0 -0
  3835. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/planning-with-files/reference.md +0 -0
  3836. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/planning-with-files/scripts/check-complete.sh +0 -0
  3837. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/planning-with-files/scripts/init-session.sh +0 -0
  3838. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/planning-with-files/scripts/session-catchup.py +0 -0
  3839. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/planning-with-files/templates/findings.md +0 -0
  3840. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/planning-with-files/templates/progress.md +0 -0
  3841. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/planning-with-files/templates/task_plan.md +0 -0
  3842. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/SKILL.md +0 -0
  3843. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/lib/config.sh +0 -0
  3844. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/lib/parse.sh +0 -0
  3845. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/lib/providers/azure-devops.sh +0 -0
  3846. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/lib/providers/bitbucket.sh +0 -0
  3847. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/lib/providers/gitea.sh +0 -0
  3848. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/lib/providers/github.sh +0 -0
  3849. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/lib/providers/gitlab.sh +0 -0
  3850. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/lib/providers/interface.sh +0 -0
  3851. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/lib/providers/jira.sh +0 -0
  3852. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/lib/session.sh +0 -0
  3853. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/lib/tmux.sh +0 -0
  3854. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/lib/worktree.sh +0 -0
  3855. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/psm.sh +0 -0
  3856. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/templates/feature.md +0 -0
  3857. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/templates/issue-fix.md +0 -0
  3858. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/templates/pr-review.md +0 -0
  3859. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/project-session-manager/templates/projects.json +0 -0
  3860. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/quick-init-project/SKILL.md +0 -0
  3861. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/ralph/SKILL.md +0 -0
  3862. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/ralplan/SKILL.md +0 -0
  3863. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/release/SKILL.md +0 -0
  3864. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/sciomc/SKILL.md +0 -0
  3865. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/setup/SKILL.md +0 -0
  3866. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/skill/SKILL.md +0 -0
  3867. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/skill-debugger/SKILL.md +0 -0
  3868. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/skill-quality-analyzer/HOW_TO_USE.md +0 -0
  3869. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/skill-quality-analyzer/README.md +0 -0
  3870. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/skill-quality-analyzer/SKILL.md +0 -0
  3871. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/skill-quality-analyzer/analyzer.py +0 -0
  3872. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/skill-quality-analyzer/expected_output.json +0 -0
  3873. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/skill-quality-analyzer/sample_input.json +0 -0
  3874. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/skill-tester/README.md +0 -0
  3875. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/skill-tester/SKILL.md +0 -0
  3876. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/start-dev/SKILL.md +0 -0
  3877. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/tdd-generator/SKILL.md +0 -0
  3878. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/team/SKILL.md +0 -0
  3879. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/test-coverage/SKILL.md +0 -0
  3880. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/test-gen/SKILL.md +0 -0
  3881. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/trace/SKILL.md +0 -0
  3882. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/ultraqa/SKILL.md +0 -0
  3883. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/ultraqa.md +0 -0
  3884. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/ultrawork/SKILL.md +0 -0
  3885. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/visual-verdict/SKILL.md +0 -0
  3886. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/writer-memory/SKILL.md +0 -0
  3887. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/writer-memory/lib/character-tracker.ts +0 -0
  3888. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/writer-memory/lib/memory-manager.ts +0 -0
  3889. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/writer-memory/lib/relationship-graph.ts +0 -0
  3890. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/writer-memory/lib/scene-organizer.ts +0 -0
  3891. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/writer-memory/lib/synopsis-builder.ts +0 -0
  3892. /package/{skills → bundled/upstream/oh-my-claudecode/skills}/writer-memory/templates/synopsis-template.md +0 -0
@@ -1,3053 +0,0 @@
1
- # LLM Testing System - Phase 2 Implementation Plan
2
-
3
- > **For Claude:** REQUIRED SUB-SKILL: Use superpowers:executing-plans to implement this plan task-by-task.
4
-
5
- **Goal:** Extend testing system with coverage analysis, multi-language support (Python, Go, Rust), enhanced complexity analysis, contract testing, and /ultraqa integration.
6
-
7
- **Architecture:** Build on Phase 1 foundation by adding coverage analyzers, multi-language generators, complexity analyzer, contract test generator, and enhanced test-engineer agent integration.
8
-
9
- **Tech Stack:** TypeScript, Node.js, c8/nyc (coverage), pytest, Go testing, cargo test, OpenAPI/Pact
10
-
11
- ---
12
-
13
- ## Task 1: Coverage Analyzer for Node.js
14
-
15
- **Files:**
16
- - Create: `src/testing/analyzers/coverage.ts`
17
- - Create: `src/testing/analyzers/types.ts`
18
- - Create: `tests/testing/analyzers/coverage.test.ts`
19
-
20
- **Step 1: Write the failing test**
21
-
22
- Create `tests/testing/analyzers/coverage.test.ts`:
23
-
24
- ```typescript
25
- import { describe, it, expect, vi } from 'vitest';
26
- import { analyzeCoverage, identifyGaps } from '../../../src/testing/analyzers/coverage';
27
-
28
- describe('Coverage Analyzer', () => {
29
- it('should parse c8 coverage report', async () => {
30
- const mockCoverageData = {
31
- total: {
32
- lines: { total: 100, covered: 75, pct: 75 },
33
- statements: { total: 120, covered: 90, pct: 75 },
34
- functions: { total: 20, covered: 18, pct: 90 },
35
- branches: { total: 40, covered: 28, pct: 70 },
36
- },
37
- };
38
-
39
- const result = await analyzeCoverage({
40
- projectRoot: '/test/project',
41
- coverageData: mockCoverageData,
42
- });
43
-
44
- expect(result.totalCoverage).toBe(75);
45
- expect(result.lineCoverage).toBe(75);
46
- expect(result.functionCoverage).toBe(90);
47
- });
48
-
49
- it('should identify coverage gaps', async () => {
50
- const mockUncoveredLines = {
51
- 'src/utils/validation.ts': [42, 43, 44, 45, 46, 47, 48, 67, 68, 69, 70, 71, 72, 89],
52
- };
53
-
54
- const result = await identifyGaps({
55
- projectRoot: '/test/project',
56
- uncoveredLines: mockUncoveredLines,
57
- });
58
-
59
- expect(result.gaps).toHaveLength(3);
60
- expect(result.gaps[0]).toMatchObject({
61
- file: 'src/utils/validation.ts',
62
- startLine: 42,
63
- endLine: 48,
64
- reason: expect.any(String),
65
- });
66
- });
67
- });
68
- ```
69
-
70
- **Step 2: Run test to verify it fails**
71
-
72
- Run: `pnpm test tests/testing/analyzers/coverage.test.ts`
73
- Expected: FAIL with "Cannot find module"
74
-
75
- **Step 3: Implement coverage analyzer**
76
-
77
- Create `src/testing/analyzers/types.ts`:
78
-
79
- ```typescript
80
- export interface CoverageMetrics {
81
- total: number;
82
- covered: number;
83
- pct: number;
84
- }
85
-
86
- export interface CoverageReport {
87
- lines: CoverageMetrics;
88
- statements: CoverageMetrics;
89
- functions: CoverageMetrics;
90
- branches: CoverageMetrics;
91
- }
92
-
93
- export interface CoverageAnalysisResult {
94
- totalCoverage: number;
95
- lineCoverage: number;
96
- functionCoverage: number;
97
- branchCoverage: number;
98
- statementCoverage: number;
99
- }
100
-
101
- export interface CoverageGap {
102
- file: string;
103
- startLine: number;
104
- endLine: number;
105
- reason: string;
106
- codeSnippet?: string;
107
- }
108
-
109
- export interface GapAnalysisResult {
110
- gaps: CoverageGap[];
111
- totalGaps: number;
112
- }
113
- ```
114
-
115
- Create `src/testing/analyzers/coverage.ts`:
116
-
117
- ```typescript
118
- import fs from 'fs/promises';
119
- import path from 'path';
120
- import { execSync } from 'child_process';
121
- import type { CoverageAnalysisResult, GapAnalysisResult, CoverageGap } from './types';
122
-
123
- interface AnalyzeCoverageOptions {
124
- projectRoot: string;
125
- coverageData?: any;
126
- }
127
-
128
- export async function analyzeCoverage(options: AnalyzeCoverageOptions): Promise<CoverageAnalysisResult> {
129
- const { projectRoot, coverageData } = options;
130
-
131
- let coverage = coverageData;
132
-
133
- // If no coverage data provided, run coverage tool
134
- if (!coverage) {
135
- try {
136
- // Run c8 to generate coverage
137
- execSync('pnpm test --coverage --reporter=json', {
138
- cwd: projectRoot,
139
- stdio: 'pipe',
140
- });
141
-
142
- // Read coverage report
143
- const coveragePath = path.join(projectRoot, 'coverage', 'coverage-summary.json');
144
- const coverageContent = await fs.readFile(coveragePath, 'utf-8');
145
- coverage = JSON.parse(coverageContent);
146
- } catch (error) {
147
- throw new Error(`Failed to generate coverage: ${error}`);
148
- }
149
- }
150
-
151
- const total = coverage.total;
152
-
153
- return {
154
- totalCoverage: total.lines.pct,
155
- lineCoverage: total.lines.pct,
156
- functionCoverage: total.functions.pct,
157
- branchCoverage: total.branches.pct,
158
- statementCoverage: total.statements.pct,
159
- };
160
- }
161
-
162
- interface IdentifyGapsOptions {
163
- projectRoot: string;
164
- uncoveredLines: Record<string, number[]>;
165
- }
166
-
167
- export async function identifyGaps(options: IdentifyGapsOptions): Promise<GapAnalysisResult> {
168
- const { projectRoot, uncoveredLines } = options;
169
- const gaps: CoverageGap[] = [];
170
-
171
- for (const [file, lines] of Object.entries(uncoveredLines)) {
172
- // Group consecutive lines into ranges
173
- const ranges = groupConsecutiveLines(lines);
174
-
175
- for (const range of ranges) {
176
- // Read code snippet
177
- const filePath = path.join(projectRoot, file);
178
- let codeSnippet: string | undefined;
179
-
180
- try {
181
- const content = await fs.readFile(filePath, 'utf-8');
182
- const allLines = content.split('\n');
183
- codeSnippet = allLines.slice(range.start - 1, range.end).join('\n');
184
- } catch (error) {
185
- // File might not exist in test environment
186
- }
187
-
188
- // Analyze reason for gap
189
- const reason = analyzeGapReason(codeSnippet || '');
190
-
191
- gaps.push({
192
- file,
193
- startLine: range.start,
194
- endLine: range.end,
195
- reason,
196
- codeSnippet,
197
- });
198
- }
199
- }
200
-
201
- return {
202
- gaps,
203
- totalGaps: gaps.length,
204
- };
205
- }
206
-
207
- function groupConsecutiveLines(lines: number[]): Array<{ start: number; end: number }> {
208
- if (lines.length === 0) return [];
209
-
210
- const sorted = [...lines].sort((a, b) => a - b);
211
- const ranges: Array<{ start: number; end: number }> = [];
212
- let start = sorted[0];
213
- let end = sorted[0];
214
-
215
- for (let i = 1; i < sorted.length; i++) {
216
- if (sorted[i] === end + 1) {
217
- end = sorted[i];
218
- } else {
219
- ranges.push({ start, end });
220
- start = sorted[i];
221
- end = sorted[i];
222
- }
223
- }
224
-
225
- ranges.push({ start, end });
226
- return ranges;
227
- }
228
-
229
- function analyzeGapReason(code: string): string {
230
- if (code.includes('catch') || code.includes('throw')) {
231
- return 'Error handling not covered';
232
- }
233
- if (code.includes('if') || code.includes('else')) {
234
- return 'Conditional branch not covered';
235
- }
236
- if (code.includes('null') || code.includes('undefined')) {
237
- return 'Null/undefined check not covered';
238
- }
239
- return 'Code path not covered';
240
- }
241
- ```
242
-
243
- **Step 4: Run test to verify it passes**
244
-
245
- Run: `pnpm test tests/testing/analyzers/coverage.test.ts`
246
- Expected: PASS
247
-
248
- **Step 5: Commit**
249
-
250
- ```bash
251
- git add src/testing/analyzers/ tests/testing/analyzers/
252
- git commit -m "feat(testing): add coverage analyzer for Node.js
253
-
254
- - Parse c8/nyc coverage reports
255
- - Identify coverage gaps with line ranges
256
- - Analyze reasons for uncovered code
257
- - Group consecutive uncovered lines
258
-
259
- Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>"
260
- ```
261
-
262
- ---
263
-
264
- ## Task 2: Python Test Generator
265
-
266
- **Files:**
267
- - Create: `src/testing/generators/python.ts`
268
- - Create: `src/testing/detectors/python.ts`
269
- - Create: `tests/testing/generators/python.test.ts`
270
-
271
- **Step 1: Write the failing test**
272
-
273
- Create `tests/testing/generators/python.test.ts`:
274
-
275
- ```typescript
276
- import { describe, it, expect } from 'vitest';
277
- import { generatePythonTest } from '../../../src/testing/generators/python';
278
-
279
- describe('generatePythonTest', () => {
280
- it('should generate pytest test for simple function', async () => {
281
- const functionCode = `
282
- def add(a: int, b: int) -> int:
283
- """Add two numbers."""
284
- return a + b
285
- `;
286
-
287
- const result = await generatePythonTest({
288
- filePath: 'src/utils/math.py',
289
- code: functionCode,
290
- testFramework: 'pytest',
291
- });
292
-
293
- expect(result.testCode).toContain('import pytest');
294
- expect(result.testCode).toContain('def test_add');
295
- expect(result.testCode).toContain('assert add(2, 3) == 5');
296
- expect(result.testFilePath).toBe('tests/test_math.py');
297
- });
298
-
299
- it('should generate test for class with methods', async () => {
300
- const classCode = `
301
- class Calculator:
302
- def add(self, a: int, b: int) -> int:
303
- return a + b
304
-
305
- def subtract(self, a: int, b: int) -> int:
306
- return a - b
307
- `;
308
-
309
- const result = await generatePythonTest({
310
- filePath: 'src/calculator.py',
311
- code: classCode,
312
- testFramework: 'pytest',
313
- });
314
-
315
- expect(result.testCode).toContain('class TestCalculator');
316
- expect(result.testCode).toContain('def test_add');
317
- expect(result.testCode).toContain('def test_subtract');
318
- });
319
- });
320
- ```
321
-
322
- **Step 2: Run test to verify it fails**
323
-
324
- Run: `pnpm test tests/testing/generators/python.test.ts`
325
- Expected: FAIL with "Cannot find module"
326
-
327
- **Step 3: Implement Python test generator**
328
-
329
- Create `src/testing/generators/python.ts`:
330
-
331
- ```typescript
332
- interface PythonTestOptions {
333
- filePath: string;
334
- code: string;
335
- testFramework: 'pytest' | 'unittest';
336
- }
337
-
338
- interface PythonTestResult {
339
- testFilePath: string;
340
- testCode: string;
341
- }
342
-
343
- export async function generatePythonTest(options: PythonTestOptions): Promise<PythonTestResult> {
344
- const { filePath, code, testFramework } = options;
345
-
346
- // Extract module name from file path
347
- const fileName = filePath.split('/').pop()?.replace(/\.py$/, '') || 'module';
348
-
349
- // Generate test file path (pytest convention: tests/test_*.py)
350
- const testFilePath = `tests/test_${fileName}.py`;
351
-
352
- // Parse code to find functions and classes
353
- const functions = extractPythonFunctions(code);
354
- const classes = extractPythonClasses(code);
355
-
356
- let testCode = '';
357
-
358
- if (testFramework === 'pytest') {
359
- testCode = generatePytestCode(fileName, functions, classes);
360
- } else {
361
- testCode = generateUnittestCode(fileName, functions, classes);
362
- }
363
-
364
- return { testFilePath, testCode };
365
- }
366
-
367
- interface PythonFunction {
368
- name: string;
369
- params: string[];
370
- isAsync: boolean;
371
- }
372
-
373
- interface PythonClass {
374
- name: string;
375
- methods: PythonFunction[];
376
- }
377
-
378
- function extractPythonFunctions(code: string): PythonFunction[] {
379
- const functions: PythonFunction[] = [];
380
- const functionRegex = /^(async\s+)?def\s+(\w+)\s*\((.*?)\)/gm;
381
- let match;
382
-
383
- while ((match = functionRegex.exec(code)) !== null) {
384
- const isAsync = !!match[1];
385
- const name = match[2];
386
- const paramsStr = match[3];
387
-
388
- // Skip if it's a method (inside a class)
389
- const beforeDef = code.substring(0, match.index);
390
- const lastClassMatch = beforeDef.lastIndexOf('class ');
391
- const lastFunctionMatch = beforeDef.lastIndexOf('\ndef ');
392
-
393
- if (lastClassMatch > lastFunctionMatch) {
394
- continue; // This is a method, not a function
395
- }
396
-
397
- const params = paramsStr
398
- .split(',')
399
- .map(p => p.trim().split(':')[0].trim())
400
- .filter(p => p && p !== 'self');
401
-
402
- functions.push({ name, params, isAsync });
403
- }
404
-
405
- return functions;
406
- }
407
-
408
- function extractPythonClasses(code: string): PythonClass[] {
409
- const classes: PythonClass[] = [];
410
- const classRegex = /class\s+(\w+).*?:/g;
411
- let match;
412
-
413
- while ((match = classRegex.exec(code)) !== null) {
414
- const className = match[1];
415
- const classStart = match.index;
416
-
417
- // Find all methods in this class
418
- const methods: PythonFunction[] = [];
419
- const methodRegex = /^\s+(async\s+)?def\s+(\w+)\s*\((.*?)\)/gm;
420
- methodRegex.lastIndex = classStart;
421
-
422
- let methodMatch;
423
- while ((methodMatch = methodRegex.exec(code)) !== null) {
424
- // Stop if we've moved to another class
425
- const nextClass = code.indexOf('\nclass ', classStart + 1);
426
- if (nextClass !== -1 && methodMatch.index > nextClass) {
427
- break;
428
- }
429
-
430
- const isAsync = !!methodMatch[1];
431
- const methodName = methodMatch[2];
432
- const paramsStr = methodMatch[3];
433
-
434
- const params = paramsStr
435
- .split(',')
436
- .map(p => p.trim().split(':')[0].trim())
437
- .filter(p => p && p !== 'self');
438
-
439
- methods.push({ name: methodName, params, isAsync });
440
- }
441
-
442
- classes.push({ name: className, methods });
443
- }
444
-
445
- return classes;
446
- }
447
-
448
- function generatePytestCode(moduleName: string, functions: PythonFunction[], classes: PythonClass[]): string {
449
- let code = `import pytest\nfrom src.${moduleName} import ${[...functions.map(f => f.name), ...classes.map(c => c.name)].join(', ')}\n\n`;
450
-
451
- // Generate tests for standalone functions
452
- for (const func of functions) {
453
- code += generatePytestFunction(func);
454
- }
455
-
456
- // Generate tests for classes
457
- for (const cls of classes) {
458
- code += `class Test${cls.name}:\n`;
459
- for (const method of cls.methods) {
460
- code += generatePytestMethod(cls.name, method);
461
- }
462
- code += '\n';
463
- }
464
-
465
- return code;
466
- }
467
-
468
- function generatePytestFunction(func: PythonFunction): string {
469
- const testName = `test_${func.name}`;
470
- const asyncPrefix = func.isAsync ? '@pytest.mark.asyncio\nasync ' : '';
471
-
472
- // Generate simple test cases based on function name
473
- let testBody = '';
474
- if (func.name === 'add') {
475
- testBody = ` assert add(2, 3) == 5\n assert add(-1, 1) == 0\n assert add(0, 0) == 0`;
476
- } else {
477
- testBody = ` # TODO: Add test cases for ${func.name}\n assert ${func.name} is not None`;
478
- }
479
-
480
- return `${asyncPrefix}def ${testName}():\n${testBody}\n\n`;
481
- }
482
-
483
- function generatePytestMethod(className: string, method: PythonFunction): string {
484
- const testName = `test_${method.name}`;
485
- const asyncPrefix = method.isAsync ? ' @pytest.mark.asyncio\n async ' : ' ';
486
-
487
- let testBody = '';
488
- if (method.name === 'add') {
489
- testBody = ` instance = ${className}()\n assert instance.add(2, 3) == 5\n assert instance.add(-1, 1) == 0`;
490
- } else if (method.name === 'subtract') {
491
- testBody = ` instance = ${className}()\n assert instance.subtract(5, 3) == 2\n assert instance.subtract(0, 0) == 0`;
492
- } else {
493
- testBody = ` instance = ${className}()\n # TODO: Add test cases for ${method.name}\n assert instance.${method.name} is not None`;
494
- }
495
-
496
- return `${asyncPrefix}def ${testName}(self):\n${testBody}\n\n`;
497
- }
498
-
499
- function generateUnittestCode(moduleName: string, functions: PythonFunction[], classes: PythonClass[]): string {
500
- let code = `import unittest\nfrom src.${moduleName} import ${[...functions.map(f => f.name), ...classes.map(c => c.name)].join(', ')}\n\n`;
501
-
502
- // Generate test class for standalone functions
503
- if (functions.length > 0) {
504
- code += `class TestFunctions(unittest.TestCase):\n`;
505
- for (const func of functions) {
506
- code += generateUnittestFunction(func);
507
- }
508
- code += '\n';
509
- }
510
-
511
- // Generate test classes for classes
512
- for (const cls of classes) {
513
- code += `class Test${cls.name}(unittest.TestCase):\n`;
514
- for (const method of cls.methods) {
515
- code += generateUnittestMethod(cls.name, method);
516
- }
517
- code += '\n';
518
- }
519
-
520
- code += `\nif __name__ == '__main__':\n unittest.main()\n`;
521
-
522
- return code;
523
- }
524
-
525
- function generateUnittestFunction(func: PythonFunction): string {
526
- const testName = `test_${func.name}`;
527
-
528
- let testBody = '';
529
- if (func.name === 'add') {
530
- testBody = ` self.assertEqual(add(2, 3), 5)\n self.assertEqual(add(-1, 1), 0)\n self.assertEqual(add(0, 0), 0)`;
531
- } else {
532
- testBody = ` # TODO: Add test cases for ${func.name}\n self.assertIsNotNone(${func.name})`;
533
- }
534
-
535
- return ` def ${testName}(self):\n${testBody}\n\n`;
536
- }
537
-
538
- function generateUnittestMethod(className: string, method: PythonFunction): string {
539
- const testName = `test_${method.name}`;
540
-
541
- let testBody = '';
542
- if (method.name === 'add') {
543
- testBody = ` instance = ${className}()\n self.assertEqual(instance.add(2, 3), 5)\n self.assertEqual(instance.add(-1, 1), 0)`;
544
- } else if (method.name === 'subtract') {
545
- testBody = ` instance = ${className}()\n self.assertEqual(instance.subtract(5, 3), 2)\n self.assertEqual(instance.subtract(0, 0), 0)`;
546
- } else {
547
- testBody = ` instance = ${className}()\n # TODO: Add test cases for ${method.name}\n self.assertIsNotNone(instance.${method.name})`;
548
- }
549
-
550
- return ` def ${testName}(self):\n${testBody}\n\n`;
551
- }
552
- ```
553
-
554
- Create `src/testing/detectors/python.ts`:
555
-
556
- ```typescript
557
- import fs from 'fs/promises';
558
- import path from 'path';
559
- import type { TechStack } from '../types';
560
-
561
- export async function detectPythonStack(projectRoot: string): Promise<Partial<TechStack>> {
562
- const stack: Partial<TechStack> = {};
563
-
564
- try {
565
- // Check for requirements.txt
566
- const requirementsPath = path.join(projectRoot, 'requirements.txt');
567
- const requirements = await fs.readFile(requirementsPath, 'utf-8');
568
-
569
- stack.backend = {
570
- language: 'python',
571
- testFramework: requirements.includes('pytest') ? 'pytest' : requirements.includes('unittest') ? 'unittest' : undefined,
572
- };
573
-
574
- // Check for databases
575
- const databases: string[] = [];
576
- if (requirements.includes('psycopg2') || requirements.includes('psycopg3')) databases.push('postgresql');
577
- if (requirements.includes('pymysql') || requirements.includes('mysql-connector')) databases.push('mysql');
578
- if (requirements.includes('pymongo')) databases.push('mongodb');
579
- if (databases.length > 0) stack.databases = databases;
580
-
581
- // Check for API frameworks
582
- const apis: ('rest' | 'graphql')[] = [];
583
- if (requirements.includes('flask') || requirements.includes('fastapi') || requirements.includes('django')) apis.push('rest');
584
- if (requirements.includes('graphene') || requirements.includes('strawberry')) apis.push('graphql');
585
- if (apis.length > 0) stack.apis = apis;
586
- } catch (error) {
587
- // requirements.txt not found
588
- }
589
-
590
- return stack;
591
- }
592
- ```
593
-
594
- **Step 4: Run test to verify it passes**
595
-
596
- Run: `pnpm test tests/testing/generators/python.test.ts`
597
- Expected: PASS
598
-
599
- **Step 5: Commit**
600
-
601
- ```bash
602
- git add src/testing/generators/python.ts src/testing/detectors/python.ts tests/testing/generators/python.test.ts
603
- git commit -m "feat(testing): add Python test generator with pytest support
604
-
605
- - Generate pytest tests for functions and classes
606
- - Support unittest framework
607
- - Extract functions and classes from Python code
608
- - Auto-detect async functions
609
- - Generate test file paths following pytest conventions
610
-
611
- Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>"
612
- ```
613
-
614
- ---
615
-
616
- ## Task 3: Go Test Generator
617
-
618
- **Files:**
619
- - Create: `src/testing/generators/go.ts`
620
- - Create: `src/testing/detectors/go.ts`
621
- - Create: `tests/testing/generators/go.test.ts`
622
-
623
- **Step 1: Write the failing test**
624
-
625
- Create `tests/testing/generators/go.test.ts`:
626
-
627
- ```typescript
628
- import { describe, it, expect } from 'vitest';
629
- import { generateGoTest } from '../../../src/testing/generators/go';
630
-
631
- describe('generateGoTest', () => {
632
- it('should generate Go test for simple function', async () => {
633
- const functionCode = `
634
- package math
635
-
636
- func Add(a, b int) int {
637
- return a + b
638
- }
639
- `;
640
-
641
- const result = await generateGoTest({
642
- filePath: 'pkg/math/math.go',
643
- code: functionCode,
644
- packageName: 'math',
645
- });
646
-
647
- expect(result.testCode).toContain('package math');
648
- expect(result.testCode).toContain('import "testing"');
649
- expect(result.testCode).toContain('func TestAdd(t *testing.T)');
650
- expect(result.testFilePath).toBe('pkg/math/math_test.go');
651
- });
652
-
653
- it('should generate table-driven tests', async () => {
654
- const functionCode = `
655
- package utils
656
-
657
- func IsValid(input string) bool {
658
- return len(input) > 0
659
- }
660
- `;
661
-
662
- const result = await generateGoTest({
663
- filePath: 'pkg/utils/validation.go',
664
- code: functionCode,
665
- packageName: 'utils',
666
- });
667
-
668
- expect(result.testCode).toContain('tests := []struct');
669
- expect(result.testCode).toContain('t.Run(');
670
- });
671
- });
672
- ```
673
-
674
- **Step 2: Run test to verify it fails**
675
-
676
- Run: `pnpm test tests/testing/generators/go.test.ts`
677
- Expected: FAIL with "Cannot find module"
678
-
679
- **Step 3: Implement Go test generator**
680
-
681
- Create `src/testing/generators/go.ts`:
682
-
683
- ```typescript
684
- interface GoTestOptions {
685
- filePath: string;
686
- code: string;
687
- packageName: string;
688
- }
689
-
690
- interface GoTestResult {
691
- testFilePath: string;
692
- testCode: string;
693
- }
694
-
695
- export async function generateGoTest(options: GoTestOptions): Promise<GoTestResult> {
696
- const { filePath, code, packageName } = options;
697
-
698
- // Generate test file path (Go convention: *_test.go)
699
- const testFilePath = filePath.replace(/\.go$/, '_test.go');
700
-
701
- // Extract functions from code
702
- const functions = extractGoFunctions(code);
703
-
704
- // Generate test code
705
- const testCode = generateGoTestCode(packageName, functions);
706
-
707
- return { testFilePath, testCode };
708
- }
709
-
710
- interface GoFunction {
711
- name: string;
712
- params: Array<{ name: string; type: string }>;
713
- returnType: string;
714
- }
715
-
716
- function extractGoFunctions(code: string): GoFunction[] {
717
- const functions: GoFunction[] = [];
718
- const functionRegex = /func\s+(\w+)\s*\((.*?)\)\s*(.*?)\s*{/g;
719
- let match;
720
-
721
- while ((match = functionRegex.exec(code)) !== null) {
722
- const name = match[1];
723
- const paramsStr = match[2];
724
- const returnType = match[3].trim();
725
-
726
- // Skip methods (have receiver)
727
- if (paramsStr.includes(')') && paramsStr.indexOf(')') < paramsStr.lastIndexOf('(')) {
728
- continue;
729
- }
730
-
731
- const params = parseGoParams(paramsStr);
732
-
733
- functions.push({ name, params, returnType });
734
- }
735
-
736
- return functions;
737
- }
738
-
739
- function parseGoParams(paramsStr: string): Array<{ name: string; type: string }> {
740
- if (!paramsStr.trim()) return [];
741
-
742
- const params: Array<{ name: string; type: string }> = [];
743
- const parts = paramsStr.split(',').map(p => p.trim());
744
-
745
- for (const part of parts) {
746
- const tokens = part.split(/\s+/);
747
- if (tokens.length >= 2) {
748
- params.push({ name: tokens[0], type: tokens.slice(1).join(' ') });
749
- }
750
- }
751
-
752
- return params;
753
- }
754
-
755
- function generateGoTestCode(packageName: string, functions: GoFunction[]): string {
756
- let code = `package ${packageName}\n\nimport "testing"\n\n`;
757
-
758
- for (const func of functions) {
759
- code += generateGoTestFunction(func);
760
- }
761
-
762
- return code;
763
- }
764
-
765
- function generateGoTestFunction(func: GoFunction): string {
766
- const testName = `Test${func.name}`;
767
-
768
- // Determine if we should use table-driven tests
769
- const useTableDriven = shouldUseTableDriven(func);
770
-
771
- if (useTableDriven) {
772
- return generateTableDrivenTest(func);
773
- } else {
774
- return generateSimpleTest(func);
775
- }
776
- }
777
-
778
- function shouldUseTableDriven(func: GoFunction): boolean {
779
- // Use table-driven tests for functions with simple inputs/outputs
780
- return func.params.length > 0 && func.returnType !== '';
781
- }
782
-
783
- function generateTableDrivenTest(func: GoFunction): string {
784
- const testName = `Test${func.name}`;
785
-
786
- // Generate test cases based on function name
787
- let testCases = '';
788
- if (func.name === 'Add') {
789
- testCases = ` {name: "positive numbers", args: args{a: 2, b: 3}, want: 5},
790
- {name: "negative numbers", args: args{a: -1, b: 1}, want: 0},
791
- {name: "zeros", args: args{a: 0, b: 0}, want: 0},`;
792
- } else if (func.name === 'IsValid') {
793
- testCases = ` {name: "valid input", args: args{input: "test"}, want: true},
794
- {name: "empty input", args: args{input: ""}, want: false},`;
795
- } else {
796
- testCases = ` // TODO: Add test cases`;
797
- }
798
-
799
- const paramFields = func.params.map(p => `${p.name} ${p.type}`).join('; ');
800
-
801
- return `func ${testName}(t *testing.T) {
802
- type args struct {
803
- ${paramFields}
804
- }
805
- tests := []struct {
806
- name string
807
- args args
808
- want ${func.returnType}
809
- }{
810
- ${testCases}
811
- }
812
- for _, tt := range tests {
813
- t.Run(tt.name, func(t *testing.T) {
814
- got := ${func.name}(${func.params.map(p => `tt.args.${p.name}`).join(', ')})
815
- if got != tt.want {
816
- t.Errorf("${func.name}() = %v, want %v", got, tt.want)
817
- }
818
- })
819
- }
820
- }
821
-
822
- `;
823
- }
824
-
825
- function generateSimpleTest(func: GoFunction): string {
826
- const testName = `Test${func.name}`;
827
-
828
- return `func ${testName}(t *testing.T) {
829
- // TODO: Add test implementation for ${func.name}
830
- t.Skip("Test not implemented")
831
- }
832
-
833
- `;
834
- }
835
- ```
836
-
837
- Create `src/testing/detectors/go.ts`:
838
-
839
- ```typescript
840
- import fs from 'fs/promises';
841
- import path from 'path';
842
- import type { TechStack } from '../types';
843
-
844
- export async function detectGoStack(projectRoot: string): Promise<Partial<TechStack>> {
845
- const stack: Partial<TechStack> = {};
846
-
847
- try {
848
- // Check for go.mod
849
- const goModPath = path.join(projectRoot, 'go.mod');
850
- const goMod = await fs.readFile(goModPath, 'utf-8');
851
-
852
- stack.backend = {
853
- language: 'go',
854
- testFramework: 'testing', // Go's built-in testing package
855
- };
856
-
857
- // Check for databases
858
- const databases: string[] = [];
859
- if (goMod.includes('github.com/lib/pq') || goMod.includes('github.com/jackc/pgx')) databases.push('postgresql');
860
- if (goMod.includes('github.com/go-sql-driver/mysql')) databases.push('mysql');
861
- if (goMod.includes('go.mongodb.org/mongo-driver')) databases.push('mongodb');
862
- if (databases.length > 0) stack.databases = databases;
863
-
864
- // Check for API frameworks
865
- const apis: ('rest' | 'graphql' | 'grpc')[] = [];
866
- if (goMod.includes('github.com/gin-gonic/gin') || goMod.includes('github.com/gorilla/mux')) apis.push('rest');
867
- if (goMod.includes('github.com/graphql-go/graphql')) apis.push('graphql');
868
- if (goMod.includes('google.golang.org/grpc')) apis.push('grpc');
869
- if (apis.length > 0) stack.apis = apis;
870
- } catch (error) {
871
- // go.mod not found
872
- }
873
-
874
- return stack;
875
- }
876
- ```
877
-
878
- **Step 4: Run test to verify it passes**
879
-
880
- Run: `pnpm test tests/testing/generators/go.test.ts`
881
- Expected: PASS
882
-
883
- **Step 5: Commit**
884
-
885
- ```bash
886
- git add src/testing/generators/go.ts src/testing/detectors/go.ts tests/testing/generators/go.test.ts
887
- git commit -m "feat(testing): add Go test generator with table-driven tests
888
-
889
- - Generate Go tests using testing package
890
- - Support table-driven test pattern
891
- - Extract functions from Go code
892
- - Auto-detect function parameters and return types
893
- - Generate test file paths following Go conventions
894
-
895
- Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>"
896
- ```
897
-
898
- ---
899
-
900
- ## Task 4: Rust Test Generator
901
-
902
- **Files:**
903
- - Create: `src/testing/generators/rust.ts`
904
- - Create: `src/testing/detectors/rust.ts`
905
- - Create: `tests/testing/generators/rust.test.ts`
906
-
907
- **Step 1: Write the failing test**
908
-
909
- Create `tests/testing/generators/rust.test.ts`:
910
-
911
- ```typescript
912
- import { describe, it, expect } from 'vitest';
913
- import { generateRustTest } from '../../../src/testing/generators/rust';
914
-
915
- describe('generateRustTest', () => {
916
- it('should generate Rust test for simple function', async () => {
917
- const functionCode = `
918
- pub fn add(a: i32, b: i32) -> i32 {
919
- a + b
920
- }
921
- `;
922
-
923
- const result = await generateRustTest({
924
- filePath: 'src/math.rs',
925
- code: functionCode,
926
- });
927
-
928
- expect(result.testCode).toContain('#[cfg(test)]');
929
- expect(result.testCode).toContain('mod tests');
930
- expect(result.testCode).toContain('#[test]');
931
- expect(result.testCode).toContain('fn test_add()');
932
- expect(result.testCode).toContain('assert_eq!');
933
- });
934
-
935
- it('should generate tests for struct methods', async () => {
936
- const structCode = `
937
- pub struct Calculator {
938
- value: i32,
939
- }
940
-
941
- impl Calculator {
942
- pub fn new() -> Self {
943
- Calculator { value: 0 }
944
- }
945
-
946
- pub fn add(&mut self, n: i32) {
947
- self.value += n;
948
- }
949
- }
950
- `;
951
-
952
- const result = await generateRustTest({
953
- filePath: 'src/calculator.rs',
954
- code: structCode,
955
- });
956
-
957
- expect(result.testCode).toContain('fn test_new()');
958
- expect(result.testCode).toContain('fn test_add()');
959
- });
960
- });
961
- ```
962
-
963
- **Step 2: Run test to verify it fails**
964
-
965
- Run: `pnpm test tests/testing/generators/rust.test.ts`
966
- Expected: FAIL with "Cannot find module"
967
-
968
- **Step 3: Implement Rust test generator**
969
-
970
- Create `src/testing/generators/rust.ts`:
971
-
972
- ```typescript
973
- interface RustTestOptions {
974
- filePath: string;
975
- code: string;
976
- }
977
-
978
- interface RustTestResult {
979
- testCode: string;
980
- testFilePath: string;
981
- }
982
-
983
- export async function generateRustTest(options: RustTestOptions): Promise<RustTestResult> {
984
- const { filePath, code } = options;
985
-
986
- // Rust tests are typically in the same file
987
- const testFilePath = filePath;
988
-
989
- // Extract functions and methods
990
- const functions = extractRustFunctions(code);
991
- const structs = extractRustStructs(code);
992
-
993
- // Generate test module
994
- const testCode = generateRustTestModule(functions, structs);
995
-
996
- return { testCode, testFilePath };
997
- }
998
-
999
- interface RustFunction {
1000
- name: string;
1001
- params: Array<{ name: string; type: string }>;
1002
- returnType: string;
1003
- isPublic: boolean;
1004
- }
1005
-
1006
- interface RustStruct {
1007
- name: string;
1008
- methods: RustFunction[];
1009
- }
1010
-
1011
- function extractRustFunctions(code: string): RustFunction[] {
1012
- const functions: RustFunction[] = [];
1013
- const functionRegex = /(pub\s+)?fn\s+(\w+)\s*\((.*?)\)\s*(?:->\s*(.*?))?\s*{/g;
1014
- let match;
1015
-
1016
- while ((match = functionRegex.exec(code)) !== null) {
1017
- const isPublic = !!match[1];
1018
- const name = match[2];
1019
- const paramsStr = match[3];
1020
- const returnType = match[4]?.trim() || '()';
1021
-
1022
- // Skip if inside impl block (will be handled as methods)
1023
- const beforeFn = code.substring(0, match.index);
1024
- const lastImpl = beforeFn.lastIndexOf('impl ');
1025
- const lastCloseBrace = beforeFn.lastIndexOf('}');
1026
-
1027
- if (lastImpl > lastCloseBrace) {
1028
- continue; // This is a method
1029
- }
1030
-
1031
- const params = parseRustParams(paramsStr);
1032
-
1033
- functions.push({ name, params, returnType, isPublic });
1034
- }
1035
-
1036
- return functions;
1037
- }
1038
-
1039
- function extractRustStructs(code: string): RustStruct[] {
1040
- const structs: RustStruct[] = [];
1041
- const structRegex = /struct\s+(\w+)/g;
1042
- let match;
1043
-
1044
- while ((match = structRegex.exec(code)) !== null) {
1045
- const structName = match[1];
1046
-
1047
- // Find impl block for this struct
1048
- const implRegex = new RegExp(`impl\\s+${structName}\\s*{([^}]+)}`, 's');
1049
- const implMatch = implRegex.exec(code);
1050
-
1051
- if (implMatch) {
1052
- const implBody = implMatch[1];
1053
- const methods = extractRustMethods(implBody);
1054
- structs.push({ name: structName, methods });
1055
- }
1056
- }
1057
-
1058
- return structs;
1059
- }
1060
-
1061
- function extractRustMethods(implBody: string): RustFunction[] {
1062
- const methods: RustFunction[] = [];
1063
- const methodRegex = /(pub\s+)?fn\s+(\w+)\s*\((.*?)\)\s*(?:->\s*(.*?))?\s*{/g;
1064
- let match;
1065
-
1066
- while ((match = methodRegex.exec(implBody)) !== null) {
1067
- const isPublic = !!match[1];
1068
- const name = match[2];
1069
- const paramsStr = match[3];
1070
- const returnType = match[4]?.trim() || '()';
1071
-
1072
- const params = parseRustParams(paramsStr);
1073
-
1074
- methods.push({ name, params, returnType, isPublic });
1075
- }
1076
-
1077
- return methods;
1078
- }
1079
-
1080
- function parseRustParams(paramsStr: string): Array<{ name: string; type: string }> {
1081
- if (!paramsStr.trim()) return [];
1082
-
1083
- const params: Array<{ name: string; type: string }> = [];
1084
- const parts = paramsStr.split(',').map(p => p.trim());
1085
-
1086
- for (const part of parts) {
1087
- const colonIndex = part.indexOf(':');
1088
- if (colonIndex !== -1) {
1089
- const name = part.substring(0, colonIndex).trim();
1090
- const type = part.substring(colonIndex + 1).trim();
1091
- params.push({ name, type });
1092
- }
1093
- }
1094
-
1095
- return params;
1096
- }
1097
-
1098
- function generateRustTestModule(functions: RustFunction[], structs: RustStruct[]): string {
1099
- let code = `\n#[cfg(test)]\nmod tests {\n use super::*;\n\n`;
1100
-
1101
- // Generate tests for standalone functions
1102
- for (const func of functions) {
1103
- if (func.isPublic) {
1104
- code += generateRustTestFunction(func);
1105
- }
1106
- }
1107
-
1108
- // Generate tests for struct methods
1109
- for (const struct of structs) {
1110
- for (const method of struct.methods) {
1111
- if (method.isPublic) {
1112
- code += generateRustTestMethod(struct.name, method);
1113
- }
1114
- }
1115
- }
1116
-
1117
- code += `}\n`;
1118
-
1119
- return code;
1120
- }
1121
-
1122
- function generateRustTestFunction(func: RustFunction): string {
1123
- const testName = `test_${func.name}`;
1124
-
1125
- let testBody = '';
1126
- if (func.name === 'add') {
1127
- testBody = ` assert_eq!(add(2, 3), 5);
1128
- assert_eq!(add(-1, 1), 0);
1129
- assert_eq!(add(0, 0), 0);`;
1130
- } else {
1131
- testBody = ` // TODO: Add test implementation for ${func.name}`;
1132
- }
1133
-
1134
- return ` #[test]
1135
- fn ${testName}() {
1136
- ${testBody}
1137
- }
1138
-
1139
- `;
1140
- }
1141
-
1142
- function generateRustTestMethod(structName: string, method: RustFunction): string {
1143
- const testName = `test_${method.name}`;
1144
-
1145
- let testBody = '';
1146
- if (method.name === 'new') {
1147
- testBody = ` let instance = ${structName}::new();
1148
- // TODO: Add assertions`;
1149
- } else if (method.name === 'add') {
1150
- testBody = ` let mut instance = ${structName}::new();
1151
- instance.add(5);
1152
- // TODO: Add assertions`;
1153
- } else {
1154
- testBody = ` // TODO: Add test implementation for ${method.name}`;
1155
- }
1156
-
1157
- return ` #[test]
1158
- fn ${testName}() {
1159
- ${testBody}
1160
- }
1161
-
1162
- `;
1163
- }
1164
- ```
1165
-
1166
- Create `src/testing/detectors/rust.ts`:
1167
-
1168
- ```typescript
1169
- import fs from 'fs/promises';
1170
- import path from 'path';
1171
- import type { TechStack } from '../types';
1172
-
1173
- export async function detectRustStack(projectRoot: string): Promise<Partial<TechStack>> {
1174
- const stack: Partial<TechStack> = {};
1175
-
1176
- try {
1177
- // Check for Cargo.toml
1178
- const cargoTomlPath = path.join(projectRoot, 'Cargo.toml');
1179
- const cargoToml = await fs.readFile(cargoTomlPath, 'utf-8');
1180
-
1181
- stack.backend = {
1182
- language: 'rust',
1183
- testFramework: 'cargo test', // Rust's built-in testing
1184
- };
1185
-
1186
- // Check for databases
1187
- const databases: string[] = [];
1188
- if (cargoToml.includes('tokio-postgres') || cargoToml.includes('sqlx')) databases.push('postgresql');
1189
- if (cargoToml.includes('mysql_async')) databases.push('mysql');
1190
- if (cargoToml.includes('mongodb')) databases.push('mongodb');
1191
- if (databases.length > 0) stack.databases = databases;
1192
-
1193
- // Check for API frameworks
1194
- const apis: ('rest' | 'graphql' | 'grpc')[] = [];
1195
- if (cargoToml.includes('actix-web') || cargoToml.includes('rocket') || cargoToml.includes('axum')) apis.push('rest');
1196
- if (cargoToml.includes('async-graphql') || cargoToml.includes('juniper')) apis.push('graphql');
1197
- if (cargoToml.includes('tonic')) apis.push('grpc');
1198
- if (apis.length > 0) stack.apis = apis;
1199
- } catch (error) {
1200
- // Cargo.toml not found
1201
- }
1202
-
1203
- return stack;
1204
- }
1205
- ```
1206
-
1207
- **Step 4: Run test to verify it passes**
1208
-
1209
- Run: `pnpm test tests/testing/generators/rust.test.ts`
1210
- Expected: PASS
1211
-
1212
- **Step 5: Commit**
1213
-
1214
- ```bash
1215
- git add src/testing/generators/rust.ts src/testing/detectors/rust.ts tests/testing/generators/rust.test.ts
1216
- git commit -m "feat(testing): add Rust test generator with cargo test support
1217
-
1218
- - Generate Rust tests using #[test] attribute
1219
- - Support struct methods and standalone functions
1220
- - Extract functions and structs from Rust code
1221
- - Generate test modules following Rust conventions
1222
- - Support assert_eq! and other test macros
1223
-
1224
- Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>"
1225
- ```
1226
-
1227
- ---
1228
-
1229
- ## Task 5: Complexity Analyzer
1230
-
1231
- **Files:**
1232
- - Create: `src/testing/analyzers/complexity.ts`
1233
- - Create: `tests/testing/analyzers/complexity.test.ts`
1234
-
1235
- **Step 1: Write the failing test**
1236
-
1237
- Create `tests/testing/analyzers/complexity.test.ts`:
1238
-
1239
- ```typescript
1240
- import { describe, it, expect } from 'vitest';
1241
- import { analyzeComplexity } from '../../../src/testing/analyzers/complexity';
1242
-
1243
- describe('Complexity Analyzer', () => {
1244
- it('should classify simple function', async () => {
1245
- const simpleCode = `
1246
- export function add(a: number, b: number): number {
1247
- return a + b;
1248
- }
1249
- `;
1250
-
1251
- const result = await analyzeComplexity({
1252
- code: simpleCode,
1253
- filePath: 'src/utils/math.ts',
1254
- });
1255
-
1256
- expect(result.complexity).toBe('simple');
1257
- expect(result.metrics.lines).toBeLessThan(50);
1258
- expect(result.metrics.cyclomaticComplexity).toBeLessThan(10);
1259
- });
1260
-
1261
- it('should classify complex function', async () => {
1262
- const complexCode = `
1263
- export async function processPayment(order: Order, payment: PaymentInfo): Promise<PaymentResult> {
1264
- if (!order || !payment) {
1265
- throw new Error('Invalid input');
1266
- }
1267
-
1268
- try {
1269
- const customer = await getCustomer(order.customerId);
1270
- if (!customer.isActive) {
1271
- return { success: false, error: 'Inactive customer' };
1272
- }
1273
-
1274
- const stripeResult = await stripe.charges.create({
1275
- amount: order.total,
1276
- currency: 'usd',
1277
- source: payment.token,
1278
- });
1279
-
1280
- if (stripeResult.status === 'succeeded') {
1281
- await db.transaction(async (trx) => {
1282
- await trx('orders').where({ id: order.id }).update({ status: 'paid' });
1283
- await trx('payments').insert({ orderId: order.id, stripeId: stripeResult.id });
1284
- });
1285
-
1286
- return { success: true, transactionId: stripeResult.id };
1287
- } else {
1288
- return { success: false, error: 'Payment failed' };
1289
- }
1290
- } catch (error) {
1291
- logger.error('Payment processing error', error);
1292
- return { success: false, error: error.message };
1293
- }
1294
- }
1295
- `;
1296
-
1297
- const result = await analyzeComplexity({
1298
- code: complexCode,
1299
- filePath: 'src/services/payment.ts',
1300
- });
1301
-
1302
- expect(result.complexity).toBe('complex');
1303
- expect(result.reasons).toContain('External API calls');
1304
- expect(result.reasons).toContain('Database transactions');
1305
- });
1306
- });
1307
- ```
1308
-
1309
- **Step 2: Run test to verify it fails**
1310
-
1311
- Run: `pnpm test tests/testing/analyzers/complexity.test.ts`
1312
- Expected: FAIL with "Cannot find module"
1313
-
1314
- **Step 3: Implement complexity analyzer**
1315
-
1316
- Create `src/testing/analyzers/complexity.ts`:
1317
-
1318
- ```typescript
1319
- export interface ComplexityMetrics {
1320
- lines: number;
1321
- cyclomaticComplexity: number;
1322
- nestingLevel: number;
1323
- externalDependencies: number;
1324
- }
1325
-
1326
- export interface ComplexityAnalysisResult {
1327
- complexity: 'simple' | 'complex';
1328
- metrics: ComplexityMetrics;
1329
- reasons: string[];
1330
- }
1331
-
1332
- interface AnalyzeComplexityOptions {
1333
- code: string;
1334
- filePath: string;
1335
- }
1336
-
1337
- export async function analyzeComplexity(options: AnalyzeComplexityOptions): Promise<ComplexityAnalysisResult> {
1338
- const { code, filePath } = options;
1339
-
1340
- // Calculate metrics
1341
- const metrics = calculateMetrics(code);
1342
-
1343
- // Determine complexity and reasons
1344
- const reasons: string[] = [];
1345
- let isComplex = false;
1346
-
1347
- // Check line count
1348
- if (metrics.lines >= 50) {
1349
- reasons.push('Function exceeds 50 lines');
1350
- isComplex = true;
1351
- }
1352
-
1353
- // Check cyclomatic complexity
1354
- if (metrics.cyclomaticComplexity >= 10) {
1355
- reasons.push('High cyclomatic complexity');
1356
- isComplex = true;
1357
- }
1358
-
1359
- // Check nesting level
1360
- if (metrics.nestingLevel >= 3) {
1361
- reasons.push('Deep nesting level');
1362
- isComplex = true;
1363
- }
1364
-
1365
- // Check for external dependencies
1366
- if (metrics.externalDependencies > 0) {
1367
- reasons.push('External API calls');
1368
- isComplex = true;
1369
- }
1370
-
1371
- // Check for specific patterns
1372
- if (code.includes('stripe') || code.includes('paypal') || code.includes('payment')) {
1373
- reasons.push('Payment processing logic');
1374
- isComplex = true;
1375
- }
1376
-
1377
- if (code.includes('auth') || code.includes('jwt') || code.includes('session')) {
1378
- reasons.push('Authentication logic');
1379
- isComplex = true;
1380
- }
1381
-
1382
- if (code.includes('db.transaction') || code.includes('BEGIN') || code.includes('COMMIT')) {
1383
- reasons.push('Database transactions');
1384
- isComplex = true;
1385
- }
1386
-
1387
- if (code.includes('async') && code.includes('await')) {
1388
- const awaitCount = (code.match(/await/g) || []).length;
1389
- if (awaitCount > 3) {
1390
- reasons.push('Multiple async operations');
1391
- isComplex = true;
1392
- }
1393
- }
1394
-
1395
- return {
1396
- complexity: isComplex ? 'complex' : 'simple',
1397
- metrics,
1398
- reasons,
1399
- };
1400
- }
1401
-
1402
- function calculateMetrics(code: string): ComplexityMetrics {
1403
- const lines = code.split('\n').filter(line => line.trim() !== '').length;
1404
-
1405
- // Calculate cyclomatic complexity (simplified)
1406
- const cyclomaticComplexity = calculateCyclomaticComplexity(code);
1407
-
1408
- // Calculate nesting level
1409
- const nestingLevel = calculateNestingLevel(code);
1410
-
1411
- // Count external dependencies
1412
- const externalDependencies = countExternalDependencies(code);
1413
-
1414
- return {
1415
- lines,
1416
- cyclomaticComplexity,
1417
- nestingLevel,
1418
- externalDependencies,
1419
- };
1420
- }
1421
-
1422
- function calculateCyclomaticComplexity(code: string): number {
1423
- // Start with 1 (base complexity)
1424
- let complexity = 1;
1425
-
1426
- // Count decision points
1427
- const decisionPoints = [
1428
- /\bif\b/g,
1429
- /\belse\s+if\b/g,
1430
- /\bfor\b/g,
1431
- /\bwhile\b/g,
1432
- /\bcase\b/g,
1433
- /\bcatch\b/g,
1434
- /\b\?\s*.*\s*:/g, // Ternary operator
1435
- /\b&&\b/g,
1436
- /\b\|\|\b/g,
1437
- ];
1438
-
1439
- for (const pattern of decisionPoints) {
1440
- const matches = code.match(pattern);
1441
- if (matches) {
1442
- complexity += matches.length;
1443
- }
1444
- }
1445
-
1446
- return complexity;
1447
- }
1448
-
1449
- function calculateNestingLevel(code: string): number {
1450
- let maxNesting = 0;
1451
- let currentNesting = 0;
1452
-
1453
- for (const char of code) {
1454
- if (char === '{') {
1455
- currentNesting++;
1456
- maxNesting = Math.max(maxNesting, currentNesting);
1457
- } else if (char === '}') {
1458
- currentNesting--;
1459
- }
1460
- }
1461
-
1462
- return maxNesting;
1463
- }
1464
-
1465
- function countExternalDependencies(code: string): number {
1466
- let count = 0;
1467
-
1468
- // Check for HTTP/API calls
1469
- if (code.includes('fetch(') || code.includes('axios.') || code.includes('http.')) {
1470
- count++;
1471
- }
1472
-
1473
- // Check for external service SDKs
1474
- const externalServices = ['stripe', 'aws', 'firebase', 'sendgrid', 'twilio'];
1475
- for (const service of externalServices) {
1476
- if (code.includes(service)) {
1477
- count++;
1478
- }
1479
- }
1480
-
1481
- return count;
1482
- }
1483
- ```
1484
-
1485
- **Step 4: Run test to verify it passes**
1486
-
1487
- Run: `pnpm test tests/testing/analyzers/complexity.test.ts`
1488
- Expected: PASS
1489
-
1490
- **Step 5: Commit**
1491
-
1492
- ```bash
1493
- git add src/testing/analyzers/complexity.ts tests/testing/analyzers/complexity.test.ts
1494
- git commit -m "feat(testing): add complexity analyzer for code classification
1495
-
1496
- - Calculate cyclomatic complexity
1497
- - Measure nesting levels and line counts
1498
- - Detect external dependencies
1499
- - Identify payment, auth, and transaction logic
1500
- - Classify code as simple or complex
1501
-
1502
- Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>"
1503
- ```
1504
-
1505
- ---
1506
-
1507
- ## Task 6: Contract Test Generator
1508
-
1509
- **Files:**
1510
- - Create: `src/testing/generators/contract.ts`
1511
- - Create: `tests/testing/generators/contract.test.ts`
1512
-
1513
- **Step 1: Write the failing test**
1514
-
1515
- Create `tests/testing/generators/contract.test.ts`:
1516
-
1517
- ```typescript
1518
- import { describe, it, expect } from 'vitest';
1519
- import { generateContractTest } from '../../../src/testing/generators/contract';
1520
-
1521
- describe('Contract Test Generator', () => {
1522
- it('should generate Pact test from OpenAPI spec', async () => {
1523
- const openApiSpec = {
1524
- openapi: '3.0.0',
1525
- paths: {
1526
- '/users/{id}': {
1527
- get: {
1528
- parameters: [{ name: 'id', in: 'path', required: true, schema: { type: 'string' } }],
1529
- responses: {
1530
- '200': {
1531
- description: 'User found',
1532
- content: {
1533
- 'application/json': {
1534
- schema: {
1535
- type: 'object',
1536
- properties: {
1537
- id: { type: 'string' },
1538
- name: { type: 'string' },
1539
- email: { type: 'string' },
1540
- },
1541
- },
1542
- },
1543
- },
1544
- },
1545
- },
1546
- },
1547
- },
1548
- },
1549
- };
1550
-
1551
- const result = await generateContractTest({
1552
- spec: openApiSpec,
1553
- framework: 'pact',
1554
- consumer: 'frontend',
1555
- provider: 'backend',
1556
- });
1557
-
1558
- expect(result.testCode).toContain('pact');
1559
- expect(result.testCode).toContain('/users/{id}');
1560
- expect(result.testCode).toContain('willRespondWith');
1561
- });
1562
-
1563
- it('should generate REST API contract test', async () => {
1564
- const apiDefinition = {
1565
- endpoint: '/api/orders',
1566
- method: 'POST',
1567
- requestBody: {
1568
- customerId: 'string',
1569
- items: 'array',
1570
- total: 'number',
1571
- },
1572
- responseBody: {
1573
- orderId: 'string',
1574
- status: 'string',
1575
- },
1576
- };
1577
-
1578
- const result = await generateContractTest({
1579
- apiDefinition,
1580
- framework: 'supertest',
1581
- });
1582
-
1583
- expect(result.testCode).toContain('POST /api/orders');
1584
- expect(result.testCode).toContain('expect(200)');
1585
- });
1586
- });
1587
- ```
1588
-
1589
- **Step 2: Run test to verify it fails**
1590
-
1591
- Run: `pnpm test tests/testing/generators/contract.test.ts`
1592
- Expected: FAIL with "Cannot find module"
1593
-
1594
- **Step 3: Implement contract test generator**
1595
-
1596
- Create `src/testing/generators/contract.ts`:
1597
-
1598
- ```typescript
1599
- interface ContractTestOptions {
1600
- spec?: any; // OpenAPI spec
1601
- apiDefinition?: any; // Simple API definition
1602
- framework: 'pact' | 'supertest' | 'msw';
1603
- consumer?: string;
1604
- provider?: string;
1605
- }
1606
-
1607
- interface ContractTestResult {
1608
- testCode: string;
1609
- testFilePath: string;
1610
- }
1611
-
1612
- export async function generateContractTest(options: ContractTestOptions): Promise<ContractTestResult> {
1613
- const { spec, apiDefinition, framework, consumer, provider } = options;
1614
-
1615
- let testCode = '';
1616
- let testFilePath = '';
1617
-
1618
- if (framework === 'pact' && spec) {
1619
- testCode = generatePactTest(spec, consumer || 'consumer', provider || 'provider');
1620
- testFilePath = `tests/contract/${consumer}-${provider}.pact.test.ts`;
1621
- } else if (framework === 'supertest' && apiDefinition) {
1622
- testCode = generateSupertestContract(apiDefinition);
1623
- testFilePath = `tests/contract/api.contract.test.ts`;
1624
- } else if (framework === 'msw' && spec) {
1625
- testCode = generateMSWHandlers(spec);
1626
- testFilePath = `tests/mocks/handlers.ts`;
1627
- }
1628
-
1629
- return { testCode, testFilePath };
1630
- }
1631
-
1632
- function generatePactTest(spec: any, consumer: string, provider: string): string {
1633
- const paths = spec.paths || {};
1634
- const interactions: string[] = [];
1635
-
1636
- for (const [path, methods] of Object.entries(paths)) {
1637
- for (const [method, details] of Object.entries(methods as any)) {
1638
- const interaction = generatePactInteraction(path, method.toUpperCase(), details);
1639
- interactions.push(interaction);
1640
- }
1641
- }
1642
-
1643
- return `import { Pact } from '@pact-foundation/pact';
1644
- import { like, eachLike } from '@pact-foundation/pact/dsl/matchers';
1645
-
1646
- describe('${consumer} <-> ${provider} Contract', () => {
1647
- const provider = new Pact({
1648
- consumer: '${consumer}',
1649
- provider: '${provider}',
1650
- port: 1234,
1651
- log: './logs/pact.log',
1652
- dir: './pacts',
1653
- });
1654
-
1655
- beforeAll(() => provider.setup());
1656
- afterEach(() => provider.verify());
1657
- afterAll(() => provider.finalize());
1658
-
1659
- ${interactions.join('\n\n')}
1660
- });
1661
- `;
1662
- }
1663
-
1664
- function generatePactInteraction(path: string, method: string, details: any): string {
1665
- const response = details.responses?.['200'] || details.responses?.['201'];
1666
- const responseSchema = response?.content?.['application/json']?.schema;
1667
-
1668
- const responseBody = responseSchema ? generateMatcherFromSchema(responseSchema) : '{}';
1669
-
1670
- return ` it('${method} ${path}', async () => {
1671
- await provider.addInteraction({
1672
- state: 'resource exists',
1673
- uponReceiving: '${method} request to ${path}',
1674
- withRequest: {
1675
- method: '${method}',
1676
- path: '${path}',
1677
- },
1678
- willRespondWith: {
1679
- status: 200,
1680
- headers: { 'Content-Type': 'application/json' },
1681
- body: ${responseBody},
1682
- },
1683
- });
1684
-
1685
- // Make actual request and verify
1686
- const response = await fetch(\`http://localhost:1234${path}\`);
1687
- expect(response.status).toBe(200);
1688
- });`;
1689
- }
1690
-
1691
- function generateMatcherFromSchema(schema: any): string {
1692
- if (schema.type === 'object') {
1693
- const properties = schema.properties || {};
1694
- const matchers: string[] = [];
1695
-
1696
- for (const [key, prop] of Object.entries(properties as any)) {
1697
- if (prop.type === 'string') {
1698
- matchers.push(`${key}: like('example')`);
1699
- } else if (prop.type === 'number') {
1700
- matchers.push(`${key}: like(123)`);
1701
- } else if (prop.type === 'boolean') {
1702
- matchers.push(`${key}: like(true)`);
1703
- } else if (prop.type === 'array') {
1704
- matchers.push(`${key}: eachLike({ id: like('1') })`);
1705
- }
1706
- }
1707
-
1708
- return `{ ${matchers.join(', ')} }`;
1709
- }
1710
-
1711
- return '{}';
1712
- }
1713
-
1714
- function generateSupertestContract(apiDefinition: any): string {
1715
- const { endpoint, method, requestBody, responseBody } = apiDefinition;
1716
-
1717
- const requestExample = generateExampleFromSchema(requestBody);
1718
- const responseExample = generateExampleFromSchema(responseBody);
1719
-
1720
- return `import request from 'supertest';
1721
- import app from '../src/app';
1722
-
1723
- describe('API Contract Tests', () => {
1724
- it('${method} ${endpoint} should match contract', async () => {
1725
- const response = await request(app)
1726
- .${method.toLowerCase()}('${endpoint}')
1727
- .send(${JSON.stringify(requestExample, null, 2)})
1728
- .expect(200)
1729
- .expect('Content-Type', /json/);
1730
-
1731
- // Verify response structure
1732
- expect(response.body).toMatchObject(${JSON.stringify(responseExample, null, 2)});
1733
- });
1734
- });
1735
- `;
1736
- }
1737
-
1738
- function generateMSWHandlers(spec: any): string {
1739
- const paths = spec.paths || {};
1740
- const handlers: string[] = [];
1741
-
1742
- for (const [path, methods] of Object.entries(paths)) {
1743
- for (const [method, details] of Object.entries(methods as any)) {
1744
- const handler = generateMSWHandler(path, method, details);
1745
- handlers.push(handler);
1746
- }
1747
- }
1748
-
1749
- return `import { rest } from 'msw';
1750
-
1751
- export const handlers = [
1752
- ${handlers.join(',\n\n')}
1753
- ];
1754
- `;
1755
- }
1756
-
1757
- function generateMSWHandler(path: string, method: string, details: any): string {
1758
- const response = details.responses?.['200'] || details.responses?.['201'];
1759
- const responseSchema = response?.content?.['application/json']?.schema;
1760
- const responseExample = responseSchema ? generateExampleFromSchema(responseSchema.properties || {}) : {};
1761
-
1762
- return ` rest.${method.toLowerCase()}('${path}', (req, res, ctx) => {
1763
- return res(
1764
- ctx.status(200),
1765
- ctx.json(${JSON.stringify(responseExample, null, 2)})
1766
- );
1767
- })`;
1768
- }
1769
-
1770
- function generateExampleFromSchema(schema: any): any {
1771
- if (typeof schema === 'string') {
1772
- return schema === 'string' ? 'example' : schema === 'number' ? 123 : schema === 'boolean' ? true : [];
1773
- }
1774
-
1775
- const example: any = {};
1776
-
1777
- for (const [key, type] of Object.entries(schema)) {
1778
- if (type === 'string') {
1779
- example[key] = 'example';
1780
- } else if (type === 'number') {
1781
- example[key] = 123;
1782
- } else if (type === 'boolean') {
1783
- example[key] = true;
1784
- } else if (type === 'array') {
1785
- example[key] = [];
1786
- }
1787
- }
1788
-
1789
- return example;
1790
- }
1791
- ```
1792
-
1793
- **Step 4: Run test to verify it passes**
1794
-
1795
- Run: `pnpm test tests/testing/generators/contract.test.ts`
1796
- Expected: PASS
1797
-
1798
- **Step 5: Commit**
1799
-
1800
- ```bash
1801
- git add src/testing/generators/contract.ts tests/testing/generators/contract.test.ts
1802
- git commit -m "feat(testing): add contract test generator for APIs
1803
-
1804
- - Generate Pact consumer-driven contract tests
1805
- - Support Supertest for REST API contracts
1806
- - Generate MSW handlers from OpenAPI specs
1807
- - Parse OpenAPI 3.0 specifications
1808
- - Create example data from schemas
1809
-
1810
- Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>"
1811
- ```
1812
-
1813
- ---
1814
-
1815
- ## Task 7: Enhanced Test-Engineer Agent Integration
1816
-
1817
- **Files:**
1818
- - Update: `agents/test-engineer.md`
1819
- - Create: `src/testing/cli/agent-integration.ts`
1820
- - Create: `tests/testing/cli/agent-integration.test.ts`
1821
-
1822
- **Step 1: Write the failing test**
1823
-
1824
- Create `tests/testing/cli/agent-integration.test.ts`:
1825
-
1826
- ```typescript
1827
- import { describe, it, expect } from 'vitest';
1828
- import { prepareTestEngineerContext } from '../../../src/testing/cli/agent-integration';
1829
-
1830
- describe('Test-Engineer Agent Integration', () => {
1831
- it('should prepare context for simple code', async () => {
1832
- const context = await prepareTestEngineerContext({
1833
- filePath: 'src/utils/math.ts',
1834
- code: 'export function add(a: number, b: number) { return a + b; }',
1835
- projectRoot: process.cwd(),
1836
- });
1837
-
1838
- expect(context.complexity).toBe('simple');
1839
- expect(context.techStack).toBeDefined();
1840
- expect(context.suggestedApproach).toBe('auto-generate');
1841
- });
1842
-
1843
- it('should prepare context for complex code', async () => {
1844
- const complexCode = `
1845
- export async function processPayment(order: Order) {
1846
- const stripe = await getStripeClient();
1847
- const result = await stripe.charges.create({ amount: order.total });
1848
- await db.transaction(async (trx) => {
1849
- await trx('orders').update({ status: 'paid' });
1850
- });
1851
- return result;
1852
- }
1853
- `;
1854
-
1855
- const context = await prepareTestEngineerContext({
1856
- filePath: 'src/services/payment.ts',
1857
- code: complexCode,
1858
- projectRoot: process.cwd(),
1859
- });
1860
-
1861
- expect(context.complexity).toBe('complex');
1862
- expect(context.suggestedApproach).toBe('guided');
1863
- expect(context.questionsForUser).toBeDefined();
1864
- });
1865
- });
1866
- ```
1867
-
1868
- **Step 2: Run test to verify it fails**
1869
-
1870
- Run: `pnpm test tests/testing/cli/agent-integration.test.ts`
1871
- Expected: FAIL with "Cannot find module"
1872
-
1873
- **Step 3: Implement agent integration**
1874
-
1875
- Create `src/testing/cli/agent-integration.ts`:
1876
-
1877
- ```typescript
1878
- import { detectTechStack } from '../detectors';
1879
- import { analyzeComplexity } from '../analyzers/complexity';
1880
- import type { TechStack } from '../types';
1881
- import type { ComplexityAnalysisResult } from '../analyzers/complexity';
1882
-
1883
- export interface TestEngineerContext {
1884
- filePath: string;
1885
- code: string;
1886
- techStack: TechStack;
1887
- complexity: 'simple' | 'complex';
1888
- complexityMetrics: ComplexityAnalysisResult;
1889
- suggestedApproach: 'auto-generate' | 'guided' | 'manual';
1890
- questionsForUser?: string[];
1891
- }
1892
-
1893
- interface PrepareContextOptions {
1894
- filePath: string;
1895
- code: string;
1896
- projectRoot: string;
1897
- }
1898
-
1899
- export async function prepareTestEngineerContext(options: PrepareContextOptions): Promise<TestEngineerContext> {
1900
- const { filePath, code, projectRoot } = options;
1901
-
1902
- // Detect tech stack
1903
- const techStack = await detectTechStack(projectRoot);
1904
-
1905
- // Analyze complexity
1906
- const complexityMetrics = await analyzeComplexity({ code, filePath });
1907
-
1908
- // Determine suggested approach
1909
- let suggestedApproach: 'auto-generate' | 'guided' | 'manual';
1910
- let questionsForUser: string[] | undefined;
1911
-
1912
- if (complexityMetrics.complexity === 'simple') {
1913
- suggestedApproach = 'auto-generate';
1914
- } else {
1915
- suggestedApproach = 'guided';
1916
- questionsForUser = generateQuestionsForComplexCode(complexityMetrics);
1917
- }
1918
-
1919
- return {
1920
- filePath,
1921
- code,
1922
- techStack,
1923
- complexity: complexityMetrics.complexity,
1924
- complexityMetrics,
1925
- suggestedApproach,
1926
- questionsForUser,
1927
- };
1928
- }
1929
-
1930
- function generateQuestionsForComplexCode(metrics: ComplexityAnalysisResult): string[] {
1931
- const questions: string[] = [];
1932
-
1933
- if (metrics.reasons.includes('Payment processing logic')) {
1934
- questions.push('What are the expected payment flows? (success, failure, retry)');
1935
- questions.push('Should I mock external payment provider API calls?');
1936
- questions.push('What error scenarios should be tested?');
1937
- }
1938
-
1939
- if (metrics.reasons.includes('Authentication logic')) {
1940
- questions.push('What authentication methods should be tested?');
1941
- questions.push('Should I test token expiration and refresh?');
1942
- questions.push('What authorization scenarios should be covered?');
1943
- }
1944
-
1945
- if (metrics.reasons.includes('Database transactions')) {
1946
- questions.push('What database states should I test?');
1947
- questions.push('Should I test transaction rollbacks?');
1948
- questions.push('Are there specific edge cases for data integrity?');
1949
- }
1950
-
1951
- if (metrics.reasons.includes('External API calls')) {
1952
- questions.push('Should I mock external API calls?');
1953
- questions.push('What API failure scenarios should be tested?');
1954
- questions.push('Are there rate limiting or retry logic to test?');
1955
- }
1956
-
1957
- if (metrics.reasons.includes('Multiple async operations')) {
1958
- questions.push('Should I test concurrent execution scenarios?');
1959
- questions.push('Are there race conditions to consider?');
1960
- questions.push('What timeout scenarios should be tested?');
1961
- }
1962
-
1963
- // Always ask about edge cases
1964
- questions.push('Are there specific edge cases or business rules I should know about?');
1965
-
1966
- return questions;
1967
- }
1968
-
1969
- export async function invokeTestEngineerAgent(context: TestEngineerContext): Promise<string> {
1970
- // This would integrate with the actual test-engineer agent
1971
- // For now, return a placeholder command
1972
-
1973
- const agentCommand = `test-engineer --file="${context.filePath}" --complexity="${context.complexity}" --approach="${context.suggestedApproach}"`;
1974
-
1975
- return agentCommand;
1976
- }
1977
- ```
1978
-
1979
- **Step 4: Update test-engineer agent document**
1980
-
1981
- Update `agents/test-engineer.md` to add:
1982
-
1983
- ```markdown
1984
- ## Enhanced Integration with Test Generation System
1985
-
1986
- ### Automatic Context Enrichment
1987
-
1988
- When invoked for test generation, test-engineer receives enriched context:
1989
-
1990
- - **Tech Stack**: Detected frameworks, languages, and test tools
1991
- - **Complexity Analysis**: Metrics including cyclomatic complexity, nesting levels, external dependencies
1992
- - **Suggested Approach**:
1993
- - `auto-generate`: Simple code, generate tests automatically
1994
- - `guided`: Complex code, ask user for clarification
1995
- - `manual`: Very complex, provide framework and guidance only
1996
-
1997
- ### Workflow for Complex Code
1998
-
1999
- When complexity is `complex`:
2000
-
2001
- 1. **Review Context**: Examine complexity metrics and reasons
2002
- 2. **Ask Questions**: Use pre-generated questions based on complexity reasons
2003
- 3. **Generate Test Framework**: Create test structure with placeholders
2004
- 4. **Fill in Details**: Based on user answers, complete test cases
2005
- 5. **Verify Coverage**: Ensure all identified complexity factors are tested
2006
-
2007
- ### Example Invocation
2008
-
2009
- ```typescript
2010
- const context = await prepareTestEngineerContext({
2011
- filePath: 'src/services/payment.ts',
2012
- code: paymentServiceCode,
2013
- projectRoot: '/project/root',
2014
- });
2015
-
2016
- // Context includes:
2017
- // - techStack: { backend: { language: 'nodejs', testFramework: 'vitest' } }
2018
- // - complexity: 'complex'
2019
- // - complexityMetrics: { lines: 75, cyclomaticComplexity: 15, ... }
2020
- // - suggestedApproach: 'guided'
2021
- // - questionsForUser: ['What payment flows...', 'Should I mock...']
2022
- ```
2023
-
2024
- ### Integration with /test-gen Skill
2025
-
2026
- The `/test-gen` skill automatically prepares this context before delegating to test-engineer:
2027
-
2028
- 1. User runs `/test-gen src/services/payment.ts`
2029
- 2. System detects tech stack and analyzes complexity
2030
- 3. If complex, prepares questions and delegates to test-engineer
2031
- 4. Test-engineer asks questions and generates comprehensive tests
2032
- 5. System verifies tests and commits
2033
-
2034
- ### Success Criteria
2035
-
2036
- - [ ] Context preparation includes all necessary information
2037
- - [ ] Questions are relevant to complexity reasons
2038
- - [ ] Test-engineer can generate appropriate tests for both simple and complex code
2039
- - [ ] Integration with /test-gen skill is seamless
2040
- ```
2041
-
2042
- **Step 5: Run test to verify it passes**
2043
-
2044
- Run: `pnpm test tests/testing/cli/agent-integration.test.ts`
2045
- Expected: PASS
2046
-
2047
- **Step 6: Commit**
2048
-
2049
- ```bash
2050
- git add src/testing/cli/agent-integration.ts tests/testing/cli/agent-integration.test.ts agents/test-engineer.md
2051
- git commit -m "feat(testing): enhance test-engineer agent integration
2052
-
2053
- - Prepare enriched context with tech stack and complexity
2054
- - Generate relevant questions for complex code
2055
- - Determine suggested approach (auto/guided/manual)
2056
- - Update test-engineer agent documentation
2057
- - Support seamless integration with /test-gen skill
2058
-
2059
- Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>"
2060
- ```
2061
-
2062
- ---
2063
-
2064
- ## Task 8: Ultraqa Integration
2065
-
2066
- **Files:**
2067
- - Update: `skills/ultraqa.md`
2068
- - Create: `src/testing/cli/ultraqa-integration.ts`
2069
- - Create: `tests/testing/cli/ultraqa-integration.test.ts`
2070
-
2071
- **Step 1: Write the failing test**
2072
-
2073
- Create `tests/testing/cli/ultraqa-integration.test.ts`:
2074
-
2075
- ```typescript
2076
- import { describe, it, expect } from 'vitest';
2077
- import { enhanceUltraQAWithTestGen } from '../../../src/testing/cli/ultraqa-integration';
2078
-
2079
- describe('UltraQA Integration', () => {
2080
- it('should identify files needing tests', async () => {
2081
- const result = await enhanceUltraQAWithTestGen({
2082
- projectRoot: process.cwd(),
2083
- changedFiles: ['src/utils/math.ts', 'src/services/payment.ts'],
2084
- });
2085
-
2086
- expect(result.filesNeedingTests).toHaveLength(2);
2087
- expect(result.coverageGaps).toBeDefined();
2088
- });
2089
-
2090
- it('should generate tests for coverage gaps', async () => {
2091
- const result = await enhanceUltraQAWithTestGen({
2092
- projectRoot: process.cwd(),
2093
- coverageGaps: [
2094
- { file: 'src/utils/validation.ts', startLine: 42, endLine: 48, reason: 'Error handling not covered' },
2095
- ],
2096
- });
2097
-
2098
- expect(result.generatedTests).toHaveLength(1);
2099
- });
2100
- });
2101
- ```
2102
-
2103
- **Step 2: Run test to verify it fails**
2104
-
2105
- Run: `pnpm test tests/testing/cli/ultraqa-integration.test.ts`
2106
- Expected: FAIL with "Cannot find module"
2107
-
2108
- **Step 3: Implement ultraqa integration**
2109
-
2110
- Create `src/testing/cli/ultraqa-integration.ts`:
2111
-
2112
- ```typescript
2113
- import fs from 'fs/promises';
2114
- import path from 'path';
2115
- import { analyzeCoverage, identifyGaps } from '../analyzers/coverage';
2116
- import { testGenCommand } from './commands';
2117
- import type { CoverageGap } from '../analyzers/types';
2118
-
2119
- interface UltraQAOptions {
2120
- projectRoot: string;
2121
- changedFiles?: string[];
2122
- coverageGaps?: CoverageGap[];
2123
- }
2124
-
2125
- interface UltraQAResult {
2126
- filesNeedingTests: string[];
2127
- coverageGaps?: CoverageGap[];
2128
- generatedTests: string[];
2129
- }
2130
-
2131
- export async function enhanceUltraQAWithTestGen(options: UltraQAOptions): Promise<UltraQAResult> {
2132
- const { projectRoot, changedFiles, coverageGaps } = options;
2133
-
2134
- const filesNeedingTests: string[] = [];
2135
- const generatedTests: string[] = [];
2136
-
2137
- // If changed files provided, check which ones need tests
2138
- if (changedFiles) {
2139
- for (const file of changedFiles) {
2140
- const needsTest = await checkIfNeedsTest(file, projectRoot);
2141
- if (needsTest) {
2142
- filesNeedingTests.push(file);
2143
- }
2144
- }
2145
- }
2146
-
2147
- // If coverage gaps provided, generate tests for them
2148
- if (coverageGaps) {
2149
- for (const gap of coverageGaps) {
2150
- try {
2151
- const result = await testGenCommand({
2152
- filePath: path.join(projectRoot, gap.file),
2153
- });
2154
-
2155
- if (result.success && result.testFilePath) {
2156
- generatedTests.push(result.testFilePath);
2157
- }
2158
- } catch (error) {
2159
- console.error(`Failed to generate test for ${gap.file}:`, error);
2160
- }
2161
- }
2162
- }
2163
-
2164
- // Analyze coverage if no gaps provided
2165
- let gaps: CoverageGap[] | undefined;
2166
- if (!coverageGaps) {
2167
- try {
2168
- const coverageResult = await analyzeCoverage({ projectRoot });
2169
- if (coverageResult.totalCoverage < 80) {
2170
- // Identify gaps
2171
- const gapResult = await identifyGaps({
2172
- projectRoot,
2173
- uncoveredLines: {}, // Would be populated from coverage report
2174
- });
2175
- gaps = gapResult.gaps;
2176
- }
2177
- } catch (error) {
2178
- // Coverage not available
2179
- }
2180
- }
2181
-
2182
- return {
2183
- filesNeedingTests,
2184
- coverageGaps: gaps,
2185
- generatedTests,
2186
- };
2187
- }
2188
-
2189
- async function checkIfNeedsTest(filePath: string, projectRoot: string): Promise<boolean> {
2190
- // Check if test file already exists
2191
- const testFilePath = filePath.replace(/\.(ts|js|tsx|jsx)$/, '.test.$1');
2192
- const fullTestPath = path.join(projectRoot, testFilePath);
2193
-
2194
- try {
2195
- await fs.access(fullTestPath);
2196
- return false; // Test file exists
2197
- } catch {
2198
- return true; // Test file doesn't exist
2199
- }
2200
- }
2201
- ```
2202
-
2203
- **Step 4: Update ultraqa skill document**
2204
-
2205
- Update `skills/ultraqa.md` to add:
2206
-
2207
- ```markdown
2208
- ## Enhanced Test Generation Integration
2209
-
2210
- ### Automatic Test Generation
2211
-
2212
- UltraQA now automatically generates missing tests during the QA cycle:
2213
-
2214
- 1. **Identify Missing Tests**: Check which changed files lack test coverage
2215
- 2. **Generate Tests**: Use `/test-gen` to create tests for uncovered files
2216
- 3. **Run Tests**: Execute generated tests
2217
- 4. **Analyze Coverage**: Identify remaining gaps
2218
- 5. **Fix Issues**: If tests fail, fix and regenerate
2219
- 6. **Repeat**: Continue until coverage threshold met (default: 80%)
2220
-
2221
- ### Workflow
2222
-
2223
- ```
2224
- User: /ultraqa
2225
-
2226
- Agent: Starting UltraQA cycle...
2227
-
2228
- Agent: Analyzing changed files...
2229
- - src/utils/math.ts (no test file)
2230
- - src/services/payment.ts (test exists, but coverage 45%)
2231
-
2232
- Agent: Generating missing tests...
2233
- ✅ Generated: src/utils/math.test.ts
2234
-
2235
- Agent: Analyzing coverage gaps in src/services/payment.ts...
2236
- - Lines 42-48: Error handling not covered
2237
- - Lines 67-72: Edge case for retries
2238
-
2239
- Agent: Generating supplementary tests...
2240
- ✅ Added 3 test cases to src/services/payment.test.ts
2241
-
2242
- Agent: Running all tests...
2243
- ✅ All tests passing
2244
-
2245
- Agent: Coverage analysis...
2246
- - Overall coverage: 85%
2247
- - src/utils/math.ts: 100%
2248
- - src/services/payment.ts: 82%
2249
-
2250
- ✅ UltraQA cycle complete. Coverage threshold met.
2251
- ```
2252
-
2253
- ### Configuration
2254
-
2255
- Add to `.omc/project-config.json`:
2256
-
2257
- ```json
2258
- {
2259
- "ultraqa": {
2260
- "autoGenerateTests": true,
2261
- "coverageThreshold": 80,
2262
- "maxCycles": 5
2263
- }
2264
- }
2265
- ```
2266
- ```
2267
-
2268
- **Step 5: Run test to verify it passes**
2269
-
2270
- Run: `pnpm test tests/testing/cli/ultraqa-integration.test.ts`
2271
- Expected: PASS
2272
-
2273
- **Step 6: Commit**
2274
-
2275
- ```bash
2276
- git add src/testing/cli/ultraqa-integration.ts tests/testing/cli/ultraqa-integration.test.ts skills/ultraqa.md
2277
- git commit -m "feat(testing): integrate test generation with /ultraqa workflow
2278
-
2279
- - Automatically identify files needing tests
2280
- - Generate tests for coverage gaps
2281
- - Enhance ultraqa cycle with test generation
2282
- - Support coverage threshold configuration
2283
- - Update ultraqa skill documentation
2284
-
2285
- Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>"
2286
- ```
2287
-
2288
- ---
2289
-
2290
- ## Task 9: Multi-Language CLI Integration
2291
-
2292
- **Files:**
2293
- - Update: `src/testing/cli/commands.ts`
2294
- - Update: `src/testing/detectors/index.ts`
2295
- - Create: `tests/testing/cli/multi-language.test.ts`
2296
-
2297
- **Step 1: Write the failing test**
2298
-
2299
- Create `tests/testing/cli/multi-language.test.ts`:
2300
-
2301
- ```typescript
2302
- import { describe, it, expect } from 'vitest';
2303
- import { testGenCommand } from '../../../src/testing/cli/commands';
2304
-
2305
- describe('Multi-Language Test Generation', () => {
2306
- it('should generate Python test', async () => {
2307
- const result = await testGenCommand({
2308
- filePath: 'src/utils/math.py',
2309
- language: 'python',
2310
- });
2311
-
2312
- expect(result.success).toBe(true);
2313
- expect(result.testFilePath).toContain('test_math.py');
2314
- });
2315
-
2316
- it('should generate Go test', async () => {
2317
- const result = await testGenCommand({
2318
- filePath: 'pkg/math/math.go',
2319
- language: 'go',
2320
- });
2321
-
2322
- expect(result.success).toBe(true);
2323
- expect(result.testFilePath).toContain('math_test.go');
2324
- });
2325
-
2326
- it('should generate Rust test', async () => {
2327
- const result = await testGenCommand({
2328
- filePath: 'src/math.rs',
2329
- language: 'rust',
2330
- });
2331
-
2332
- expect(result.success).toBe(true);
2333
- expect(result.testFilePath).toBe('src/math.rs'); // Rust tests in same file
2334
- });
2335
-
2336
- it('should auto-detect language from file extension', async () => {
2337
- const pythonResult = await testGenCommand({
2338
- filePath: 'src/utils/math.py',
2339
- });
2340
-
2341
- expect(pythonResult.success).toBe(true);
2342
-
2343
- const goResult = await testGenCommand({
2344
- filePath: 'pkg/math/math.go',
2345
- });
2346
-
2347
- expect(goResult.success).toBe(true);
2348
- });
2349
- });
2350
- ```
2351
-
2352
- **Step 2: Run test to verify it fails**
2353
-
2354
- Run: `pnpm test tests/testing/cli/multi-language.test.ts`
2355
- Expected: FAIL (multi-language support not yet integrated)
2356
-
2357
- **Step 3: Update CLI commands to support all languages**
2358
-
2359
- Update `src/testing/cli/commands.ts`:
2360
-
2361
- ```typescript
2362
- import { generatePythonTest } from '../generators/python';
2363
- import { generateGoTest } from '../generators/go';
2364
- import { generateRustTest } from '../generators/rust';
2365
- import { detectPythonStack } from '../detectors/python';
2366
- import { detectGoStack } from '../detectors/go';
2367
- import { detectRustStack } from '../detectors/rust';
2368
-
2369
- // Add to existing TestGenOptions interface
2370
- interface TestGenOptions {
2371
- filePath: string;
2372
- output?: string;
2373
- language?: 'nodejs' | 'python' | 'go' | 'rust'; // Add language option
2374
- }
2375
-
2376
- // Update testGenCommand function
2377
- export async function testGenCommand(options: TestGenOptions): Promise<TestGenResult> {
2378
- try {
2379
- const { filePath, output, language } = options;
2380
-
2381
- // Read source file
2382
- const code = await fs.readFile(filePath, 'utf-8');
2383
-
2384
- // Auto-detect language if not provided
2385
- const detectedLanguage = language || detectLanguageFromFile(filePath);
2386
-
2387
- // Detect tech stack
2388
- const projectRoot = process.cwd();
2389
- let stack = await detectTechStack(projectRoot);
2390
-
2391
- // Enhance with language-specific detection
2392
- if (detectedLanguage === 'python') {
2393
- const pythonStack = await detectPythonStack(projectRoot);
2394
- stack = { ...stack, ...pythonStack };
2395
- } else if (detectedLanguage === 'go') {
2396
- const goStack = await detectGoStack(projectRoot);
2397
- stack = { ...stack, ...goStack };
2398
- } else if (detectedLanguage === 'rust') {
2399
- const rustStack = await detectRustStack(projectRoot);
2400
- stack = { ...stack, ...rustStack };
2401
- }
2402
-
2403
- // Generate test based on language
2404
- let result;
2405
-
2406
- if (detectedLanguage === 'python') {
2407
- result = await generatePythonTest({
2408
- filePath,
2409
- code,
2410
- testFramework: stack.backend?.testFramework || 'pytest',
2411
- });
2412
- } else if (detectedLanguage === 'go') {
2413
- // Extract package name from file
2414
- const packageMatch = code.match(/package\s+(\w+)/);
2415
- const packageName = packageMatch ? packageMatch[1] : 'main';
2416
-
2417
- result = await generateGoTest({
2418
- filePath,
2419
- code,
2420
- packageName,
2421
- });
2422
- } else if (detectedLanguage === 'rust') {
2423
- result = await generateRustTest({
2424
- filePath,
2425
- code,
2426
- });
2427
- } else if (filePath.match(/\.(tsx|jsx)$/) && stack.frontend?.framework === 'react') {
2428
- result = await generateReactTest({
2429
- filePath,
2430
- code,
2431
- testFramework: stack.frontend.testFramework || 'vitest',
2432
- });
2433
- } else if (filePath.match(/\.ts$/)) {
2434
- result = await generateNodeJsTest({
2435
- filePath,
2436
- code,
2437
- testFramework: stack.backend?.testFramework || 'vitest',
2438
- });
2439
- } else {
2440
- return {
2441
- success: false,
2442
- error: `Unsupported file type or language: ${detectedLanguage}`,
2443
- };
2444
- }
2445
-
2446
- // Write test file
2447
- const testFilePath = output || result.testFilePath;
2448
- await fs.writeFile(testFilePath, result.testCode, 'utf-8');
2449
-
2450
- return {
2451
- success: true,
2452
- testFilePath,
2453
- };
2454
- } catch (error) {
2455
- return {
2456
- success: false,
2457
- error: error instanceof Error ? error.message : 'Unknown error',
2458
- };
2459
- }
2460
- }
2461
-
2462
- function detectLanguageFromFile(filePath: string): 'nodejs' | 'python' | 'go' | 'rust' {
2463
- if (filePath.endsWith('.py')) return 'python';
2464
- if (filePath.endsWith('.go')) return 'go';
2465
- if (filePath.endsWith('.rs')) return 'rust';
2466
- return 'nodejs';
2467
- }
2468
- ```
2469
-
2470
- Update `src/testing/detectors/index.ts`:
2471
-
2472
- ```typescript
2473
- import { detectFromPackageJson } from './package-json';
2474
- import { detectPythonStack } from './python';
2475
- import { detectGoStack } from './go';
2476
- import { detectRustStack } from './rust';
2477
- import type { TechStack } from '../types';
2478
-
2479
- export async function detectTechStack(projectRoot: string): Promise<TechStack> {
2480
- let stack: TechStack = {};
2481
-
2482
- // Try Node.js detection
2483
- try {
2484
- const nodeStack = await detectFromPackageJson(projectRoot);
2485
- stack = { ...stack, ...nodeStack };
2486
- } catch (error) {
2487
- // package.json not found
2488
- }
2489
-
2490
- // Try Python detection
2491
- try {
2492
- const pythonStack = await detectPythonStack(projectRoot);
2493
- stack = { ...stack, ...pythonStack };
2494
- } catch (error) {
2495
- // requirements.txt not found
2496
- }
2497
-
2498
- // Try Go detection
2499
- try {
2500
- const goStack = await detectGoStack(projectRoot);
2501
- stack = { ...stack, ...goStack };
2502
- } catch (error) {
2503
- // go.mod not found
2504
- }
2505
-
2506
- // Try Rust detection
2507
- try {
2508
- const rustStack = await detectRustStack(projectRoot);
2509
- stack = { ...stack, ...rustStack };
2510
- } catch (error) {
2511
- // Cargo.toml not found
2512
- }
2513
-
2514
- return stack;
2515
- }
2516
-
2517
- export { detectFromPackageJson, detectPythonStack, detectGoStack, detectRustStack };
2518
- ```
2519
-
2520
- **Step 4: Run test to verify it passes**
2521
-
2522
- Run: `pnpm test tests/testing/cli/multi-language.test.ts`
2523
- Expected: PASS
2524
-
2525
- **Step 5: Commit**
2526
-
2527
- ```bash
2528
- git add src/testing/cli/commands.ts src/testing/detectors/index.ts tests/testing/cli/multi-language.test.ts
2529
- git commit -m "feat(testing): add multi-language support to CLI commands
2530
-
2531
- - Support Python, Go, and Rust test generation
2532
- - Auto-detect language from file extension
2533
- - Integrate language-specific detectors
2534
- - Update CLI to route to appropriate generator
2535
- - Support all languages in omc test gen command
2536
-
2537
- Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>"
2538
- ```
2539
-
2540
- ---
2541
-
2542
- ## Task 10: Documentation and Phase 2 Summary
2543
-
2544
- **Files:**
2545
- - Update: `docs/testing/README.md`
2546
- - Create: `docs/testing/PHASE2.md`
2547
- - Update: `README.md`
2548
-
2549
- **Step 1: Create Phase 2 documentation**
2550
-
2551
- Create `docs/testing/PHASE2.md`:
2552
-
2553
- ```markdown
2554
- # LLM Testing System - Phase 2 Features
2555
-
2556
- Phase 2 extends the testing system with advanced features including coverage analysis, multi-language support, complexity analysis, contract testing, and workflow integration.
2557
-
2558
- ## New Features
2559
-
2560
- ### 1. Coverage Analysis
2561
-
2562
- Analyze test coverage and identify gaps:
2563
-
2564
- ```bash
2565
- omc test analyze
2566
- ```
2567
-
2568
- Features:
2569
- - Parse c8/nyc coverage reports
2570
- - Identify uncovered code ranges
2571
- - Analyze reasons for gaps (error handling, branches, etc.)
2572
- - Generate supplementary tests for gaps
2573
-
2574
- ### 2. Multi-Language Support
2575
-
2576
- Generate tests for Python, Go, and Rust:
2577
-
2578
- ```bash
2579
- # Python (pytest)
2580
- omc test gen src/utils/math.py
2581
-
2582
- # Go (testing package)
2583
- omc test gen pkg/math/math.go
2584
-
2585
- # Rust (cargo test)
2586
- omc test gen src/math.rs
2587
- ```
2588
-
2589
- Supported frameworks:
2590
- - **Python**: pytest, unittest
2591
- - **Go**: testing package with table-driven tests
2592
- - **Rust**: cargo test with #[test] attributes
2593
-
2594
- ### 3. Complexity Analysis
2595
-
2596
- Automatically classify code as simple or complex:
2597
-
2598
- ```typescript
2599
- const analysis = await analyzeComplexity({ code, filePath });
2600
- // Returns: { complexity: 'simple' | 'complex', metrics, reasons }
2601
- ```
2602
-
2603
- Metrics:
2604
- - Lines of code
2605
- - Cyclomatic complexity
2606
- - Nesting levels
2607
- - External dependencies
2608
-
2609
- Complexity indicators:
2610
- - Payment/auth logic
2611
- - Database transactions
2612
- - External API calls
2613
- - Multiple async operations
2614
-
2615
- ### 4. Contract Testing
2616
-
2617
- Generate API contract tests from OpenAPI specs:
2618
-
2619
- ```bash
2620
- omc test contract api/openapi.yaml
2621
- ```
2622
-
2623
- Supported frameworks:
2624
- - **Pact**: Consumer-driven contract testing
2625
- - **Supertest**: REST API contract tests
2626
- - **MSW**: Mock Service Worker handlers
2627
-
2628
- ### 5. Enhanced Test-Engineer Agent
2629
-
2630
- The test-engineer agent now receives enriched context:
2631
-
2632
- - Tech stack detection
2633
- - Complexity analysis
2634
- - Suggested approach (auto/guided/manual)
2635
- - Pre-generated questions for complex code
2636
-
2637
- ### 6. UltraQA Integration
2638
-
2639
- UltraQA now includes automatic test generation:
2640
-
2641
- ```bash
2642
- /ultraqa
2643
- ```
2644
-
2645
- Workflow:
2646
- 1. Identify files needing tests
2647
- 2. Generate missing tests
2648
- 3. Run tests and analyze coverage
2649
- 4. Generate supplementary tests for gaps
2650
- 5. Repeat until coverage threshold met
2651
-
2652
- ## Usage Examples
2653
-
2654
- ### Example 1: Python Test Generation
2655
-
2656
- ```bash
2657
- omc test gen src/calculator.py
2658
- ```
2659
-
2660
- Output:
2661
- ```
2662
- ✅ Detected: Python + pytest
2663
- ✅ Generated: tests/test_calculator.py
2664
-
2665
- Tests include:
2666
- - test_add
2667
- - test_subtract
2668
- - test_multiply
2669
- - test_divide
2670
- ```
2671
-
2672
- ### Example 2: Coverage Analysis
2673
-
2674
- ```bash
2675
- omc test analyze
2676
- ```
2677
-
2678
- Output:
2679
- ```
2680
- 📊 Coverage Analysis:
2681
- - Overall: 75%
2682
- - Lines: 75%
2683
- - Functions: 90%
2684
- - Branches: 70%
2685
-
2686
- Coverage Gaps:
2687
- 1. src/utils/validation.ts (lines 42-48)
2688
- Reason: Error handling not covered
2689
-
2690
- 2. src/services/payment.ts (lines 67-72)
2691
- Reason: Edge case for retries
2692
-
2693
- Generate tests for gaps? (y/n)
2694
- ```
2695
-
2696
- ### Example 3: Contract Testing
2697
-
2698
- ```bash
2699
- omc test contract api/openapi.yaml --framework=pact
2700
- ```
2701
-
2702
- Output:
2703
- ```
2704
- ✅ Generated: tests/contract/frontend-backend.pact.test.ts
2705
-
2706
- Contract tests:
2707
- - GET /users/{id}
2708
- - POST /users
2709
- - PUT /users/{id}
2710
- - DELETE /users/{id}
2711
- ```
2712
-
2713
- ### Example 4: Complex Code with Test-Engineer
2714
-
2715
- ```bash
2716
- /test-gen src/services/payment.ts
2717
- ```
2718
-
2719
- Output:
2720
- ```
2721
- Agent: Detecting tech stack...
2722
- ✅ Detected: Node.js + Express + PostgreSQL + Vitest
2723
-
2724
- Agent: Analyzing complexity...
2725
- ⚠️ Complex code detected:
2726
- - Payment processing logic
2727
- - External Stripe API calls
2728
- - Database transactions
2729
- - Multiple async operations
2730
-
2731
- Agent: Delegating to test-engineer for detailed test cases...
2732
-
2733
- Test-Engineer: I'll need some information:
2734
- 1. What are the expected payment flows? (success, failure, retry)
2735
- 2. Should I mock Stripe API calls?
2736
- 3. What database states should I test?
2737
- 4. Are there specific edge cases to cover?
2738
-
2739
- [User provides details]
2740
-
2741
- Test-Engineer: Generating comprehensive test suite...
2742
- ✅ Generated 12 test cases covering:
2743
- - Happy path payment processing
2744
- - Stripe API failure scenarios
2745
- - Database transaction rollbacks
2746
- - Idempotency checks
2747
- - Concurrent payment handling
2748
- ```
2749
-
2750
- ## Configuration
2751
-
2752
- Add to `.omc/project-config.json`:
2753
-
2754
- ```json
2755
- {
2756
- "testing": {
2757
- "coverageThreshold": 80,
2758
- "complexityThresholds": {
2759
- "lines": 50,
2760
- "cyclomaticComplexity": 10,
2761
- "nestingLevel": 3
2762
- },
2763
- "autoGenerateTests": true,
2764
- "languages": ["nodejs", "python", "go", "rust"]
2765
- }
2766
- }
2767
- ```
2768
-
2769
- ## Architecture
2770
-
2771
- ```
2772
- src/testing/
2773
- ├── analyzers/
2774
- │ ├── coverage.ts # Coverage analysis
2775
- │ ├── complexity.ts # Complexity analysis
2776
- │ └── types.ts # Analyzer types
2777
- ├── generators/
2778
- │ ├── react.ts # React component tests
2779
- │ ├── nodejs.ts # Node.js function tests
2780
- │ ├── python.ts # Python pytest tests
2781
- │ ├── go.ts # Go table-driven tests
2782
- │ ├── rust.ts # Rust cargo tests
2783
- │ └── contract.ts # API contract tests
2784
- ├── detectors/
2785
- │ ├── index.ts # Multi-language detection
2786
- │ ├── package-json.ts # Node.js detection
2787
- │ ├── python.ts # Python detection
2788
- │ ├── go.ts # Go detection
2789
- │ └── rust.ts # Rust detection
2790
- └── cli/
2791
- ├── commands.ts # CLI command implementations
2792
- ├── agent-integration.ts # Test-engineer integration
2793
- └── ultraqa-integration.ts # UltraQA integration
2794
- ```
2795
-
2796
- ## Next Steps (Phase 3)
2797
-
2798
- - Giskard integration for behavior testing
2799
- - E2E test generation with Playwright
2800
- - CI/CD integration
2801
- - Ralph mode test loops
2802
- - Autopilot automatic testing
2803
- - Performance optimization
2804
-
2805
- ## Success Metrics
2806
-
2807
- Phase 2 Achievements:
2808
- - ✅ Multi-language support (Python, Go, Rust)
2809
- - ✅ Coverage analysis and gap identification
2810
- - ✅ Complexity analysis for smart test generation
2811
- - ✅ Contract testing for APIs
2812
- - ✅ Enhanced test-engineer agent
2813
- - ✅ UltraQA integration
2814
-
2815
- Target Metrics:
2816
- - Test coverage: 80%+
2817
- - Test generation time: < 30 seconds/file
2818
- - Multi-language support: 4 languages
2819
- - Complexity classification accuracy: > 90%
2820
- ```
2821
-
2822
- **Step 2: Update main testing README**
2823
-
2824
- Update `docs/testing/README.md` to add Phase 2 section:
2825
-
2826
- ```markdown
2827
- ## Phase 2 Features (NEW)
2828
-
2829
- Phase 2 adds advanced capabilities:
2830
-
2831
- - **Coverage Analysis**: Identify and fill coverage gaps
2832
- - **Multi-Language**: Python, Go, Rust support
2833
- - **Complexity Analysis**: Smart classification of code complexity
2834
- - **Contract Testing**: API contract tests from OpenAPI specs
2835
- - **Enhanced Agent**: Test-engineer with enriched context
2836
- - **UltraQA Integration**: Automatic test generation in QA cycles
2837
-
2838
- See [Phase 2 Documentation](./PHASE2.md) for details.
2839
-
2840
- ## Supported Languages
2841
-
2842
- - **Node.js**: Vitest, Jest
2843
- - **Python**: pytest, unittest
2844
- - **Go**: testing package
2845
- - **Rust**: cargo test
2846
- - **React**: Vitest + Testing Library
2847
- ```
2848
-
2849
- **Step 3: Update main README**
2850
-
2851
- Update `README.md` to highlight Phase 2 features:
2852
-
2853
- ```markdown
2854
- ## Testing (Phase 2 - NEW)
2855
-
2856
- oh-my-claudecode now supports advanced test generation across multiple languages:
2857
-
2858
- ```bash
2859
- # Node.js/TypeScript
2860
- omc test gen src/utils/math.ts
2861
-
2862
- # Python
2863
- omc test gen src/utils/math.py
2864
-
2865
- # Go
2866
- omc test gen pkg/math/math.go
2867
-
2868
- # Rust
2869
- omc test gen src/math.rs
2870
-
2871
- # Coverage analysis
2872
- omc test analyze
2873
-
2874
- # Contract testing
2875
- omc test contract api/openapi.yaml
2876
- ```
2877
-
2878
- Features:
2879
- - Multi-language support (Node.js, Python, Go, Rust)
2880
- - Coverage analysis and gap identification
2881
- - Complexity-based test generation
2882
- - API contract testing
2883
- - Integrated with /ultraqa workflow
2884
-
2885
- See [Testing Documentation](docs/testing/README.md) for details.
2886
- ```
2887
-
2888
- **Step 4: Commit**
2889
-
2890
- ```bash
2891
- git add docs/testing/ README.md
2892
- git commit -m "docs(testing): add Phase 2 documentation and examples
2893
-
2894
- - Create comprehensive Phase 2 feature documentation
2895
- - Add usage examples for all new features
2896
- - Update main README with Phase 2 highlights
2897
- - Document multi-language support
2898
- - Include configuration examples
2899
-
2900
- Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>"
2901
- ```
2902
-
2903
- ---
2904
-
2905
- ## Phase 2 Summary
2906
-
2907
- ### Deliverables Checklist
2908
-
2909
- - [x] **Coverage Analysis**
2910
- - [x] Coverage analyzer for Node.js (c8/nyc)
2911
- - [x] Gap identification with line ranges
2912
- - [x] Reason analysis for uncovered code
2913
-
2914
- - [x] **Multi-Language Support**
2915
- - [x] Python test generator (pytest/unittest)
2916
- - [x] Go test generator (table-driven tests)
2917
- - [x] Rust test generator (cargo test)
2918
- - [x] Language-specific tech stack detectors
2919
-
2920
- - [x] **Complexity Analysis**
2921
- - [x] Cyclomatic complexity calculation
2922
- - [x] Nesting level measurement
2923
- - [x] External dependency detection
2924
- - [x] Pattern-based complexity indicators
2925
-
2926
- - [x] **Contract Testing**
2927
- - [x] Pact consumer-driven contract tests
2928
- - [x] Supertest REST API contracts
2929
- - [x] MSW handler generation
2930
- - [x] OpenAPI spec parsing
2931
-
2932
- - [x] **Enhanced Test-Engineer Agent**
2933
- - [x] Context preparation with tech stack
2934
- - [x] Complexity-based question generation
2935
- - [x] Suggested approach determination
2936
- - [x] Agent documentation updates
2937
-
2938
- - [x] **UltraQA Integration**
2939
- - [x] Automatic test generation in QA cycles
2940
- - [x] Coverage gap identification
2941
- - [x] Test generation for changed files
2942
- - [x] Skill documentation updates
2943
-
2944
- - [x] **CLI Integration**
2945
- - [x] Multi-language command routing
2946
- - [x] Auto-detection of language from file
2947
- - [x] Unified test generation interface
2948
-
2949
- - [x] **Documentation**
2950
- - [x] Phase 2 feature documentation
2951
- - [x] Usage examples for all features
2952
- - [x] Architecture documentation
2953
- - [x] Configuration examples
2954
-
2955
- ### Estimated Timeline
2956
-
2957
- - **Task 1**: Coverage Analyzer - 1.5 hours
2958
- - **Task 2**: Python Test Generator - 2 hours
2959
- - **Task 3**: Go Test Generator - 1.5 hours
2960
- - **Task 4**: Rust Test Generator - 1.5 hours
2961
- - **Task 5**: Complexity Analyzer - 1.5 hours
2962
- - **Task 6**: Contract Test Generator - 2 hours
2963
- - **Task 7**: Test-Engineer Integration - 1.5 hours
2964
- - **Task 8**: UltraQA Integration - 1.5 hours
2965
- - **Task 9**: Multi-Language CLI - 1 hour
2966
- - **Task 10**: Documentation - 1 hour
2967
-
2968
- **Total**: ~15 hours
2969
-
2970
- ### Success Criteria
2971
-
2972
- - [ ] All tests pass: `pnpm test tests/testing/**`
2973
- - [ ] Coverage analyzer works for Node.js projects
2974
- - [ ] Python, Go, and Rust test generation produces valid tests
2975
- - [ ] Complexity analyzer correctly classifies simple vs complex code
2976
- - [ ] Contract tests generate from OpenAPI specs
2977
- - [ ] Test-engineer receives enriched context
2978
- - [ ] UltraQA automatically generates missing tests
2979
- - [ ] CLI supports all languages with auto-detection
2980
- - [ ] Documentation is complete and accurate
2981
-
2982
- ### Next Steps (Phase 3)
2983
-
2984
- 1. **Giskard Integration**
2985
- - Behavior testing (perturbations, robustness)
2986
- - Fairness metrics
2987
- - LLM-specific test scenarios
2988
-
2989
- 2. **E2E Test Generation**
2990
- - Playwright test generation
2991
- - User flow testing
2992
- - Cross-stack integration tests
2993
-
2994
- 3. **CI/CD Integration**
2995
- - GitHub Actions workflow
2996
- - Automatic test generation on PR
2997
- - Coverage reporting
2998
-
2999
- 4. **Ralph Mode Integration**
3000
- - Test-fix-verify loops
3001
- - Automatic test regeneration on failure
3002
- - Continuous improvement
3003
-
3004
- 5. **Autopilot Integration**
3005
- - Automatic test generation during code creation
3006
- - Test-first development mode
3007
- - Coverage threshold enforcement
3008
-
3009
- 6. **Performance Optimization**
3010
- - Parallel test generation
3011
- - Caching of tech stack detection
3012
- - Incremental coverage analysis
3013
-
3014
- ### Implementation Notes
3015
-
3016
- #### TDD Approach
3017
-
3018
- Each task follows strict TDD:
3019
- 1. Write failing test
3020
- 2. Run test to verify failure
3021
- 3. Implement minimal code to pass
3022
- 4. Run test to verify pass
3023
- 5. Commit with descriptive message
3024
-
3025
- #### Code Quality
3026
-
3027
- - All code must pass TypeScript type checking
3028
- - All tests must pass before committing
3029
- - Follow existing code style and conventions
3030
- - Use meaningful variable and function names
3031
- - Add comments for complex logic
3032
-
3033
- #### Git Workflow
3034
-
3035
- - Work on feature branch: `git checkout -b feature/llm-testing-phase2 dev`
3036
- - Commit after each task completion
3037
- - Use conventional commit format: `feat(testing): description`
3038
- - Include co-author tag: `Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>`
3039
- - Create PR targeting `dev` branch when complete
3040
-
3041
- #### Testing Strategy
3042
-
3043
- - Unit tests for all functions
3044
- - Integration tests for CLI commands
3045
- - Mock external dependencies (file system, APIs)
3046
- - Use Vitest for all tests
3047
- - Aim for >80% code coverage
3048
-
3049
- ---
3050
-
3051
- **Plan Status**: ✅ Complete and ready for implementation
3052
-
3053
- **Next Action**: Begin Task 1 - Coverage Analyzer for Node.js