agentplane 0.3.11 → 0.3.13

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 (259) hide show
  1. package/assets/AGENTS.md +2 -2
  2. package/assets/RUNNER.md +1 -1
  3. package/assets/agents/CODER.json +4 -0
  4. package/assets/agents/CREATOR.json +1 -0
  5. package/assets/agents/DOCS.json +2 -1
  6. package/assets/agents/INTEGRATOR.json +2 -1
  7. package/assets/agents/ORCHESTRATOR.json +3 -1
  8. package/assets/agents/PLANNER.json +3 -1
  9. package/assets/agents/REVIEWER.json +1 -0
  10. package/assets/agents/TESTER.json +2 -2
  11. package/assets/agents/UPDATER.json +1 -0
  12. package/assets/agents/UPGRADER.json +1 -1
  13. package/assets/codex-plugin/assets/header.png +0 -0
  14. package/assets/codex-plugin/assets/icon.svg +1 -0
  15. package/assets/codex-plugin/assets/logo.svg +1 -0
  16. package/assets/codex-plugin/skills/agentplane/SKILL.md +35 -0
  17. package/assets/policy/governance.md +4 -2
  18. package/assets/policy/incidents.md +3 -19
  19. package/assets/policy/workflow.release.md +5 -2
  20. package/bin/agentplane.js +58 -3
  21. package/bin/stale-dist-policy.js +6 -1
  22. package/dist/.build-manifest.json +271 -161
  23. package/dist/cli/exit-codes.d.ts.map +1 -1
  24. package/dist/cli/exit-codes.js +1 -0
  25. package/dist/cli/reason-codes.d.ts +1 -1
  26. package/dist/cli/reason-codes.d.ts.map +1 -1
  27. package/dist/cli/reason-codes.js +12 -0
  28. package/dist/cli/run-cli/command-catalog/core.d.ts +1 -1
  29. package/dist/cli/run-cli/command-catalog/core.d.ts.map +1 -1
  30. package/dist/cli/run-cli/command-catalog/core.js +22 -1
  31. package/dist/cli/run-cli/command-catalog/project.d.ts +1 -1
  32. package/dist/cli/run-cli/command-catalog/project.d.ts.map +1 -1
  33. package/dist/cli/run-cli/command-catalog/project.js +21 -3
  34. package/dist/cli/run-cli/command-catalog.d.ts +1 -1
  35. package/dist/cli/run-cli/command-catalog.d.ts.map +1 -1
  36. package/dist/cli/run-cli/commands/codex.d.ts +14 -0
  37. package/dist/cli/run-cli/commands/codex.d.ts.map +1 -0
  38. package/dist/cli/run-cli/commands/codex.js +100 -0
  39. package/dist/cli/run-cli/commands/core.d.ts +1 -0
  40. package/dist/cli/run-cli/commands/core.d.ts.map +1 -1
  41. package/dist/cli/run-cli/commands/core.js +1 -0
  42. package/dist/cli/run-cli/commands/init/recipes.d.ts +9 -1
  43. package/dist/cli/run-cli/commands/init/recipes.d.ts.map +1 -1
  44. package/dist/cli/run-cli/commands/init/recipes.js +32 -22
  45. package/dist/cli/run-cli/commands/init.d.ts.map +1 -1
  46. package/dist/cli/run-cli/commands/init.js +26 -21
  47. package/dist/cli/run-cli/error-guidance.js +20 -0
  48. package/dist/cli/run-cli.test-helpers.d.ts +1 -0
  49. package/dist/cli/run-cli.test-helpers.d.ts.map +1 -1
  50. package/dist/cli/run-cli.test-helpers.js +36 -19
  51. package/dist/commands/branch/cleanup-merged.d.ts +1 -0
  52. package/dist/commands/branch/cleanup-merged.d.ts.map +1 -1
  53. package/dist/commands/branch/cleanup-merged.js +18 -9
  54. package/dist/commands/branch/work-start.d.ts.map +1 -1
  55. package/dist/commands/branch/work-start.js +82 -5
  56. package/dist/commands/codex/plugin-install.d.ts +26 -0
  57. package/dist/commands/codex/plugin-install.d.ts.map +1 -0
  58. package/dist/commands/codex/plugin-install.js +209 -0
  59. package/dist/commands/doctor/branch-pr.js +2 -2
  60. package/dist/commands/guard/impl/commands.d.ts +1 -0
  61. package/dist/commands/guard/impl/commands.d.ts.map +1 -1
  62. package/dist/commands/guard/impl/commands.js +78 -8
  63. package/dist/commands/hooks/index.d.ts +1 -1
  64. package/dist/commands/hooks/index.d.ts.map +1 -1
  65. package/dist/commands/hooks/index.js +48 -12
  66. package/dist/commands/pr/check.d.ts.map +1 -1
  67. package/dist/commands/pr/check.js +3 -0
  68. package/dist/commands/pr/integrate/cmd.d.ts.map +1 -1
  69. package/dist/commands/pr/integrate/cmd.js +103 -2
  70. package/dist/commands/pr/integrate/internal/cleanup.d.ts +1 -11
  71. package/dist/commands/pr/integrate/internal/cleanup.d.ts.map +1 -1
  72. package/dist/commands/pr/integrate/internal/cleanup.js +1 -46
  73. package/dist/commands/pr/integrate/internal/finalize.d.ts.map +1 -1
  74. package/dist/commands/pr/integrate/internal/finalize.js +3 -0
  75. package/dist/commands/pr/integrate/internal/github-protection.d.ts +5 -0
  76. package/dist/commands/pr/integrate/internal/github-protection.d.ts.map +1 -0
  77. package/dist/commands/pr/integrate/internal/github-protection.js +13 -0
  78. package/dist/commands/pr/integrate/internal/pre-integrate-bootstrap.d.ts +15 -0
  79. package/dist/commands/pr/integrate/internal/pre-integrate-bootstrap.d.ts.map +1 -0
  80. package/dist/commands/pr/integrate/internal/pre-integrate-bootstrap.js +35 -0
  81. package/dist/commands/pr/integrate/internal/prepare.d.ts +1 -0
  82. package/dist/commands/pr/integrate/internal/prepare.d.ts.map +1 -1
  83. package/dist/commands/pr/integrate/internal/prepare.js +46 -7
  84. package/dist/commands/pr/internal/auto-commit.d.ts +7 -0
  85. package/dist/commands/pr/internal/auto-commit.d.ts.map +1 -0
  86. package/dist/commands/pr/internal/auto-commit.js +69 -0
  87. package/dist/commands/pr/internal/freshness.d.ts +1 -0
  88. package/dist/commands/pr/internal/freshness.d.ts.map +1 -1
  89. package/dist/commands/pr/internal/freshness.js +2 -0
  90. package/dist/commands/pr/internal/sync.d.ts.map +1 -1
  91. package/dist/commands/pr/internal/sync.js +98 -27
  92. package/dist/commands/pr/open.d.ts.map +1 -1
  93. package/dist/commands/pr/open.js +52 -3
  94. package/dist/commands/pr/update.d.ts.map +1 -1
  95. package/dist/commands/pr/update.js +13 -2
  96. package/dist/commands/recipes/active.command.d.ts +7 -0
  97. package/dist/commands/recipes/active.command.d.ts.map +1 -0
  98. package/dist/commands/recipes/active.command.js +12 -0
  99. package/dist/commands/recipes/add.command.d.ts +8 -0
  100. package/dist/commands/recipes/add.command.d.ts.map +1 -0
  101. package/dist/commands/recipes/add.command.js +33 -0
  102. package/dist/commands/recipes/detach.command.d.ts +7 -0
  103. package/dist/commands/recipes/detach.command.d.ts.map +1 -0
  104. package/dist/commands/recipes/detach.command.js +19 -0
  105. package/dist/commands/recipes/disable.command.d.ts +7 -0
  106. package/dist/commands/recipes/disable.command.d.ts.map +1 -0
  107. package/dist/commands/recipes/disable.command.js +10 -0
  108. package/dist/commands/recipes/enable.command.d.ts +7 -0
  109. package/dist/commands/recipes/enable.command.d.ts.map +1 -0
  110. package/dist/commands/recipes/enable.command.js +10 -0
  111. package/dist/commands/recipes/explain-active.command.d.ts +5 -0
  112. package/dist/commands/recipes/explain-active.command.d.ts.map +1 -0
  113. package/dist/commands/recipes/explain-active.command.js +11 -0
  114. package/dist/commands/recipes/explain.command.d.ts.map +1 -1
  115. package/dist/commands/recipes/explain.command.js +4 -2
  116. package/dist/commands/recipes/impl/apply.d.ts.map +1 -1
  117. package/dist/commands/recipes/impl/apply.js +33 -14
  118. package/dist/commands/recipes/impl/commands/active.d.ts +6 -0
  119. package/dist/commands/recipes/impl/commands/active.d.ts.map +1 -0
  120. package/dist/commands/recipes/impl/commands/active.js +46 -0
  121. package/dist/commands/recipes/impl/commands/add.d.ts +7 -0
  122. package/dist/commands/recipes/impl/commands/add.d.ts.map +1 -0
  123. package/dist/commands/recipes/impl/commands/add.js +100 -0
  124. package/dist/commands/recipes/impl/commands/detach.d.ts +6 -0
  125. package/dist/commands/recipes/impl/commands/detach.d.ts.map +1 -0
  126. package/dist/commands/recipes/impl/commands/detach.js +85 -0
  127. package/dist/commands/recipes/impl/commands/disable.d.ts +6 -0
  128. package/dist/commands/recipes/impl/commands/disable.d.ts.map +1 -0
  129. package/dist/commands/recipes/impl/commands/disable.js +21 -0
  130. package/dist/commands/recipes/impl/commands/enable.d.ts +6 -0
  131. package/dist/commands/recipes/impl/commands/enable.d.ts.map +1 -0
  132. package/dist/commands/recipes/impl/commands/enable.js +39 -0
  133. package/dist/commands/recipes/impl/commands/explain-active.d.ts +5 -0
  134. package/dist/commands/recipes/impl/commands/explain-active.d.ts.map +1 -0
  135. package/dist/commands/recipes/impl/commands/explain-active.js +20 -0
  136. package/dist/commands/recipes/impl/commands/explain.d.ts.map +1 -1
  137. package/dist/commands/recipes/impl/commands/explain.js +40 -3
  138. package/dist/commands/recipes/impl/commands/info.d.ts.map +1 -1
  139. package/dist/commands/recipes/impl/commands/info.js +21 -8
  140. package/dist/commands/recipes/impl/commands/install.d.ts.map +1 -1
  141. package/dist/commands/recipes/impl/commands/install.js +32 -29
  142. package/dist/commands/recipes/impl/commands/list.d.ts.map +1 -1
  143. package/dist/commands/recipes/impl/commands/list.js +11 -11
  144. package/dist/commands/recipes/impl/commands/remove.d.ts.map +1 -1
  145. package/dist/commands/recipes/impl/commands/remove.js +5 -0
  146. package/dist/commands/recipes/impl/commands/update.d.ts +7 -0
  147. package/dist/commands/recipes/impl/commands/update.d.ts.map +1 -0
  148. package/dist/commands/recipes/impl/commands/update.js +93 -0
  149. package/dist/commands/recipes/impl/commands.d.ts +7 -0
  150. package/dist/commands/recipes/impl/commands.d.ts.map +1 -1
  151. package/dist/commands/recipes/impl/commands.js +7 -0
  152. package/dist/commands/recipes/impl/constants.d.ts +1 -14
  153. package/dist/commands/recipes/impl/constants.d.ts.map +1 -1
  154. package/dist/commands/recipes/impl/constants.js +1 -18
  155. package/dist/commands/recipes/impl/manifest.d.ts +2 -2
  156. package/dist/commands/recipes/impl/manifest.d.ts.map +1 -1
  157. package/dist/commands/recipes/impl/manifest.js +4 -226
  158. package/dist/commands/recipes/impl/overlay-project.d.ts +32 -0
  159. package/dist/commands/recipes/impl/overlay-project.d.ts.map +1 -0
  160. package/dist/commands/recipes/impl/overlay-project.js +282 -0
  161. package/dist/commands/recipes/impl/paths.d.ts +20 -2
  162. package/dist/commands/recipes/impl/paths.d.ts.map +1 -1
  163. package/dist/commands/recipes/impl/paths.js +23 -5
  164. package/dist/commands/recipes/impl/project-installed-recipes.d.ts +2 -4
  165. package/dist/commands/recipes/impl/project-installed-recipes.d.ts.map +1 -1
  166. package/dist/commands/recipes/impl/project-installed-recipes.js +30 -74
  167. package/dist/commands/recipes/impl/project-recipe-state.d.ts +18 -0
  168. package/dist/commands/recipes/impl/project-recipe-state.d.ts.map +1 -0
  169. package/dist/commands/recipes/impl/project-recipe-state.js +94 -0
  170. package/dist/commands/recipes/impl/project-registry.d.ts +20 -0
  171. package/dist/commands/recipes/impl/project-registry.d.ts.map +1 -0
  172. package/dist/commands/recipes/impl/project-registry.js +104 -0
  173. package/dist/commands/recipes/impl/resolver.d.ts.map +1 -1
  174. package/dist/commands/recipes/impl/resolver.js +5 -3
  175. package/dist/commands/recipes/impl/types.d.ts +1 -240
  176. package/dist/commands/recipes/impl/types.d.ts.map +1 -1
  177. package/dist/commands/recipes/info.command.js +2 -2
  178. package/dist/commands/recipes/install.spec.js +4 -4
  179. package/dist/commands/recipes/list.command.js +4 -4
  180. package/dist/commands/recipes/remove.command.js +2 -2
  181. package/dist/commands/recipes/update.command.d.ts +8 -0
  182. package/dist/commands/recipes/update.command.d.ts.map +1 -0
  183. package/dist/commands/recipes/update.command.js +35 -0
  184. package/dist/commands/recipes.d.ts +7 -4
  185. package/dist/commands/recipes.d.ts.map +1 -1
  186. package/dist/commands/recipes.js +6 -3
  187. package/dist/commands/recipes.test-helpers.d.ts +3 -3
  188. package/dist/commands/recipes.test-helpers.d.ts.map +1 -1
  189. package/dist/commands/recipes.test-helpers.js +105 -15
  190. package/dist/commands/release/apply.command.d.ts +3 -1
  191. package/dist/commands/release/apply.command.d.ts.map +1 -1
  192. package/dist/commands/release/apply.command.js +354 -18
  193. package/dist/commands/release/apply.mutation.d.ts.map +1 -1
  194. package/dist/commands/release/apply.mutation.js +1 -0
  195. package/dist/commands/release/apply.reporting.d.ts +1 -0
  196. package/dist/commands/release/apply.reporting.d.ts.map +1 -1
  197. package/dist/commands/release/apply.reporting.js +12 -8
  198. package/dist/commands/release/apply.types.d.ts +13 -0
  199. package/dist/commands/release/apply.types.d.ts.map +1 -1
  200. package/dist/commands/release/plan.command.d.ts.map +1 -1
  201. package/dist/commands/release/plan.command.js +48 -0
  202. package/dist/commands/scenario/execute.command.js +4 -4
  203. package/dist/commands/scenario/impl/commands.js +4 -4
  204. package/dist/commands/scenario/info.command.js +4 -4
  205. package/dist/commands/scenario/list.command.js +3 -3
  206. package/dist/commands/scenario/run.command.js +5 -5
  207. package/dist/commands/scenario/scenario.command.js +7 -7
  208. package/dist/commands/shared/merged-branch-cleanup.d.ts +12 -0
  209. package/dist/commands/shared/merged-branch-cleanup.d.ts.map +1 -0
  210. package/dist/commands/shared/merged-branch-cleanup.js +46 -0
  211. package/dist/commands/shared/post-commit-pr-artifacts.d.ts.map +1 -1
  212. package/dist/commands/shared/post-commit-pr-artifacts.js +35 -0
  213. package/dist/commands/shared/task-backend.d.ts.map +1 -1
  214. package/dist/commands/shared/task-backend.js +37 -5
  215. package/dist/commands/shared/task-handoff.d.ts +2 -1
  216. package/dist/commands/shared/task-handoff.d.ts.map +1 -1
  217. package/dist/commands/shared/task-handoff.js +15 -0
  218. package/dist/commands/shared/task-local-freshness.d.ts +2 -0
  219. package/dist/commands/shared/task-local-freshness.d.ts.map +1 -1
  220. package/dist/commands/shared/task-local-freshness.js +7 -1
  221. package/dist/commands/task/finish-shared.d.ts +1 -0
  222. package/dist/commands/task/finish-shared.d.ts.map +1 -1
  223. package/dist/commands/task/finish-shared.js +1 -0
  224. package/dist/commands/task/handoff-show.command.d.ts.map +1 -1
  225. package/dist/commands/task/handoff-show.command.js +24 -0
  226. package/dist/commands/task/hosted-close-pr.command.d.ts.map +1 -1
  227. package/dist/commands/task/hosted-close-pr.command.js +35 -0
  228. package/dist/commands/task/hosted-close.command.d.ts.map +1 -1
  229. package/dist/commands/task/hosted-close.command.js +185 -18
  230. package/dist/commands/task/hosted-merge-sync.d.ts +4 -1
  231. package/dist/commands/task/hosted-merge-sync.d.ts.map +1 -1
  232. package/dist/commands/task/hosted-merge-sync.js +52 -10
  233. package/dist/commands/task/start-ready.d.ts.map +1 -1
  234. package/dist/commands/task/start-ready.js +0 -86
  235. package/dist/runner/context/base-prompts.d.ts +2 -1
  236. package/dist/runner/context/base-prompts.d.ts.map +1 -1
  237. package/dist/runner/context/base-prompts.js +109 -13
  238. package/dist/runner/context/recipe-context.d.ts.map +1 -1
  239. package/dist/runner/context/recipe-context.js +40 -8
  240. package/dist/runner/types.d.ts +4 -0
  241. package/dist/runner/types.d.ts.map +1 -1
  242. package/dist/runner/usecases/task-run.d.ts.map +1 -1
  243. package/dist/runner/usecases/task-run.js +2 -1
  244. package/dist/runtime/behavior/resolve.d.ts +2 -1
  245. package/dist/runtime/behavior/resolve.d.ts.map +1 -1
  246. package/dist/runtime/behavior/resolve.js +25 -5
  247. package/dist/runtime/behavior/types.d.ts +1 -0
  248. package/dist/runtime/behavior/types.d.ts.map +1 -1
  249. package/dist/runtime/capabilities/recipe.d.ts +2 -1
  250. package/dist/runtime/capabilities/recipe.d.ts.map +1 -1
  251. package/dist/runtime/capabilities/recipe.js +88 -28
  252. package/dist/shared/errors.d.ts +1 -1
  253. package/dist/shared/errors.d.ts.map +1 -1
  254. package/dist/shared/runtime-source.d.ts.map +1 -1
  255. package/dist/shared/runtime-source.js +8 -3
  256. package/package.json +3 -2
  257. package/dist/cli/recipes-bundled.d.ts +0 -10
  258. package/dist/cli/recipes-bundled.d.ts.map +0 -1
  259. package/dist/cli/recipes-bundled.js +0 -36
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "schema_version": 1,
3
3
  "package_dir": "/home/runner/work/agentplane/agentplane/packages/agentplane",
4
- "generated_at": "2026-04-15T15:43:13.910Z",
5
- "git_head": "d95b2762f78815b60407a62f2227136c85cae5ee",
6
- "src_cli_mtime_ms": 1776267734651.4321,
4
+ "generated_at": "2026-04-17T11:14:38.802Z",
5
+ "git_head": "768f43895b3f167604d18c7717a7d63492486bc7",
6
+ "src_cli_mtime_ms": 1776424421052.0217,
7
7
  "src_index_mtime_ms": null,
8
- "dist_cli_mtime_ms": 1776267793227.7764,
8
+ "dist_cli_mtime_ms": 1776424478147.3413,
9
9
  "dist_index_mtime_ms": null,
10
- "tsbuildinfo_mtime_ms": 1776267793285.7769,
10
+ "tsbuildinfo_mtime_ms": 1776424478210.342,
11
11
  "watched_runtime_paths": [
12
12
  "src",
13
13
  "bin/agentplane.js",
@@ -15,12 +15,12 @@
15
15
  "bin/runtime-context.js",
16
16
  "bin/stale-dist-policy.js"
17
17
  ],
18
- "watched_runtime_snapshot_hash": "aadea11d0cf45f28a8d4912a60cadc259291c4725506cf617df8a1aa313faecb",
18
+ "watched_runtime_snapshot_hash": "1eee815309d64bcb0d595bd2d0d2d727971d585449b718bca17dc4130ac8d3b2",
19
19
  "watched_runtime_files": [
20
20
  {
21
21
  "path": "bin/agentplane.js",
22
- "sha256": "388474af70f60392a8689eb451a5482bcc8ddff1ee2b6c49cac36454554affe4",
23
- "size_bytes": 10019
22
+ "sha256": "78d16de8ea03c471f6fece3e11be86320430afb1431849ef81c50454632cb517",
23
+ "size_bytes": 12121
24
24
  },
25
25
  {
26
26
  "path": "bin/dist-guard.js",
@@ -34,8 +34,8 @@
34
34
  },
35
35
  {
36
36
  "path": "bin/stale-dist-policy.js",
37
- "sha256": "6506f14e23cf7325ff5de373e9c9a67b345f86546aa083745756d38c2db8414a",
38
- "size_bytes": 2028
37
+ "sha256": "0091a665862fead0ddf5057f3062a9fa9cff6260556e2431e0f380bd329f2c03",
38
+ "size_bytes": 2186
39
39
  },
40
40
  {
41
41
  "path": "src/adapters/clock/system-clock-adapter.ts",
@@ -294,8 +294,8 @@
294
294
  },
295
295
  {
296
296
  "path": "src/cli/exit-codes.ts",
297
- "sha256": "3983377794bd0cf53baa55fbb111ab74a061e8281ceb69efd48f548194ab10c4",
298
- "size_bytes": 333
297
+ "sha256": "6c04f4d73cefaadcb62105d66d757d541bf70c52a4f539e9ebe81cd24618fc93",
298
+ "size_bytes": 349
299
299
  },
300
300
  {
301
301
  "path": "src/cli/fs-utils.ts",
@@ -324,18 +324,13 @@
324
324
  },
325
325
  {
326
326
  "path": "src/cli/reason-codes.ts",
327
- "sha256": "81a73f4985c178d9bee7d16b29c0516b4f303d89816f04705543a8be30c9ef14",
328
- "size_bytes": 4268
329
- },
330
- {
331
- "path": "src/cli/recipes-bundled.ts",
332
- "sha256": "ff11b3906d25986b1af314c7895df4bc7660513676c974fa23104605523d182e",
333
- "size_bytes": 1417
327
+ "sha256": "cb223727ce412893857977631165b663a9a1905e7959ddb41cfe81df5e4c3dfa",
328
+ "size_bytes": 4922
334
329
  },
335
330
  {
336
331
  "path": "src/cli/run-cli.test-helpers.ts",
337
- "sha256": "f68d86f7fb9489d8de70da628f30ad1535b8b9b4fd31eaa1f225423f238dac7b",
338
- "size_bytes": 29789
332
+ "sha256": "1571c51176ebdf787ccc8ff41829241c68b2c6a72337c71e396d54ab01b94f35",
333
+ "size_bytes": 30344
339
334
  },
340
335
  {
341
336
  "path": "src/cli/run-cli.ts",
@@ -349,8 +344,8 @@
349
344
  },
350
345
  {
351
346
  "path": "src/cli/run-cli/command-catalog/core.ts",
352
- "sha256": "902c1210f32d6b14a91a62b8aa3650cb9c8f120cbb2aaa4b39529bbc1b360c2e",
353
- "size_bytes": 7941
347
+ "sha256": "b5069849ba0a136e6db824ce6311aec42f9861bcac6e02deffc4674c60953cf7",
348
+ "size_bytes": 8898
354
349
  },
355
350
  {
356
351
  "path": "src/cli/run-cli/command-catalog/lifecycle.ts",
@@ -359,8 +354,8 @@
359
354
  },
360
355
  {
361
356
  "path": "src/cli/run-cli/command-catalog/project.ts",
362
- "sha256": "6b04b61d0b07b76857539e6c04965a559a033de47cb8996c1467b69989b60257",
363
- "size_bytes": 7578
357
+ "sha256": "d3c4a5aab5e5ff9bd59071e35bb1e705208792168beff18afbc3dae814c2ab43",
358
+ "size_bytes": 8517
364
359
  },
365
360
  {
366
361
  "path": "src/cli/run-cli/command-catalog/shared.ts",
@@ -372,6 +367,11 @@
372
367
  "sha256": "7251cf9ca4f89eb37403068c6e639ef33fde7db91db486b5c7131bfce987fa90",
373
368
  "size_bytes": 12667
374
369
  },
370
+ {
371
+ "path": "src/cli/run-cli/commands/codex.ts",
372
+ "sha256": "4f6d2a432e63b979381a5bd3a64f7355ab7930cb103021e8c642241b52ff8288",
373
+ "size_bytes": 4821
374
+ },
375
375
  {
376
376
  "path": "src/cli/run-cli/commands/config.ts",
377
377
  "sha256": "7ca450c159aa35d1fda0c25b2213f9eeafee84bc62795a4e3975a98514c0b5a2",
@@ -379,8 +379,8 @@
379
379
  },
380
380
  {
381
381
  "path": "src/cli/run-cli/commands/core.ts",
382
- "sha256": "bcb8e532d2ac7a68c053b539b24dc8b70c26769290ecd7205449fdda145a1476",
383
- "size_bytes": 258
382
+ "sha256": "5cccd12921fc646958ab9087a5ae7101a3d09396162fbe899c41c2cdcf0cc5e0",
383
+ "size_bytes": 412
384
384
  },
385
385
  {
386
386
  "path": "src/cli/run-cli/commands/core/agent-profiles.ts",
@@ -414,8 +414,8 @@
414
414
  },
415
415
  {
416
416
  "path": "src/cli/run-cli/commands/init.ts",
417
- "sha256": "fa0f0ec78c0f7bb1bc6698a68cd880cac1c2e9cab3758d8fb8a9fb32285f8639",
418
- "size_bytes": 27513
417
+ "sha256": "66a76fc0f25c8f03aa2e65efc4ed34c6e7f56e13a152cd9c46eec2b064891f3b",
418
+ "size_bytes": 27719
419
419
  },
420
420
  {
421
421
  "path": "src/cli/run-cli/commands/init/base-branch.ts",
@@ -439,8 +439,8 @@
439
439
  },
440
440
  {
441
441
  "path": "src/cli/run-cli/commands/init/recipes.ts",
442
- "sha256": "c8aff4e128413ad0454d8aa86d0cc8048b517ecd6e1da2b2294d76a54a6b204b",
443
- "size_bytes": 1161
442
+ "sha256": "afa2de0d7413f689a97a0f1c0d42154bf1a36b400ddde12321314c59ae2ef6f4",
443
+ "size_bytes": 1732
444
444
  },
445
445
  {
446
446
  "path": "src/cli/run-cli/commands/init/ui.ts",
@@ -479,8 +479,8 @@
479
479
  },
480
480
  {
481
481
  "path": "src/cli/run-cli/error-guidance.ts",
482
- "sha256": "e50c2d6c77bf06350b8c8518c2935e9af6170983ddbd70e309a86befe65d3d81",
483
- "size_bytes": 7380
482
+ "sha256": "d082914c7ae188ebef709df07727cdc1aaecec52e304b5b014d85769c84e6791",
483
+ "size_bytes": 8267
484
484
  },
485
485
  {
486
486
  "path": "src/cli/run-cli/globals.ts",
@@ -584,8 +584,8 @@
584
584
  },
585
585
  {
586
586
  "path": "src/commands/branch/cleanup-merged.ts",
587
- "sha256": "08f7e0ff96ffbeb90c41c0b0a7b1da8caeea602afc3ad97a5d4d3b8faf088205",
588
- "size_bytes": 9888
587
+ "sha256": "91a340c381defb56180c0224064abb9f17330a3162e09b396b7bbf64116866dd",
588
+ "size_bytes": 10393
589
589
  },
590
590
  {
591
591
  "path": "src/commands/branch/index.ts",
@@ -629,14 +629,19 @@
629
629
  },
630
630
  {
631
631
  "path": "src/commands/branch/work-start.ts",
632
- "sha256": "c07b2b3d944bb35d756a6ea564b27e1b95a4034e58d5d3986360ab42625b6756",
633
- "size_bytes": 12825
632
+ "sha256": "3a233c600af99fc7a886ec1450dc98dbd03506ebbb150929503c30ad4fff7d25",
633
+ "size_bytes": 15911
634
634
  },
635
635
  {
636
636
  "path": "src/commands/cleanup/merged.command.ts",
637
637
  "sha256": "a669d7a96dbe8e05ef832945f40fdcba844d7b97bd4e6781a10174b089e48e63",
638
638
  "size_bytes": 3898
639
639
  },
640
+ {
641
+ "path": "src/commands/codex/plugin-install.ts",
642
+ "sha256": "94c15f2e3e10444816538d734320bd0f135b0728e03b6cc36b27e66a199e5e50",
643
+ "size_bytes": 8301
644
+ },
640
645
  {
641
646
  "path": "src/commands/commit.command.ts",
642
647
  "sha256": "93886fa1f52f58645c10b0cf8935381563cb79dffeff877530c80f5df0fbf7c9",
@@ -669,8 +674,8 @@
669
674
  },
670
675
  {
671
676
  "path": "src/commands/doctor/branch-pr.ts",
672
- "sha256": "4cbad1d0e9d93262b54134d802b5913d4ce85229284f40d367e7f8b7fbf120f0",
673
- "size_bytes": 4014
677
+ "sha256": "3d3504826f979acd8ef0593eb56a4e6bafebbfa968beb291dcb237d0efbd2e3a",
678
+ "size_bytes": 4032
674
679
  },
675
680
  {
676
681
  "path": "src/commands/doctor/fixes.ts",
@@ -734,8 +739,8 @@
734
739
  },
735
740
  {
736
741
  "path": "src/commands/guard/impl/commands.ts",
737
- "sha256": "f49ab03e2c230c749a87e37ca7af8bfe68b43996d9f8fe75425ca40e15a969ab",
738
- "size_bytes": 19856
742
+ "sha256": "3d4f0b5764fb3b8006551a21adf78026bbb31e279a367880a0a461dd8b9e9d6b",
743
+ "size_bytes": 22329
739
744
  },
740
745
  {
741
746
  "path": "src/commands/guard/impl/comment-commit.ts",
@@ -769,8 +774,8 @@
769
774
  },
770
775
  {
771
776
  "path": "src/commands/hooks/index.ts",
772
- "sha256": "4b711c85d07964b80eccf2256a12a15c266c788dc15e7e8619b6c4965338e2e5",
773
- "size_bytes": 13958
777
+ "sha256": "3a1723efa9477ec3e37ff71dce0dc6e430df6d447f4a21138cdf135fc6d22169",
778
+ "size_bytes": 15121
774
779
  },
775
780
  {
776
781
  "path": "src/commands/hooks/install.command.ts",
@@ -814,8 +819,8 @@
814
819
  },
815
820
  {
816
821
  "path": "src/commands/pr/check.ts",
817
- "sha256": "5a50dd472e37b7d36b28303ebbb50901cecba49ce2a74fd568c416c251c5dbe2",
818
- "size_bytes": 13722
822
+ "sha256": "0dccc90df33dc52b8f284fd9879bf514795b2ebc63b491c3ed6ebc5e0f1867f9",
823
+ "size_bytes": 13861
819
824
  },
820
825
  {
821
826
  "path": "src/commands/pr/close-superseded.ts",
@@ -844,8 +849,8 @@
844
849
  },
845
850
  {
846
851
  "path": "src/commands/pr/integrate/cmd.ts",
847
- "sha256": "4683f17982e020a625859c1b02ad68cdae48cbf37e77bfea592426c95b47184f",
848
- "size_bytes": 7199
852
+ "sha256": "e2ed1ff93d370407ac59ac9f9672a93f57da530d90cf979160b77892a73e175e",
853
+ "size_bytes": 12321
849
854
  },
850
855
  {
851
856
  "path": "src/commands/pr/integrate/internal/bootstrap-guidance.ts",
@@ -854,13 +859,18 @@
854
859
  },
855
860
  {
856
861
  "path": "src/commands/pr/integrate/internal/cleanup.ts",
857
- "sha256": "9728e86d3949e19a0d7dfd7150c551c12511399c86ec13cf0c0313da27fc10de",
858
- "size_bytes": 1867
862
+ "sha256": "0248a5d500f720fea765dfd3acc2a28486d8e9daa884faba72cf24931292ac3d",
863
+ "size_bytes": 175
859
864
  },
860
865
  {
861
866
  "path": "src/commands/pr/integrate/internal/finalize.ts",
862
- "sha256": "36220cf2a5ce2f97241c91082e5534197ac2c6ac16d11de8977a9b892d60b288",
863
- "size_bytes": 4916
867
+ "sha256": "ded54dc72968dfa3d379359881a382e6a61b4f4e8b6c09b19d7e72bd7c1baea8",
868
+ "size_bytes": 5142
869
+ },
870
+ {
871
+ "path": "src/commands/pr/integrate/internal/github-protection.ts",
872
+ "sha256": "ecd6b88c5a5451e751e9ce22a72c801c511cd6eceacce1de82b281f3c704ac6b",
873
+ "size_bytes": 612
864
874
  },
865
875
  {
866
876
  "path": "src/commands/pr/integrate/internal/merge.ts",
@@ -872,10 +882,15 @@
872
882
  "sha256": "e403c173338975c20d2aba962a1c1ad3626ce127a028d238d8a712f948f2b837",
873
883
  "size_bytes": 983
874
884
  },
885
+ {
886
+ "path": "src/commands/pr/integrate/internal/pre-integrate-bootstrap.ts",
887
+ "sha256": "f06e4a879c1ffbba856970b27adbc09bfa41e750599f955b2912cfd6dc5a48d7",
888
+ "size_bytes": 1445
889
+ },
875
890
  {
876
891
  "path": "src/commands/pr/integrate/internal/prepare.ts",
877
- "sha256": "7840dd0b6c74c418bb9b6d16d85116020eebd47463e5d8e1bd02b25569f2371c",
878
- "size_bytes": 9279
892
+ "sha256": "7a1c4e68f308baef6aae5d2a4f0eb9f29916e85f74eaee8c37c6fae05e463d77",
893
+ "size_bytes": 11484
879
894
  },
880
895
  {
881
896
  "path": "src/commands/pr/integrate/internal/worktree.ts",
@@ -887,10 +902,15 @@
887
902
  "sha256": "c5bb38b7a2e06e50dc75c0ed79f3f2e9c4c0acccffb23768ac4b59c92a742e7c",
888
903
  "size_bytes": 2799
889
904
  },
905
+ {
906
+ "path": "src/commands/pr/internal/auto-commit.ts",
907
+ "sha256": "7829f5fb844007dade38edcf29cd47992c46c8e7b779aba34aee644454dfbad8",
908
+ "size_bytes": 2869
909
+ },
890
910
  {
891
911
  "path": "src/commands/pr/internal/freshness.ts",
892
- "sha256": "4093c59f8d9d4064d55f82c8a92bece944a38d4da18ec437f477d4e8448a7064",
893
- "size_bytes": 2377
912
+ "sha256": "bc13b4b120fb4722e47aaa1eaa51c251ed7b86f429282886b34bad116976c850",
913
+ "size_bytes": 2467
894
914
  },
895
915
  {
896
916
  "path": "src/commands/pr/internal/gh-api.ts",
@@ -914,8 +934,8 @@
914
934
  },
915
935
  {
916
936
  "path": "src/commands/pr/internal/sync.ts",
917
- "sha256": "cd34b2f8ddea3acb5b6fe0265a7d3af6900f2696c3dd314c601ec4f6045943c8",
918
- "size_bytes": 23319
937
+ "sha256": "5064297a36de98de644cf444ec6b30c842eda36a5fb6c81e41416b947a27f787",
938
+ "size_bytes": 25940
919
939
  },
920
940
  {
921
941
  "path": "src/commands/pr/note.ts",
@@ -924,8 +944,8 @@
924
944
  },
925
945
  {
926
946
  "path": "src/commands/pr/open.ts",
927
- "sha256": "15bf5fe8fb3f80e8e73f7690b50848942b00880a9a8b4f14abc2650fe51d2f8a",
928
- "size_bytes": 1961
947
+ "sha256": "7ababfc18c080a69dc37af52994855adce2628290f4dac5a35fb964c705789fc",
948
+ "size_bytes": 3759
929
949
  },
930
950
  {
931
951
  "path": "src/commands/pr/pr.command.ts",
@@ -934,8 +954,8 @@
934
954
  },
935
955
  {
936
956
  "path": "src/commands/pr/update.ts",
937
- "sha256": "bc675c236a5a000bac3ab12c32ec9935a7157c056e848468ed8181777d2434be",
938
- "size_bytes": 3470
957
+ "sha256": "20c322173302a945bebaa52e8375a934cde33b06aed58a1e4cc1242fb5ddf66f",
958
+ "size_bytes": 3892
939
959
  },
940
960
  {
941
961
  "path": "src/commands/ready.command.ts",
@@ -944,13 +964,23 @@
944
964
  },
945
965
  {
946
966
  "path": "src/commands/recipes.test-helpers.ts",
947
- "sha256": "5a767c9adf95157eca4409a52e3128958ae45d5f5b1a92fc3e3ba8b5791f3474",
948
- "size_bytes": 15428
967
+ "sha256": "db30218e3c74e861a8b1f3bf7308b44ac79f5741325a8fcb60b1f784e3012606",
968
+ "size_bytes": 19459
949
969
  },
950
970
  {
951
971
  "path": "src/commands/recipes.ts",
952
- "sha256": "48f91afd4ba14f2a16b1cd7d1b68bb8859f0e5dd23c2da179336a2bb1062dd37",
953
- "size_bytes": 1685
972
+ "sha256": "2a6755a69327ff49cb7c15d295bee1e338a1a9a52712668eb25dc12c502ae1e9",
973
+ "size_bytes": 2608
974
+ },
975
+ {
976
+ "path": "src/commands/recipes/active.command.ts",
977
+ "sha256": "fc67475fc5d2c2ddcea523fcb9d6ea2775f86a508be81fc0bd9eb9930d632390",
978
+ "size_bytes": 798
979
+ },
980
+ {
981
+ "path": "src/commands/recipes/add.command.ts",
982
+ "sha256": "ee86497ac98137c7b92520464910317cc9d535d0e5c081499652c7b73aab5cfb",
983
+ "size_bytes": 1342
954
984
  },
955
985
  {
956
986
  "path": "src/commands/recipes/cache-prune.command.ts",
@@ -962,15 +992,35 @@
962
992
  "sha256": "9c8e29a89078ae059cb021bf8412fba37aab68583494e8df10a6eed906d26af4",
963
993
  "size_bytes": 1034
964
994
  },
995
+ {
996
+ "path": "src/commands/recipes/detach.command.ts",
997
+ "sha256": "6435ae216325c7af4f76de008224a61b41a1d436d9c7d1be37b617a13e014010",
998
+ "size_bytes": 860
999
+ },
1000
+ {
1001
+ "path": "src/commands/recipes/disable.command.ts",
1002
+ "sha256": "9521d898c3e0829a75d8ea6cd437ac023d108093b022c0e29ed0d852701e91e9",
1003
+ "size_bytes": 780
1004
+ },
1005
+ {
1006
+ "path": "src/commands/recipes/enable.command.ts",
1007
+ "sha256": "88cc3243f605ffb158577879905a257c8e4a42c56c7ce7337f9c55dd70676a66",
1008
+ "size_bytes": 781
1009
+ },
1010
+ {
1011
+ "path": "src/commands/recipes/explain-active.command.ts",
1012
+ "sha256": "77e988e82c67d13cd4b230b48547c427d20e3d510362ec747402c920b3068511",
1013
+ "size_bytes": 715
1014
+ },
965
1015
  {
966
1016
  "path": "src/commands/recipes/explain.command.ts",
967
- "sha256": "70de83f3efc694115e071e7bfc08de04913764de59a0d44aa09ba0f197562d1e",
968
- "size_bytes": 747
1017
+ "sha256": "f9e5be58b94b2eeafe76fadfefea98ac146b12e07f777c6e942ca3b8898cdd9a",
1018
+ "size_bytes": 768
969
1019
  },
970
1020
  {
971
1021
  "path": "src/commands/recipes/impl/apply.ts",
972
- "sha256": "6d3e0827d682399c6d6af6c97134c0058195ec828d143b897ccde675b561bb3c",
973
- "size_bytes": 6043
1022
+ "sha256": "92e2191619444aef0487c59d0b7c6e3e9f02e65690ccca948bb89ad2a8d65e72",
1023
+ "size_bytes": 6922
974
1024
  },
975
1025
  {
976
1026
  "path": "src/commands/recipes/impl/archive.ts",
@@ -979,28 +1029,58 @@
979
1029
  },
980
1030
  {
981
1031
  "path": "src/commands/recipes/impl/commands.ts",
982
- "sha256": "46300820a9380642393597aecb6415d9236713493853e08cd11aac654cf7a0e1",
983
- "size_bytes": 442
1032
+ "sha256": "86eba5ec093833c7b0b79d02dbe1ece2e573dac19ffb7e98f222060b4ae9323c",
1033
+ "size_bytes": 887
1034
+ },
1035
+ {
1036
+ "path": "src/commands/recipes/impl/commands/active.ts",
1037
+ "sha256": "c6b4d3211479bff511fe85822ed2b606533ca4838c4ca0c1a34b7c7656e82106",
1038
+ "size_bytes": 1807
1039
+ },
1040
+ {
1041
+ "path": "src/commands/recipes/impl/commands/add.ts",
1042
+ "sha256": "a7fc47c86049c4459e1af744388d5bc2179c68112a5b0ff9a8b49a90d3852a56",
1043
+ "size_bytes": 4902
984
1044
  },
985
1045
  {
986
1046
  "path": "src/commands/recipes/impl/commands/cache-prune.ts",
987
1047
  "sha256": "a9866b5fcefe980c5719e6c6df90b7f60ecf5b289c6f6cb04fbdc5580c47c632",
988
1048
  "size_bytes": 4748
989
1049
  },
1050
+ {
1051
+ "path": "src/commands/recipes/impl/commands/detach.ts",
1052
+ "sha256": "773054f3bc1e6f1b853ad653f9ac7bac53937de97804181c17ac02b5b740e0d1",
1053
+ "size_bytes": 4041
1054
+ },
1055
+ {
1056
+ "path": "src/commands/recipes/impl/commands/disable.ts",
1057
+ "sha256": "ee65f192b762c8e65171f4e5fca58b71f0c3adc9d4fbdeed8d5e1cdb7bcb1c37",
1058
+ "size_bytes": 932
1059
+ },
1060
+ {
1061
+ "path": "src/commands/recipes/impl/commands/enable.ts",
1062
+ "sha256": "8d56daf3844d9e6bd47592a2525d2f4a133a91ceb8298125af8f179228f31d19",
1063
+ "size_bytes": 1606
1064
+ },
1065
+ {
1066
+ "path": "src/commands/recipes/impl/commands/explain-active.ts",
1067
+ "sha256": "7b8c2e93d5a28fd9101224a178c72b1523f74608aee10a618f962d692e5e46aa",
1068
+ "size_bytes": 806
1069
+ },
990
1070
  {
991
1071
  "path": "src/commands/recipes/impl/commands/explain.ts",
992
- "sha256": "15da836ef21131746bde4777fc7238633aef674fb061dc8873b3f664e8534c6e",
993
- "size_bytes": 6336
1072
+ "sha256": "5b4b8073ad561175867ab2554897473dd2723884c219f1d053ed47c131747497",
1073
+ "size_bytes": 8324
994
1074
  },
995
1075
  {
996
1076
  "path": "src/commands/recipes/impl/commands/info.ts",
997
- "sha256": "453e362b1f1c7d59d28bd4c0a8119cdb9482f75eb8252d213f717887c3792d09",
998
- "size_bytes": 2801
1077
+ "sha256": "883072a3bc4004e9d389634e45230183b09ccbd50f6bdc121fdcc925df0f94d1",
1078
+ "size_bytes": 3476
999
1079
  },
1000
1080
  {
1001
1081
  "path": "src/commands/recipes/impl/commands/install.ts",
1002
- "sha256": "675a1902bc6d3b73a27bd6d11e6a7ed9ab14b3ed54e65adceb88bd101601315e",
1003
- "size_bytes": 10686
1082
+ "sha256": "1e58ecbe4221e21525a1ca1c15c91a2d77ee2781396fcf3962e2c2f3eb1a0dac",
1083
+ "size_bytes": 10548
1004
1084
  },
1005
1085
  {
1006
1086
  "path": "src/commands/recipes/impl/commands/list-remote.ts",
@@ -1009,18 +1089,23 @@
1009
1089
  },
1010
1090
  {
1011
1091
  "path": "src/commands/recipes/impl/commands/list.ts",
1012
- "sha256": "0d4a6553df2a63dd05fd61ac97e588f26eb87da842f0933af58daefdf8b06f8c",
1013
- "size_bytes": 1910
1092
+ "sha256": "67e3cfe976b29a4348366a364f407569eeae2c2e469445d6f68a384739127aaf",
1093
+ "size_bytes": 1867
1014
1094
  },
1015
1095
  {
1016
1096
  "path": "src/commands/recipes/impl/commands/remove.ts",
1017
- "sha256": "88b5f3127bc41b433e412e1898f30f2d2ced6bf409e2d558058cee6c0988dc6b",
1018
- "size_bytes": 1807
1097
+ "sha256": "bfacd5aaa98f8703cc1a92cb1ae90b5171889866803952e1dd8cc64b88e60f35",
1098
+ "size_bytes": 2195
1099
+ },
1100
+ {
1101
+ "path": "src/commands/recipes/impl/commands/update.ts",
1102
+ "sha256": "17d92758672b84d58baddbb425c5efd90e0559178f1fd0fc3b169c5bda47f4cf",
1103
+ "size_bytes": 4560
1019
1104
  },
1020
1105
  {
1021
1106
  "path": "src/commands/recipes/impl/constants.ts",
1022
- "sha256": "687f3c35891b94f8a30d1dad2e0ddef9b96eff8eb042ed58ffe1b3aa8e23c3e3",
1023
- "size_bytes": 1035
1107
+ "sha256": "c979671da44723edf9d298898567133a3fdbb8d7be245cff35b751a4d5d701bd",
1108
+ "size_bytes": 481
1024
1109
  },
1025
1110
  {
1026
1111
  "path": "src/commands/recipes/impl/format.ts",
@@ -1039,23 +1124,38 @@
1039
1124
  },
1040
1125
  {
1041
1126
  "path": "src/commands/recipes/impl/manifest.ts",
1042
- "sha256": "a447b3254a936df8e0405edaf37c99ec219906a87baf0b50892b2ec039d3aaf0",
1043
- "size_bytes": 12530
1127
+ "sha256": "d415d5903159f2d5e2190996a91cc3f9c1bd3a53f144a8779c4f058dee4aa89e",
1128
+ "size_bytes": 425
1044
1129
  },
1045
1130
  {
1046
1131
  "path": "src/commands/recipes/impl/normalize.ts",
1047
1132
  "sha256": "9b4f0772ba16a66158d6ad27f1f7ed004c451d2d23cb13dedf2e5cf21a43dd84",
1048
1133
  "size_bytes": 2104
1049
1134
  },
1135
+ {
1136
+ "path": "src/commands/recipes/impl/overlay-project.ts",
1137
+ "sha256": "a8b75dbfe6a78e93799eea15d9d4a7443ef4e40661fe2e9ad421706f7c016e38",
1138
+ "size_bytes": 11618
1139
+ },
1050
1140
  {
1051
1141
  "path": "src/commands/recipes/impl/paths.ts",
1052
- "sha256": "40ea52e99eba1425397eec87563eabc28cdbeb025b813525d38002ce311536ba",
1053
- "size_bytes": 1946
1142
+ "sha256": "7c0e611dc49faef93458e30e2e7e77b0ec4635e60e6ddd3bc0954f92415b2037",
1143
+ "size_bytes": 2998
1054
1144
  },
1055
1145
  {
1056
1146
  "path": "src/commands/recipes/impl/project-installed-recipes.ts",
1057
- "sha256": "8694434010fe1bbcc2ad03da563d19b73ab9794a77b094657b463dfd78f5d055",
1058
- "size_bytes": 4700
1147
+ "sha256": "0698691f9acd1375b5b3a979d2232744a637f9542fb004abd8609d1c0a7428b9",
1148
+ "size_bytes": 2764
1149
+ },
1150
+ {
1151
+ "path": "src/commands/recipes/impl/project-recipe-state.ts",
1152
+ "sha256": "5c4a2b906438e8d152640af945948eb592cf0d73b162ca5f03ae2c8e6579a5d4",
1153
+ "size_bytes": 4183
1154
+ },
1155
+ {
1156
+ "path": "src/commands/recipes/impl/project-registry.ts",
1157
+ "sha256": "1173987546090df6587266c32d692f1a51a3532a363e46d6414fc1d38eedf876",
1158
+ "size_bytes": 4970
1059
1159
  },
1060
1160
  {
1061
1161
  "path": "src/commands/recipes/impl/project.ts",
@@ -1064,8 +1164,8 @@
1064
1164
  },
1065
1165
  {
1066
1166
  "path": "src/commands/recipes/impl/resolver.ts",
1067
- "sha256": "3485e9e1eb8613ffcace6a5eb38682e287eab3d2d4c661883793cca5d1c90e9d",
1068
- "size_bytes": 11708
1167
+ "sha256": "b068757162ecbd2d3eb4df415bce2d3b0834b7f2d057e9ec749ff579c3c3c3c2",
1168
+ "size_bytes": 11853
1069
1169
  },
1070
1170
  {
1071
1171
  "path": "src/commands/recipes/impl/scenario.ts",
@@ -1074,13 +1174,13 @@
1074
1174
  },
1075
1175
  {
1076
1176
  "path": "src/commands/recipes/impl/types.ts",
1077
- "sha256": "8f0b0881697a86601afa91b45b794a8853b29ced16a43f0cab014d8183dd3fc8",
1078
- "size_bytes": 5913
1177
+ "sha256": "d1ed407a7cd6eb165c496602bdf60fb2efbcf7b758d27710ad84415d6087dcd8",
1178
+ "size_bytes": 1443
1079
1179
  },
1080
1180
  {
1081
1181
  "path": "src/commands/recipes/info.command.ts",
1082
- "sha256": "c9e0f0ca7b9c27a151db0779c8dbf77f29e6c323e5ff720cd78b0bf76b62a576",
1083
- "size_bytes": 703
1182
+ "sha256": "ddefcdd3c6cfc42a67accd5755828a343da51701679c505f1dfb4926b0595925",
1183
+ "size_bytes": 707
1084
1184
  },
1085
1185
  {
1086
1186
  "path": "src/commands/recipes/install.run.ts",
@@ -1089,8 +1189,8 @@
1089
1189
  },
1090
1190
  {
1091
1191
  "path": "src/commands/recipes/install.spec.ts",
1092
- "sha256": "b74e888e70dc3fa221d1032d27a30c829d56985732173aebf8023743af3a98eb",
1093
- "size_bytes": 4776
1192
+ "sha256": "a77582d2b892323fddf711aca98654fd737917a5192492af4e97efdc4097724e",
1193
+ "size_bytes": 4792
1094
1194
  },
1095
1195
  {
1096
1196
  "path": "src/commands/recipes/list-remote.command.ts",
@@ -1099,8 +1199,8 @@
1099
1199
  },
1100
1200
  {
1101
1201
  "path": "src/commands/recipes/list.command.ts",
1102
- "sha256": "8f61561d4c6872f1651d8559cdf1889d4d77a21eda12052a1c3ed6f628fa6749",
1103
- "size_bytes": 1520
1202
+ "sha256": "e70fa0175d1e4bec42044174fd19e85d50578efe7dd86235c95d0a0ce431fb6b",
1203
+ "size_bytes": 1508
1104
1204
  },
1105
1205
  {
1106
1206
  "path": "src/commands/recipes/recipes.command.ts",
@@ -1109,8 +1209,13 @@
1109
1209
  },
1110
1210
  {
1111
1211
  "path": "src/commands/recipes/remove.command.ts",
1112
- "sha256": "2d32b0c4bcd3dd13c843d27327c895595946e3a4f7ff52edac93505133ccef86",
1113
- "size_bytes": 718
1212
+ "sha256": "2704677705ffa0611d295d6adabf3269d719f8250515da52ac92bbbd2b4b6de0",
1213
+ "size_bytes": 750
1214
+ },
1215
+ {
1216
+ "path": "src/commands/recipes/update.command.ts",
1217
+ "sha256": "559299fe375040313ac9e3339f4ae50dbb48baf37c27ddeb82a6307b14a50eac",
1218
+ "size_bytes": 1228
1114
1219
  },
1115
1220
  {
1116
1221
  "path": "src/commands/release.test-helpers.ts",
@@ -1119,13 +1224,13 @@
1119
1224
  },
1120
1225
  {
1121
1226
  "path": "src/commands/release/apply.command.ts",
1122
- "sha256": "02a7f022ce64366a8d69ab63a619a01555bc0da8877554d71d346172910abe78",
1123
- "size_bytes": 14301
1227
+ "sha256": "fc41fafc65e35b110a8f22c05a137c0ad4df65e71a2d6badb2b8f0dedad3ecbc",
1228
+ "size_bytes": 29873
1124
1229
  },
1125
1230
  {
1126
1231
  "path": "src/commands/release/apply.mutation.ts",
1127
- "sha256": "0e30f82b6dab981141c618f879c53bcb394a61e278ae5ac9f878782147742bef",
1128
- "size_bytes": 4433
1232
+ "sha256": "a103b80ae5d4c8bc8e2ffadbb4af044a52addfdd11805d2a1e7493ce8212f17c",
1233
+ "size_bytes": 4470
1129
1234
  },
1130
1235
  {
1131
1236
  "path": "src/commands/release/apply.preflight.ts",
@@ -1134,18 +1239,18 @@
1134
1239
  },
1135
1240
  {
1136
1241
  "path": "src/commands/release/apply.reporting.ts",
1137
- "sha256": "5174dfc70c2fb1cc06e8d29910ec738f5985a726cb0b7d932fc3221ff18ec8d2",
1138
- "size_bytes": 1121
1242
+ "sha256": "9beb497c4aec3e0ad8456e0fae35f7c711e2394dad5c023f883b212856151b9f",
1243
+ "size_bytes": 1406
1139
1244
  },
1140
1245
  {
1141
1246
  "path": "src/commands/release/apply.types.ts",
1142
- "sha256": "fc38cc16225c4a51a4011875517ba1137f219fb20e2aeeebfed761237d8c00fb",
1143
- "size_bytes": 926
1247
+ "sha256": "fd3d3fcd0e21fc1110db54d6dc8a25c284537305ab147c3ac8b12b9120a22533",
1248
+ "size_bytes": 1213
1144
1249
  },
1145
1250
  {
1146
1251
  "path": "src/commands/release/plan.command.ts",
1147
- "sha256": "2c149546aab2824970eadc9cc6f7a629c7934f1c3cb7aa572fb39794c2627dca",
1148
- "size_bytes": 10477
1252
+ "sha256": "3538a8159233866e4b26c733f51b822a389926fcd72c1a221c2d0e37c89080d8",
1253
+ "size_bytes": 12458
1149
1254
  },
1150
1255
  {
1151
1256
  "path": "src/commands/release/release.command.ts",
@@ -1164,13 +1269,13 @@
1164
1269
  },
1165
1270
  {
1166
1271
  "path": "src/commands/scenario/execute.command.ts",
1167
- "sha256": "f3769b3d1fb5f80ba6389c1e2869bbb2f649b388768d65c97c88e45c497c92a9",
1168
- "size_bytes": 4991
1272
+ "sha256": "f89df359b2f26c3e01a4c28845411951afca3a9b0c4c35ed4b22a8858dc21a74",
1273
+ "size_bytes": 5017
1169
1274
  },
1170
1275
  {
1171
1276
  "path": "src/commands/scenario/impl/commands.ts",
1172
- "sha256": "29de95ccd4409d90dbf5d21b457711f0e93ec1eabff531442b335d33480b50dd",
1173
- "size_bytes": 12975
1277
+ "sha256": "c8d8578508ea2824a27d7e87de2f2057d1fc6baafadac89d9c3f81530a261dac",
1278
+ "size_bytes": 13007
1174
1279
  },
1175
1280
  {
1176
1281
  "path": "src/commands/scenario/impl/report.ts",
@@ -1179,23 +1284,23 @@
1179
1284
  },
1180
1285
  {
1181
1286
  "path": "src/commands/scenario/info.command.ts",
1182
- "sha256": "69f594f4bd53ab473564049bb6c6e0cc56400eafebd31393456d29cc9c744744",
1183
- "size_bytes": 1292
1287
+ "sha256": "01812137897e6c68d6f93d3c71ded9a4eb7b8b21d5ce5b8f285ce9f9c0851fde",
1288
+ "size_bytes": 1318
1184
1289
  },
1185
1290
  {
1186
1291
  "path": "src/commands/scenario/list.command.ts",
1187
- "sha256": "31b7f02b4b529a884c57ab7fedf337fa837cd64fc37d397745c64854ac03bfd3",
1188
- "size_bytes": 653
1292
+ "sha256": "b57a464b2ba5f35cf2242309b1be033c5d087eb090717225a67740405d4b79da",
1293
+ "size_bytes": 671
1189
1294
  },
1190
1295
  {
1191
1296
  "path": "src/commands/scenario/run.command.ts",
1192
- "sha256": "40f8ade45b5726eaab72f545504b0eb5c04f69ecf5962a8f76f6cc55d2f51a94",
1193
- "size_bytes": 1310
1297
+ "sha256": "4cb5907f8c67b4923b670411f39615d48a8db307fea3ae3a6d0abb054a9b624e",
1298
+ "size_bytes": 1344
1194
1299
  },
1195
1300
  {
1196
1301
  "path": "src/commands/scenario/scenario.command.ts",
1197
- "sha256": "6dfb8dfe2b848697119596a4a2ebcb2cb63145af9067312b19bdf5917ec1849c",
1198
- "size_bytes": 1015
1302
+ "sha256": "373b87cda2a75fbdc4b067d04ecba5581d09717416a3f2776c9b09acd4a10d17",
1303
+ "size_bytes": 1068
1199
1304
  },
1200
1305
  {
1201
1306
  "path": "src/commands/shared/approval-requirements.ts",
@@ -1232,6 +1337,11 @@
1232
1337
  "sha256": "e91e79fe6292e0d1cbfb5c768d76d95cc568c60fdc99189ef67ae6405a5ff81d",
1233
1338
  "size_bytes": 508
1234
1339
  },
1340
+ {
1341
+ "path": "src/commands/shared/merged-branch-cleanup.ts",
1342
+ "sha256": "3521be214ca86b2f99cd79bc43819e265668c1f7eb0780e421a49dc2cd649941",
1343
+ "size_bytes": 1818
1344
+ },
1235
1345
  {
1236
1346
  "path": "src/commands/shared/network-approval.ts",
1237
1347
  "sha256": "c56aa2b1b65211fd043a4a5ccda7d4cae53d43758b1945ec6c40c9cf57e9d843",
@@ -1254,8 +1364,8 @@
1254
1364
  },
1255
1365
  {
1256
1366
  "path": "src/commands/shared/post-commit-pr-artifacts.ts",
1257
- "sha256": "2447e52f0482bb1d3621334105ffa3305a9e6bd73c067582012471070732d736",
1258
- "size_bytes": 1030
1367
+ "sha256": "88e6625502e8d0fe8b23fa074dd4dd2c40d2db4537a75d1b93fe9524a8777ade",
1368
+ "size_bytes": 2233
1259
1369
  },
1260
1370
  {
1261
1371
  "path": "src/commands/shared/pr-meta.ts",
@@ -1269,18 +1379,18 @@
1269
1379
  },
1270
1380
  {
1271
1381
  "path": "src/commands/shared/task-backend.ts",
1272
- "sha256": "67b99d9510b8e681c26e288132f4e421896dd550a994204238f4ab7af23c9086",
1273
- "size_bytes": 9588
1382
+ "sha256": "81ee7a5bc74476bb67dda073f0ea62b12e43edd2d7cc87d822ee187db9365833",
1383
+ "size_bytes": 11019
1274
1384
  },
1275
1385
  {
1276
1386
  "path": "src/commands/shared/task-handoff.ts",
1277
- "sha256": "c0205fc677b406ae11198e7e6657941b7079960c36382de8273a2044145eb200",
1278
- "size_bytes": 6625
1387
+ "sha256": "71daeba5f527657c8b890c36b43a1d4d2db0693b32fa1862b930e4f6cbfafa5c",
1388
+ "size_bytes": 7343
1279
1389
  },
1280
1390
  {
1281
1391
  "path": "src/commands/shared/task-local-freshness.ts",
1282
- "sha256": "7b5060b0c5c973db8176e1022756a52f17c7cc28909e2c6ba5d1d3e265529282",
1283
- "size_bytes": 981
1392
+ "sha256": "85f794e7653c9a5f8a9eef42008eee830ac0d729871b1f60fba3f47684ac46bf",
1393
+ "size_bytes": 1303
1284
1394
  },
1285
1395
  {
1286
1396
  "path": "src/commands/shared/task-mutation.ts",
@@ -1424,8 +1534,8 @@
1424
1534
  },
1425
1535
  {
1426
1536
  "path": "src/commands/task/finish-shared.ts",
1427
- "sha256": "6bfea7806ec0156aa75693cb3acba5d1caa79b0b6a6875d2139781dd0de84392",
1428
- "size_bytes": 10088
1537
+ "sha256": "c62a645e073973e8136005cf4c5072319af53982c3d5b8f60e6f7c69264754f9",
1538
+ "size_bytes": 10190
1429
1539
  },
1430
1540
  {
1431
1541
  "path": "src/commands/task/finish.ts",
@@ -1439,8 +1549,8 @@
1439
1549
  },
1440
1550
  {
1441
1551
  "path": "src/commands/task/handoff-show.command.ts",
1442
- "sha256": "b7710b1fd583a95daa68555cedaacd698c7c8d92b779347ffef3f7a1a528144f",
1443
- "size_bytes": 3153
1552
+ "sha256": "3155747642271d70ac9acf28e57653a2a93b7667c1892ad2caaaa84611ab775e",
1553
+ "size_bytes": 4160
1444
1554
  },
1445
1555
  {
1446
1556
  "path": "src/commands/task/handoff.command.ts",
@@ -1454,18 +1564,18 @@
1454
1564
  },
1455
1565
  {
1456
1566
  "path": "src/commands/task/hosted-close-pr.command.ts",
1457
- "sha256": "1e945dedfd6ae84817dbe73ea0bf7adbc29a99e04ec8c85bae94a30a3488dd21",
1458
- "size_bytes": 16981
1567
+ "sha256": "fcda2a63c9976ede02e773abc7624bdf4b2729a25a7f2bebb90a7eddb7239e67",
1568
+ "size_bytes": 18459
1459
1569
  },
1460
1570
  {
1461
1571
  "path": "src/commands/task/hosted-close.command.ts",
1462
- "sha256": "f07e95d157c19ff1ae0162964658ecb4259aba620e72e3ab6c42690f29511b45",
1463
- "size_bytes": 9788
1572
+ "sha256": "df15bfa1206c504896f02049ab36e13d8920df488c9f952a7cac04210939a396",
1573
+ "size_bytes": 15405
1464
1574
  },
1465
1575
  {
1466
1576
  "path": "src/commands/task/hosted-merge-sync.ts",
1467
- "sha256": "93424fe294fe5bb07fa2b2bb7177915326b7bb097f84a1ff892ff0ada8b7d36a",
1468
- "size_bytes": 20175
1577
+ "sha256": "ee4ce3455cb36024bc5108862e989fda14ff5041afcabf3df33cd16a1c3ebc44",
1578
+ "size_bytes": 22106
1469
1579
  },
1470
1580
  {
1471
1581
  "path": "src/commands/task/index.ts",
@@ -1779,8 +1889,8 @@
1779
1889
  },
1780
1890
  {
1781
1891
  "path": "src/commands/task/start-ready.ts",
1782
- "sha256": "2c2e171f483dd593c874249d2ed8fa1c35401cdfb2d8a3fce2008e964a1ffab8",
1783
- "size_bytes": 5444
1892
+ "sha256": "f3b1e852d0d8052586b2f33bf2123d5456bf4ce90ef34fca1ba91fa7a020ea3b",
1893
+ "size_bytes": 1867
1784
1894
  },
1785
1895
  {
1786
1896
  "path": "src/commands/task/start.ts",
@@ -2089,13 +2199,13 @@
2089
2199
  },
2090
2200
  {
2091
2201
  "path": "src/runner/context/base-prompts.ts",
2092
- "sha256": "7e2a1b64b125ad7aa7eb46b7ee722bffd7625c9f55e95e683b9ad46308e24ed1",
2093
- "size_bytes": 16731
2202
+ "sha256": "e0cfae8c4ad9a4db2365a6cf3bd0ee3cd776228154e270a9ec9ebfdefb34f011",
2203
+ "size_bytes": 20299
2094
2204
  },
2095
2205
  {
2096
2206
  "path": "src/runner/context/recipe-context.ts",
2097
- "sha256": "073ab67a86c7d741f3dcf649f32b795deda4039701e6911e01ffe34900c44816",
2098
- "size_bytes": 3029
2207
+ "sha256": "3f02f7db152f01f68d86fab7af09f604f8fd20a95918bd811b80399c0395fe21",
2208
+ "size_bytes": 4434
2099
2209
  },
2100
2210
  {
2101
2211
  "path": "src/runner/context/task-context.ts",
@@ -2169,8 +2279,8 @@
2169
2279
  },
2170
2280
  {
2171
2281
  "path": "src/runner/types.ts",
2172
- "sha256": "a502df4e3ebc1e4c9401041e82280ac9345d53cab0b701e093167c221ec94f75",
2173
- "size_bytes": 10217
2282
+ "sha256": "34b80d25e9fc6e15b1a82dca58bcb913786bb4e12407e40cc629b65de94b35b7",
2283
+ "size_bytes": 10419
2174
2284
  },
2175
2285
  {
2176
2286
  "path": "src/runner/usecases/scenario-materialize-task.ts",
@@ -2204,8 +2314,8 @@
2204
2314
  },
2205
2315
  {
2206
2316
  "path": "src/runner/usecases/task-run.ts",
2207
- "sha256": "72788585bb6d106808fae203d7447aa17cee1631f3921c615b93aaa4c74424a9",
2208
- "size_bytes": 14186
2317
+ "sha256": "34c09afb9afce433cac212b8fe49ec77509118009e8f6d96ae7f7d2178132fec",
2318
+ "size_bytes": 14223
2209
2319
  },
2210
2320
  {
2211
2321
  "path": "src/runtime/approvals/index.ts",
@@ -2229,13 +2339,13 @@
2229
2339
  },
2230
2340
  {
2231
2341
  "path": "src/runtime/behavior/resolve.ts",
2232
- "sha256": "8fd639489a4d1c7aff3fe97680aceb9ae17d52c734e1d1fafc97e91bd975718c",
2233
- "size_bytes": 2819
2342
+ "sha256": "efb29fadf88c71d008993beff2bfa6098c7558a5ad05353a4315b632fbe8d18d",
2343
+ "size_bytes": 3686
2234
2344
  },
2235
2345
  {
2236
2346
  "path": "src/runtime/behavior/types.ts",
2237
- "sha256": "f732b3f2ce8dd3bb1a7727a78451aa25796ac393646085079bc9358fddb64416",
2238
- "size_bytes": 826
2347
+ "sha256": "253f723069cea44d2b0b0beafd7feb290faade5daa4f96e647bd87972a4aeb0d",
2348
+ "size_bytes": 891
2239
2349
  },
2240
2350
  {
2241
2351
  "path": "src/runtime/capabilities/backend.ts",
@@ -2249,8 +2359,8 @@
2249
2359
  },
2250
2360
  {
2251
2361
  "path": "src/runtime/capabilities/recipe.ts",
2252
- "sha256": "88bbf9ab7ba531de87014db981e8c791d7c30fd88bcb352cd7d328cab59aebc0",
2253
- "size_bytes": 4641
2362
+ "sha256": "a784daa190534d26e050dfafd4f9671a79e56325f4a08822c43766b3585652e3",
2363
+ "size_bytes": 6476
2254
2364
  },
2255
2365
  {
2256
2366
  "path": "src/runtime/capabilities/registry.ts",
@@ -2394,8 +2504,8 @@
2394
2504
  },
2395
2505
  {
2396
2506
  "path": "src/shared/errors.ts",
2397
- "sha256": "1d80d9467f2d16ce55529436dedf8b6d34e32b495d86fb9effb4d7e9cf6123a2",
2398
- "size_bytes": 1326
2507
+ "sha256": "9a0899d580559d819f080df0518686e374f252befef6087aebb59b07f6a8c933",
2508
+ "size_bytes": 1342
2399
2509
  },
2400
2510
  {
2401
2511
  "path": "src/shared/git-log.ts",
@@ -2434,8 +2544,8 @@
2434
2544
  },
2435
2545
  {
2436
2546
  "path": "src/shared/runtime-source.ts",
2437
- "sha256": "8fe0cd70148a835a17c44cc8cb6f8d4f2410c4f0edc7eb52f00b2b62142cfd41",
2438
- "size_bytes": 6950
2547
+ "sha256": "e14449747e472158a645ed6ddeaa2af28234e5d2d0784e2d93a3a554ed438759",
2548
+ "size_bytes": 7305
2439
2549
  },
2440
2550
  {
2441
2551
  "path": "src/shared/strings.ts",