agentplane 0.3.13 → 0.3.15

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 (278) hide show
  1. package/assets/RUNNER.md +1 -1
  2. package/assets/agents/ORCHESTRATOR.json +1 -1
  3. package/assets/agents/SKILL_EXTRACTOR.json +31 -0
  4. package/assets/framework.manifest.json +7 -0
  5. package/assets/policy/incidents.md +5 -3
  6. package/assets/policy/workflow.branch_pr.md +10 -5
  7. package/dist/.build-manifest.json +280 -180
  8. package/dist/cli/output.d.ts +29 -0
  9. package/dist/cli/output.d.ts.map +1 -1
  10. package/dist/cli/output.js +33 -0
  11. package/dist/cli/run-cli/command-catalog/core.d.ts.map +1 -1
  12. package/dist/cli/run-cli/command-catalog/core.js +29 -87
  13. package/dist/cli/run-cli/command-catalog/lifecycle.d.ts.map +1 -1
  14. package/dist/cli/run-cli/command-catalog/lifecycle.js +4 -12
  15. package/dist/cli/run-cli/command-catalog/project.d.ts +1 -1
  16. package/dist/cli/run-cli/command-catalog/project.d.ts.map +1 -1
  17. package/dist/cli/run-cli/command-catalog/project.js +16 -38
  18. package/dist/cli/run-cli/command-catalog/shared.d.ts +9 -6
  19. package/dist/cli/run-cli/command-catalog/shared.d.ts.map +1 -1
  20. package/dist/cli/run-cli/command-catalog/shared.js +23 -6
  21. package/dist/cli/run-cli/command-catalog/task.d.ts.map +1 -1
  22. package/dist/cli/run-cli/command-catalog/task.js +6 -18
  23. package/dist/cli/run-cli/command-catalog.d.ts +1 -1
  24. package/dist/cli/run-cli/command-catalog.d.ts.map +1 -1
  25. package/dist/cli/run-cli/commands/init/recipes.d.ts.map +1 -1
  26. package/dist/cli/run-cli/commands/init/recipes.js +1 -0
  27. package/dist/cli/run-cli.js +1 -1
  28. package/dist/cli/run-cli.test-helpers.d.ts +1 -74
  29. package/dist/cli/run-cli.test-helpers.d.ts.map +1 -1
  30. package/dist/cli/run-cli.test-helpers.js +1 -769
  31. package/dist/commands/branch/cleanup-merged.d.ts.map +1 -1
  32. package/dist/commands/branch/cleanup-merged.js +5 -9
  33. package/dist/commands/branch/work-start.command.d.ts.map +1 -1
  34. package/dist/commands/branch/work-start.command.js +1 -0
  35. package/dist/commands/commit.spec.d.ts.map +1 -1
  36. package/dist/commands/commit.spec.js +2 -0
  37. package/dist/commands/doctor/branch-pr.d.ts +1 -1
  38. package/dist/commands/doctor/branch-pr.d.ts.map +1 -1
  39. package/dist/commands/doctor/branch-pr.js +5 -2
  40. package/dist/commands/guard/impl/commands.d.ts.map +1 -1
  41. package/dist/commands/guard/impl/commands.js +4 -1
  42. package/dist/commands/guard/impl/comment-commit.d.ts.map +1 -1
  43. package/dist/commands/guard/impl/comment-commit.js +2 -1
  44. package/dist/commands/guard/impl/env.d.ts +6 -0
  45. package/dist/commands/guard/impl/env.d.ts.map +1 -1
  46. package/dist/commands/guard/impl/env.js +41 -0
  47. package/dist/commands/pr/internal/auto-commit.d.ts.map +1 -1
  48. package/dist/commands/pr/internal/auto-commit.js +2 -1
  49. package/dist/commands/pr/internal/sync-branch.d.ts +36 -0
  50. package/dist/commands/pr/internal/sync-branch.d.ts.map +1 -0
  51. package/dist/commands/pr/internal/sync-branch.js +113 -0
  52. package/dist/commands/pr/internal/sync-github.d.ts +28 -0
  53. package/dist/commands/pr/internal/sync-github.d.ts.map +1 -0
  54. package/dist/commands/pr/internal/sync-github.js +178 -0
  55. package/dist/commands/pr/internal/sync-model.d.ts +36 -0
  56. package/dist/commands/pr/internal/sync-model.d.ts.map +1 -0
  57. package/dist/commands/pr/internal/sync-model.js +1 -0
  58. package/dist/commands/pr/internal/sync-open-step.d.ts +10 -0
  59. package/dist/commands/pr/internal/sync-open-step.d.ts.map +1 -0
  60. package/dist/commands/pr/internal/sync-open-step.js +128 -0
  61. package/dist/commands/pr/internal/sync-support.d.ts +7 -0
  62. package/dist/commands/pr/internal/sync-support.d.ts.map +1 -0
  63. package/dist/commands/pr/internal/sync-support.js +29 -0
  64. package/dist/commands/pr/internal/sync-update-step.d.ts +6 -0
  65. package/dist/commands/pr/internal/sync-update-step.d.ts.map +1 -0
  66. package/dist/commands/pr/internal/sync-update-step.js +68 -0
  67. package/dist/commands/pr/internal/sync.d.ts +2 -6
  68. package/dist/commands/pr/internal/sync.d.ts.map +1 -1
  69. package/dist/commands/pr/internal/sync.js +83 -529
  70. package/dist/commands/pr/open.d.ts.map +1 -1
  71. package/dist/commands/pr/open.js +25 -8
  72. package/dist/commands/pr/pr.command.d.ts.map +1 -1
  73. package/dist/commands/pr/pr.command.js +7 -2
  74. package/dist/commands/recipes/impl/apply.d.ts +1 -1
  75. package/dist/commands/recipes/impl/apply.d.ts.map +1 -1
  76. package/dist/commands/recipes/impl/apply.js +1 -2
  77. package/dist/commands/recipes/impl/commands/active.d.ts.map +1 -1
  78. package/dist/commands/recipes/impl/commands/active.js +6 -5
  79. package/dist/commands/recipes/impl/commands/add.d.ts +1 -0
  80. package/dist/commands/recipes/impl/commands/add.d.ts.map +1 -1
  81. package/dist/commands/recipes/impl/commands/add.js +32 -27
  82. package/dist/commands/recipes/impl/commands/detach.d.ts.map +1 -1
  83. package/dist/commands/recipes/impl/commands/detach.js +35 -21
  84. package/dist/commands/recipes/impl/commands/disable.d.ts.map +1 -1
  85. package/dist/commands/recipes/impl/commands/disable.js +5 -3
  86. package/dist/commands/recipes/impl/commands/enable.d.ts.map +1 -1
  87. package/dist/commands/recipes/impl/commands/enable.js +5 -3
  88. package/dist/commands/recipes/impl/commands/explain.d.ts.map +1 -1
  89. package/dist/commands/recipes/impl/commands/explain.js +57 -47
  90. package/dist/commands/recipes/impl/commands/info.d.ts.map +1 -1
  91. package/dist/commands/recipes/impl/commands/info.js +25 -21
  92. package/dist/commands/recipes/impl/commands/install.d.ts +1 -1
  93. package/dist/commands/recipes/impl/commands/install.d.ts.map +1 -1
  94. package/dist/commands/recipes/impl/commands/install.js +3 -13
  95. package/dist/commands/recipes/impl/commands/list-remote.d.ts.map +1 -1
  96. package/dist/commands/recipes/impl/commands/list-remote.js +2 -3
  97. package/dist/commands/recipes/impl/commands/list.d.ts.map +1 -1
  98. package/dist/commands/recipes/impl/commands/list.js +7 -6
  99. package/dist/commands/recipes/impl/commands/remove.d.ts.map +1 -1
  100. package/dist/commands/recipes/impl/commands/remove.js +12 -7
  101. package/dist/commands/recipes/impl/commands/update.d.ts.map +1 -1
  102. package/dist/commands/recipes/impl/commands/update.js +38 -24
  103. package/dist/commands/recipes/impl/index.d.ts +1 -1
  104. package/dist/commands/recipes/impl/index.d.ts.map +1 -1
  105. package/dist/commands/recipes/impl/installed-recipes.d.ts +1 -1
  106. package/dist/commands/recipes/impl/installed-recipes.d.ts.map +1 -1
  107. package/dist/commands/recipes/impl/installed-recipes.js +1 -2
  108. package/dist/commands/recipes/impl/mutation-transaction.d.ts +7 -0
  109. package/dist/commands/recipes/impl/mutation-transaction.d.ts.map +1 -0
  110. package/dist/commands/recipes/impl/mutation-transaction.js +47 -0
  111. package/dist/commands/recipes/impl/overlay-project.d.ts +19 -3
  112. package/dist/commands/recipes/impl/overlay-project.d.ts.map +1 -1
  113. package/dist/commands/recipes/impl/overlay-project.js +76 -38
  114. package/dist/commands/recipes/impl/paths.d.ts +0 -3
  115. package/dist/commands/recipes/impl/paths.d.ts.map +1 -1
  116. package/dist/commands/recipes/impl/paths.js +0 -3
  117. package/dist/commands/recipes/impl/project-installed-recipes.d.ts +4 -1
  118. package/dist/commands/recipes/impl/project-installed-recipes.d.ts.map +1 -1
  119. package/dist/commands/recipes/impl/project-installed-recipes.js +6 -4
  120. package/dist/commands/recipes/impl/project-recipe-state.d.ts +1 -1
  121. package/dist/commands/recipes/impl/project-recipe-state.d.ts.map +1 -1
  122. package/dist/commands/recipes/impl/project-registry.d.ts +5 -1
  123. package/dist/commands/recipes/impl/project-registry.d.ts.map +1 -1
  124. package/dist/commands/recipes/impl/project-registry.js +34 -14
  125. package/dist/commands/recipes/impl/resolver.d.ts +1 -1
  126. package/dist/commands/recipes/impl/resolver.d.ts.map +1 -1
  127. package/dist/commands/recipes/impl/resolver.js +1 -1
  128. package/dist/commands/recipes/impl/types.d.ts +1 -1
  129. package/dist/commands/recipes/impl/types.d.ts.map +1 -1
  130. package/dist/commands/recipes/impl/version.d.ts +5 -0
  131. package/dist/commands/recipes/impl/version.d.ts.map +1 -0
  132. package/dist/commands/recipes/impl/version.js +9 -0
  133. package/dist/commands/recipes.d.ts +5 -4
  134. package/dist/commands/recipes.d.ts.map +1 -1
  135. package/dist/commands/recipes.js +3 -3
  136. package/dist/commands/release/apply.command.d.ts +1 -1
  137. package/dist/commands/release/apply.command.d.ts.map +1 -1
  138. package/dist/commands/release/apply.command.js +15 -379
  139. package/dist/commands/release/apply.mutation.d.ts +1 -0
  140. package/dist/commands/release/apply.mutation.d.ts.map +1 -1
  141. package/dist/commands/release/apply.mutation.js +24 -1
  142. package/dist/commands/release/apply.pipeline.d.ts +22 -0
  143. package/dist/commands/release/apply.pipeline.d.ts.map +1 -0
  144. package/dist/commands/release/apply.pipeline.js +371 -0
  145. package/dist/commands/release/apply.preflight.d.ts +2 -0
  146. package/dist/commands/release/apply.preflight.d.ts.map +1 -1
  147. package/dist/commands/release/apply.preflight.js +13 -4
  148. package/dist/commands/release/apply.types.d.ts +27 -0
  149. package/dist/commands/release/apply.types.d.ts.map +1 -1
  150. package/dist/commands/release.test-helpers.d.ts +4 -0
  151. package/dist/commands/release.test-helpers.d.ts.map +1 -1
  152. package/dist/commands/release.test-helpers.js +7 -0
  153. package/dist/commands/shared/reconcile-check.d.ts.map +1 -1
  154. package/dist/commands/shared/reconcile-check.js +2 -2
  155. package/dist/commands/shared/task-backend.d.ts +6 -1
  156. package/dist/commands/shared/task-backend.d.ts.map +1 -1
  157. package/dist/commands/shared/task-backend.js +34 -2
  158. package/dist/commands/shared/task-mutation.d.ts.map +1 -1
  159. package/dist/commands/shared/task-mutation.js +4 -4
  160. package/dist/commands/shared/task-store/intents.d.ts +34 -0
  161. package/dist/commands/shared/task-store/intents.d.ts.map +1 -0
  162. package/dist/commands/shared/task-store/intents.js +265 -0
  163. package/dist/commands/shared/task-store/readme.d.ts +28 -0
  164. package/dist/commands/shared/task-store/readme.d.ts.map +1 -0
  165. package/dist/commands/shared/task-store/readme.js +125 -0
  166. package/dist/commands/shared/task-store/store.d.ts +26 -0
  167. package/dist/commands/shared/task-store/store.d.ts.map +1 -0
  168. package/dist/commands/shared/task-store/store.js +105 -0
  169. package/dist/commands/shared/task-store/types.d.ts +94 -0
  170. package/dist/commands/shared/task-store/types.d.ts.map +1 -0
  171. package/dist/commands/shared/task-store/types.js +1 -0
  172. package/dist/commands/shared/task-store.d.ts +3 -109
  173. package/dist/commands/shared/task-store.d.ts.map +1 -1
  174. package/dist/commands/shared/task-store.js +2 -493
  175. package/dist/commands/task/block.d.ts.map +1 -1
  176. package/dist/commands/task/block.js +7 -2
  177. package/dist/commands/task/comment.d.ts.map +1 -1
  178. package/dist/commands/task/comment.js +7 -2
  179. package/dist/commands/task/finish-shared.d.ts.map +1 -1
  180. package/dist/commands/task/finish-shared.js +3 -3
  181. package/dist/commands/task/finish.d.ts.map +1 -1
  182. package/dist/commands/task/finish.js +102 -15
  183. package/dist/commands/task/hosted-close.command.d.ts.map +1 -1
  184. package/dist/commands/task/hosted-close.command.js +23 -2
  185. package/dist/commands/task/hosted-merge-sync.d.ts.map +1 -1
  186. package/dist/commands/task/hosted-merge-sync.js +9 -4
  187. package/dist/commands/task/list.run.d.ts.map +1 -1
  188. package/dist/commands/task/list.run.js +14 -4
  189. package/dist/commands/task/new.command.d.ts.map +1 -1
  190. package/dist/commands/task/new.command.js +16 -2
  191. package/dist/commands/task/new.js +2 -2
  192. package/dist/commands/task/show.d.ts.map +1 -1
  193. package/dist/commands/task/show.js +3 -3
  194. package/dist/commands/task/update.d.ts.map +1 -1
  195. package/dist/commands/task/update.js +11 -3
  196. package/dist/runner/adapters/codex.d.ts.map +1 -1
  197. package/dist/runner/adapters/codex.js +3 -33
  198. package/dist/runner/adapters/custom.d.ts.map +1 -1
  199. package/dist/runner/adapters/custom.js +3 -30
  200. package/dist/runner/adapters/runtime-shared.d.ts +14 -0
  201. package/dist/runner/adapters/runtime-shared.d.ts.map +1 -0
  202. package/dist/runner/adapters/runtime-shared.js +36 -0
  203. package/dist/runner/context/base-prompt-sources.d.ts +30 -0
  204. package/dist/runner/context/base-prompt-sources.d.ts.map +1 -0
  205. package/dist/runner/context/base-prompt-sources.js +144 -0
  206. package/dist/runner/context/base-prompts.d.ts +3 -22
  207. package/dist/runner/context/base-prompts.d.ts.map +1 -1
  208. package/dist/runner/context/base-prompts.js +6 -450
  209. package/dist/runner/context/overlay-prompt-blocks.d.ts +7 -0
  210. package/dist/runner/context/overlay-prompt-blocks.d.ts.map +1 -0
  211. package/dist/runner/context/overlay-prompt-blocks.js +72 -0
  212. package/dist/runner/context/prompt-block-shared.d.ts +54 -0
  213. package/dist/runner/context/prompt-block-shared.d.ts.map +1 -0
  214. package/dist/runner/context/prompt-block-shared.js +106 -0
  215. package/dist/runner/context/recipe-context.d.ts +2 -1
  216. package/dist/runner/context/recipe-context.d.ts.map +1 -1
  217. package/dist/runner/context/recipe-context.js +2 -1
  218. package/dist/runner/context/recipe-prompt-blocks.d.ts +6 -0
  219. package/dist/runner/context/recipe-prompt-blocks.d.ts.map +1 -0
  220. package/dist/runner/context/recipe-prompt-blocks.js +143 -0
  221. package/dist/runner/usecases/scenario-materialize-task.js +2 -2
  222. package/dist/runner/usecases/task-run-inspect.js +2 -2
  223. package/dist/runner/usecases/task-run-lifecycle-shared.js +2 -2
  224. package/dist/runner/usecases/task-run.d.ts.map +1 -1
  225. package/dist/runner/usecases/task-run.js +4 -2
  226. package/dist/runtime/capabilities/recipe.d.ts +1 -1
  227. package/dist/runtime/capabilities/recipe.d.ts.map +1 -1
  228. package/dist/runtime/execution-context.d.ts +63 -0
  229. package/dist/runtime/execution-context.d.ts.map +1 -0
  230. package/dist/{usecases/context/resolve-context.js → runtime/execution-context.js} +23 -26
  231. package/dist/runtime/incidents/advice-strategy.d.ts +15 -0
  232. package/dist/runtime/incidents/advice-strategy.d.ts.map +1 -0
  233. package/dist/runtime/incidents/advice-strategy.js +54 -0
  234. package/dist/runtime/incidents/plan-strategy.d.ts +9 -0
  235. package/dist/runtime/incidents/plan-strategy.d.ts.map +1 -0
  236. package/dist/runtime/incidents/plan-strategy.js +205 -0
  237. package/dist/runtime/incidents/registry-strategy.d.ts +6 -0
  238. package/dist/runtime/incidents/registry-strategy.d.ts.map +1 -0
  239. package/dist/runtime/incidents/registry-strategy.js +280 -0
  240. package/dist/runtime/incidents/resolve.d.ts +3 -25
  241. package/dist/runtime/incidents/resolve.d.ts.map +1 -1
  242. package/dist/runtime/incidents/resolve.js +3 -683
  243. package/dist/runtime/incidents/shared.d.ts +34 -0
  244. package/dist/runtime/incidents/shared.d.ts.map +1 -0
  245. package/dist/runtime/incidents/shared.js +171 -0
  246. package/dist/testing/cli-harness/recipe-archives.d.ts +28 -0
  247. package/dist/testing/cli-harness/recipe-archives.d.ts.map +1 -0
  248. package/dist/testing/cli-harness/recipe-archives.js +374 -0
  249. package/dist/testing/cli-harness/stdio.d.ts +26 -0
  250. package/dist/testing/cli-harness/stdio.d.ts.map +1 -0
  251. package/dist/testing/cli-harness/stdio.js +84 -0
  252. package/dist/testing/cli-harness.d.ts +25 -0
  253. package/dist/testing/cli-harness.d.ts.map +1 -0
  254. package/dist/testing/cli-harness.js +313 -0
  255. package/dist/testing/index.d.ts +2 -0
  256. package/dist/testing/index.d.ts.map +1 -0
  257. package/dist/testing/index.js +1 -0
  258. package/package.json +7 -4
  259. package/dist/commands/recipes/impl/manifest.d.ts +0 -4
  260. package/dist/commands/recipes/impl/manifest.d.ts.map +0 -1
  261. package/dist/commands/recipes/impl/manifest.js +0 -7
  262. package/dist/commands/recipes/impl/normalize.d.ts +0 -8
  263. package/dist/commands/recipes/impl/normalize.d.ts.map +0 -1
  264. package/dist/commands/recipes/impl/normalize.js +0 -54
  265. package/dist/commands/recipes/impl/scenario.d.ts +0 -16
  266. package/dist/commands/recipes/impl/scenario.d.ts.map +0 -1
  267. package/dist/commands/recipes/impl/scenario.js +0 -262
  268. package/dist/recipes/bundled-recipes.d.ts +0 -17
  269. package/dist/recipes/bundled-recipes.d.ts.map +0 -1
  270. package/dist/recipes/bundled-recipes.js +0 -15
  271. package/dist/usecases/context/resolve-context.d.ts +0 -68
  272. package/dist/usecases/context/resolve-context.d.ts.map +0 -1
  273. package/dist/usecases/task/task-list-usecase.d.ts +0 -9
  274. package/dist/usecases/task/task-list-usecase.d.ts.map +0 -1
  275. package/dist/usecases/task/task-list-usecase.js +0 -17
  276. package/dist/usecases/task/task-new-usecase.d.ts +0 -9
  277. package/dist/usecases/task/task-new-usecase.d.ts.map +0 -1
  278. package/dist/usecases/task/task-new-usecase.js +0 -17
@@ -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-17T11:14:38.802Z",
5
- "git_head": "768f43895b3f167604d18c7717a7d63492486bc7",
6
- "src_cli_mtime_ms": 1776424421052.0217,
4
+ "generated_at": "2026-04-19T11:54:20.586Z",
5
+ "git_head": "49f09c7c261fd37886c557ab7873d6b9a7690f1e",
6
+ "src_cli_mtime_ms": 1776599588460.387,
7
7
  "src_index_mtime_ms": null,
8
- "dist_cli_mtime_ms": 1776424478147.3413,
8
+ "dist_cli_mtime_ms": 1776599659877.1965,
9
9
  "dist_index_mtime_ms": null,
10
- "tsbuildinfo_mtime_ms": 1776424478210.342,
10
+ "tsbuildinfo_mtime_ms": 1776599659954.1973,
11
11
  "watched_runtime_paths": [
12
12
  "src",
13
13
  "bin/agentplane.js",
@@ -15,7 +15,7 @@
15
15
  "bin/runtime-context.js",
16
16
  "bin/stale-dist-policy.js"
17
17
  ],
18
- "watched_runtime_snapshot_hash": "1eee815309d64bcb0d595bd2d0d2d727971d585449b718bca17dc4130ac8d3b2",
18
+ "watched_runtime_snapshot_hash": "838eaca752464f6970245d6727d135abda707c3954d5b2e98618f4b9e152a9d8",
19
19
  "watched_runtime_files": [
20
20
  {
21
21
  "path": "bin/agentplane.js",
@@ -314,8 +314,8 @@
314
314
  },
315
315
  {
316
316
  "path": "src/cli/output.ts",
317
- "sha256": "d547f0273ec85e5b0e3c19b44d60faef709228890ac329608d64f3782effec34",
318
- "size_bytes": 6485
317
+ "sha256": "e8d452c975c0ef2e804fe0e21942f217ea67dade7036722659889a6b20718652",
318
+ "size_bytes": 7982
319
319
  },
320
320
  {
321
321
  "path": "src/cli/prompts.ts",
@@ -329,13 +329,13 @@
329
329
  },
330
330
  {
331
331
  "path": "src/cli/run-cli.test-helpers.ts",
332
- "sha256": "1571c51176ebdf787ccc8ff41829241c68b2c6a72337c71e396d54ab01b94f35",
333
- "size_bytes": 30344
332
+ "sha256": "b01835ff30531ed8135253a19f47d8779c3913345d4024c2d94a851ff7b7e84a",
333
+ "size_bytes": 37
334
334
  },
335
335
  {
336
336
  "path": "src/cli/run-cli.ts",
337
- "sha256": "f9708689f36a7ca3bf64eafdfd960842d574c634dd6baea001df9a15395036d6",
338
- "size_bytes": 11525
337
+ "sha256": "95f7ed37b529ad5d4ecdbe5fac47ccf8c59dd22634e2b74399d0d9c19ac1003b",
338
+ "size_bytes": 11518
339
339
  },
340
340
  {
341
341
  "path": "src/cli/run-cli/command-catalog.ts",
@@ -344,28 +344,28 @@
344
344
  },
345
345
  {
346
346
  "path": "src/cli/run-cli/command-catalog/core.ts",
347
- "sha256": "b5069849ba0a136e6db824ce6311aec42f9861bcac6e02deffc4674c60953cf7",
348
- "size_bytes": 8898
347
+ "sha256": "2a4cfe21fe8261dd49862ad7358bc512c2bf8eedf6f838f3abf625faf15b2cf3",
348
+ "size_bytes": 7025
349
349
  },
350
350
  {
351
351
  "path": "src/cli/run-cli/command-catalog/lifecycle.ts",
352
- "sha256": "bf7bd0e4b7f29b0c535a152ea4f783700d9d64322568a9bf826eed50665da022",
353
- "size_bytes": 4235
352
+ "sha256": "d43ac9add06180f0f5983769f13cc78e3a7e6bd2401723938b0673981ba6cb09",
353
+ "size_bytes": 3959
354
354
  },
355
355
  {
356
356
  "path": "src/cli/run-cli/command-catalog/project.ts",
357
- "sha256": "d3c4a5aab5e5ff9bd59071e35bb1e705208792168beff18afbc3dae814c2ab43",
358
- "size_bytes": 8517
357
+ "sha256": "f54c781f17aac4f99239ba9353a633348b6afecc81054a41224b8285cefa295b",
358
+ "size_bytes": 7721
359
359
  },
360
360
  {
361
361
  "path": "src/cli/run-cli/command-catalog/shared.ts",
362
- "sha256": "c28f307e433de2530adf901470802f3bd32e589d4e8f706adddc2097140a6b12",
363
- "size_bytes": 1505
362
+ "sha256": "365dc01b61d4e9cdc9eaa573f65ddb223d1377cd29b0ee4ad45e3321f3460314",
363
+ "size_bytes": 2224
364
364
  },
365
365
  {
366
366
  "path": "src/cli/run-cli/command-catalog/task.ts",
367
- "sha256": "7251cf9ca4f89eb37403068c6e639ef33fde7db91db486b5c7131bfce987fa90",
368
- "size_bytes": 12667
367
+ "sha256": "e9b0ea249fff738ac37cde3207db7016529cc96457c7932af537c8f5352710a0",
368
+ "size_bytes": 12257
369
369
  },
370
370
  {
371
371
  "path": "src/cli/run-cli/commands/codex.ts",
@@ -439,8 +439,8 @@
439
439
  },
440
440
  {
441
441
  "path": "src/cli/run-cli/commands/init/recipes.ts",
442
- "sha256": "afa2de0d7413f689a97a0f1c0d42154bf1a36b400ddde12321314c59ae2ef6f4",
443
- "size_bytes": 1732
442
+ "sha256": "d8a401dd8fff5c86b5a54bca8e98ffcbd74104eb1b8647436ec604e84beb68b3",
443
+ "size_bytes": 1754
444
444
  },
445
445
  {
446
446
  "path": "src/cli/run-cli/commands/init/ui.ts",
@@ -584,8 +584,8 @@
584
584
  },
585
585
  {
586
586
  "path": "src/commands/branch/cleanup-merged.ts",
587
- "sha256": "91a340c381defb56180c0224064abb9f17330a3162e09b396b7bbf64116866dd",
588
- "size_bytes": 10393
587
+ "sha256": "612617e040f1d94599ba351f2e11d74ce7f61d353fbbe3a635dbcb628e1fb083",
588
+ "size_bytes": 10305
589
589
  },
590
590
  {
591
591
  "path": "src/commands/branch/index.ts",
@@ -624,8 +624,8 @@
624
624
  },
625
625
  {
626
626
  "path": "src/commands/branch/work-start.command.ts",
627
- "sha256": "2b82241a87f5bae7482f26c1cddacc96437be9c500e634f094a64690b0bbdc73",
628
- "size_bytes": 3075
627
+ "sha256": "0200fa8dc9920565d081d2b716432142ce0aec4cbedc979ebcc07348733b94d4",
628
+ "size_bytes": 3227
629
629
  },
630
630
  {
631
631
  "path": "src/commands/branch/work-start.ts",
@@ -649,8 +649,8 @@
649
649
  },
650
650
  {
651
651
  "path": "src/commands/commit.spec.ts",
652
- "sha256": "87b615dbe1aeb83f24eb874fa5b64fb49bcdd861e63fe296972008b21a1b62e9",
653
- "size_bytes": 7242
652
+ "sha256": "85b782275c366aa26632f6b4952f65eedea8490ccf1ef73f9ecebc8930e2eda3",
653
+ "size_bytes": 7562
654
654
  },
655
655
  {
656
656
  "path": "src/commands/docs/cli.command.ts",
@@ -674,8 +674,8 @@
674
674
  },
675
675
  {
676
676
  "path": "src/commands/doctor/branch-pr.ts",
677
- "sha256": "3d3504826f979acd8ef0593eb56a4e6bafebbfa968beb291dcb237d0efbd2e3a",
678
- "size_bytes": 4032
677
+ "sha256": "921ecaa266ab1f05dc745992bba7023b2a4d405d4a34667efc07b2cd6ad2f458",
678
+ "size_bytes": 4105
679
679
  },
680
680
  {
681
681
  "path": "src/commands/doctor/fixes.ts",
@@ -739,18 +739,18 @@
739
739
  },
740
740
  {
741
741
  "path": "src/commands/guard/impl/commands.ts",
742
- "sha256": "3d4f0b5764fb3b8006551a21adf78026bbb31e279a367880a0a461dd8b9e9d6b",
743
- "size_bytes": 22329
742
+ "sha256": "c7ca58f958a448ac4f64501c10a84b487c1df68545d8a85e2d631daaa53d97dd",
743
+ "size_bytes": 22526
744
744
  },
745
745
  {
746
746
  "path": "src/commands/guard/impl/comment-commit.ts",
747
- "sha256": "08b371069e8ee0c07726727fedd806413416807a28cc3dd736b72d669f119ada",
748
- "size_bytes": 5290
747
+ "sha256": "b580567e1c16c06907699a0d2c3e92515a9e50143f2e8fcaca713b56a9ab97ae",
748
+ "size_bytes": 5373
749
749
  },
750
750
  {
751
751
  "path": "src/commands/guard/impl/env.ts",
752
- "sha256": "b0a63872dcc25cb5c422f0a748fec8e3486debefd9995e1b37c3380d5cfea66d",
753
- "size_bytes": 925
752
+ "sha256": "a7793f583b513c1e7fdf9228168e87fd4b5d09d8234e536106a841cbc788dad5",
753
+ "size_bytes": 2498
754
754
  },
755
755
  {
756
756
  "path": "src/commands/guard/impl/policy.ts",
@@ -904,8 +904,8 @@
904
904
  },
905
905
  {
906
906
  "path": "src/commands/pr/internal/auto-commit.ts",
907
- "sha256": "7829f5fb844007dade38edcf29cd47992c46c8e7b779aba34aee644454dfbad8",
908
- "size_bytes": 2869
907
+ "sha256": "c167e47703cf9d85a1dad09427065cdf622fcc26b12c97760cf03d4320ef0c03",
908
+ "size_bytes": 2954
909
909
  },
910
910
  {
911
911
  "path": "src/commands/pr/internal/freshness.ts",
@@ -932,10 +932,40 @@
932
932
  "sha256": "93a98a192f280dba109f85c4b17ed7efd67d03c40896738102729bff16902af2",
933
933
  "size_bytes": 9018
934
934
  },
935
+ {
936
+ "path": "src/commands/pr/internal/sync-branch.ts",
937
+ "sha256": "b6c1dd6cd7beebe0afc01ff57393b70a980bff932742d08160e6d1e4c4f72d33",
938
+ "size_bytes": 4478
939
+ },
940
+ {
941
+ "path": "src/commands/pr/internal/sync-github.ts",
942
+ "sha256": "7cbb2918a1829976cb92e59c1a3ebc1ceb21567bb2328c58ce2e6df663f7eaac",
943
+ "size_bytes": 7048
944
+ },
945
+ {
946
+ "path": "src/commands/pr/internal/sync-model.ts",
947
+ "sha256": "0300f1469ec0c4ce45781b11eceb51e7b6c3eeaf34eb009ab18b2a7bd5cdc4ab",
948
+ "size_bytes": 1009
949
+ },
950
+ {
951
+ "path": "src/commands/pr/internal/sync-open-step.ts",
952
+ "sha256": "cbcc14b50b5a465e70935bfb13c0a24cd4d62aceab905c47da63b911d14d9dc8",
953
+ "size_bytes": 5036
954
+ },
955
+ {
956
+ "path": "src/commands/pr/internal/sync-support.ts",
957
+ "sha256": "1f5fad11ad90de1983bebba6a224b244672de3d3595b44c76db854acc15a034c",
958
+ "size_bytes": 1039
959
+ },
960
+ {
961
+ "path": "src/commands/pr/internal/sync-update-step.ts",
962
+ "sha256": "787b1afc9c1704ac3e1b54e048a945f911e1a7ffd0c97e959486dab51574d0f2",
963
+ "size_bytes": 2826
964
+ },
935
965
  {
936
966
  "path": "src/commands/pr/internal/sync.ts",
937
- "sha256": "5064297a36de98de644cf444ec6b30c842eda36a5fb6c81e41416b947a27f787",
938
- "size_bytes": 25940
967
+ "sha256": "5098844e2fadaf0daa6aa6ee2e133d9f9e964d5e113e4c4272bce53aae12ecca",
968
+ "size_bytes": 9345
939
969
  },
940
970
  {
941
971
  "path": "src/commands/pr/note.ts",
@@ -944,13 +974,13 @@
944
974
  },
945
975
  {
946
976
  "path": "src/commands/pr/open.ts",
947
- "sha256": "7ababfc18c080a69dc37af52994855adce2628290f4dac5a35fb964c705789fc",
948
- "size_bytes": 3759
977
+ "sha256": "6a0ab4b15a4a4d5253ff9c05671d159cd04f2d45a62d9dabc5d5bd39e1ab920b",
978
+ "size_bytes": 4212
949
979
  },
950
980
  {
951
981
  "path": "src/commands/pr/pr.command.ts",
952
- "sha256": "fa4000a2214c5daa65c5b54c3dace2e7e70429715ff1911e277f004242592d60",
953
- "size_bytes": 11123
982
+ "sha256": "c3d3b01b318818ac8acf4d8407587674d96923ae8b4449a8734fb4456edf70c5",
983
+ "size_bytes": 11311
954
984
  },
955
985
  {
956
986
  "path": "src/commands/pr/update.ts",
@@ -969,8 +999,8 @@
969
999
  },
970
1000
  {
971
1001
  "path": "src/commands/recipes.ts",
972
- "sha256": "2a6755a69327ff49cb7c15d295bee1e338a1a9a52712668eb25dc12c502ae1e9",
973
- "size_bytes": 2608
1002
+ "sha256": "0002789e7072a11a1735cfc03dd3223240f737c2774c52d1a34cb96fdbffbd60",
1003
+ "size_bytes": 2638
974
1004
  },
975
1005
  {
976
1006
  "path": "src/commands/recipes/active.command.ts",
@@ -1019,8 +1049,8 @@
1019
1049
  },
1020
1050
  {
1021
1051
  "path": "src/commands/recipes/impl/apply.ts",
1022
- "sha256": "92e2191619444aef0487c59d0b7c6e3e9f02e65690ccca948bb89ad2a8d65e72",
1023
- "size_bytes": 6922
1052
+ "sha256": "d7b30b0f6f10159ee3bd0f9d6b70a40d46a6f4b4c198b8b2836f46424f873af3",
1053
+ "size_bytes": 6884
1024
1054
  },
1025
1055
  {
1026
1056
  "path": "src/commands/recipes/impl/archive.ts",
@@ -1034,13 +1064,13 @@
1034
1064
  },
1035
1065
  {
1036
1066
  "path": "src/commands/recipes/impl/commands/active.ts",
1037
- "sha256": "c6b4d3211479bff511fe85822ed2b606533ca4838c4ca0c1a34b7c7656e82106",
1038
- "size_bytes": 1807
1067
+ "sha256": "fa4bf992e0f499ef77f64bdcd0e219daf3598585b79a78258788586bc1595249",
1068
+ "size_bytes": 1703
1039
1069
  },
1040
1070
  {
1041
1071
  "path": "src/commands/recipes/impl/commands/add.ts",
1042
- "sha256": "a7fc47c86049c4459e1af744388d5bc2179c68112a5b0ff9a8b49a90d3852a56",
1043
- "size_bytes": 4902
1072
+ "sha256": "72c7c8d807e7536c275df37679e6c5d68bcc05b9f19eeb612ea005a1a0685dff",
1073
+ "size_bytes": 5259
1044
1074
  },
1045
1075
  {
1046
1076
  "path": "src/commands/recipes/impl/commands/cache-prune.ts",
@@ -1049,18 +1079,18 @@
1049
1079
  },
1050
1080
  {
1051
1081
  "path": "src/commands/recipes/impl/commands/detach.ts",
1052
- "sha256": "773054f3bc1e6f1b853ad653f9ac7bac53937de97804181c17ac02b5b740e0d1",
1053
- "size_bytes": 4041
1082
+ "sha256": "7e08a2d8fc11e44f760521a9db29646d948662c243bc5d057dfad3f3ff697910",
1083
+ "size_bytes": 4701
1054
1084
  },
1055
1085
  {
1056
1086
  "path": "src/commands/recipes/impl/commands/disable.ts",
1057
- "sha256": "ee65f192b762c8e65171f4e5fca58b71f0c3adc9d4fbdeed8d5e1cdb7bcb1c37",
1058
- "size_bytes": 932
1087
+ "sha256": "69ec8fac07673656b9d322d8980bd9dab4fbf55d34964f3c2d4ac054dfb844bd",
1088
+ "size_bytes": 1105
1059
1089
  },
1060
1090
  {
1061
1091
  "path": "src/commands/recipes/impl/commands/enable.ts",
1062
- "sha256": "8d56daf3844d9e6bd47592a2525d2f4a133a91ceb8298125af8f179228f31d19",
1063
- "size_bytes": 1606
1092
+ "sha256": "25e7fd0edba2018ca8a7331f70a44332d99aea8da8655f635a1e1e9c8e289bdf",
1093
+ "size_bytes": 1779
1064
1094
  },
1065
1095
  {
1066
1096
  "path": "src/commands/recipes/impl/commands/explain-active.ts",
@@ -1069,38 +1099,38 @@
1069
1099
  },
1070
1100
  {
1071
1101
  "path": "src/commands/recipes/impl/commands/explain.ts",
1072
- "sha256": "5b4b8073ad561175867ab2554897473dd2723884c219f1d053ed47c131747497",
1073
- "size_bytes": 8324
1102
+ "sha256": "3e0b4a462d2f362787b6ffea5c94eaa77eda12944fd0bea377c5031a660214b5",
1103
+ "size_bytes": 8429
1074
1104
  },
1075
1105
  {
1076
1106
  "path": "src/commands/recipes/impl/commands/info.ts",
1077
- "sha256": "883072a3bc4004e9d389634e45230183b09ccbd50f6bdc121fdcc925df0f94d1",
1078
- "size_bytes": 3476
1107
+ "sha256": "d4f8cd9a481070523406685040e83112e678f2a0dba7a30bd44ca1d9e25c1932",
1108
+ "size_bytes": 3290
1079
1109
  },
1080
1110
  {
1081
1111
  "path": "src/commands/recipes/impl/commands/install.ts",
1082
- "sha256": "1e58ecbe4221e21525a1ca1c15c91a2d77ee2781396fcf3962e2c2f3eb1a0dac",
1083
- "size_bytes": 10548
1112
+ "sha256": "c88a295ca31af6a6671300fabf958ff89338755eef3f11e29482687eb335a25a",
1113
+ "size_bytes": 9912
1084
1114
  },
1085
1115
  {
1086
1116
  "path": "src/commands/recipes/impl/commands/list-remote.ts",
1087
- "sha256": "e865327f6fed290e8b277ac59ba4b24000bd48d8c2bde4d29f751744ab4dc5a3",
1088
- "size_bytes": 2177
1117
+ "sha256": "06756e6ffbe60813c876a90d027e1b33ae648e25cb1d11c0290b4caa9aa42d0f",
1118
+ "size_bytes": 2174
1089
1119
  },
1090
1120
  {
1091
1121
  "path": "src/commands/recipes/impl/commands/list.ts",
1092
- "sha256": "67e3cfe976b29a4348366a364f407569eeae2c2e469445d6f68a384739127aaf",
1093
- "size_bytes": 1867
1122
+ "sha256": "4dcd8bceb8ab8c57b68ec279fc0cb581ac68b34c30075d1b284c9f47cf8a680a",
1123
+ "size_bytes": 1763
1094
1124
  },
1095
1125
  {
1096
1126
  "path": "src/commands/recipes/impl/commands/remove.ts",
1097
- "sha256": "bfacd5aaa98f8703cc1a92cb1ae90b5171889866803952e1dd8cc64b88e60f35",
1098
- "size_bytes": 2195
1127
+ "sha256": "b10772934b928dec3435ba442e53d30f9387a58a95498542f10c7c8c1abb4861",
1128
+ "size_bytes": 2342
1099
1129
  },
1100
1130
  {
1101
1131
  "path": "src/commands/recipes/impl/commands/update.ts",
1102
- "sha256": "17d92758672b84d58baddbb425c5efd90e0559178f1fd0fc3b169c5bda47f4cf",
1103
- "size_bytes": 4560
1132
+ "sha256": "d0860e34a3d3d0a50b0af731e5fb0a7fc788de93eb1a19eea4a64d38909e280b",
1133
+ "size_bytes": 5222
1104
1134
  },
1105
1135
  {
1106
1136
  "path": "src/commands/recipes/impl/constants.ts",
@@ -1114,48 +1144,43 @@
1114
1144
  },
1115
1145
  {
1116
1146
  "path": "src/commands/recipes/impl/index.ts",
1117
- "sha256": "f7e3e86fd2d6f1ab4d5a3473e5789a9aace107d74fdd8b0088e19044b755f1ba",
1118
- "size_bytes": 7081
1147
+ "sha256": "fdb62add3cb739d31bfc31bb378e41ca9538799155a32b6064a3da00e9fb0698",
1148
+ "size_bytes": 7094
1119
1149
  },
1120
1150
  {
1121
1151
  "path": "src/commands/recipes/impl/installed-recipes.ts",
1122
- "sha256": "ffc11dd7ff46b8428a21ebc5cab20ff7e1fd63e7c448e9297b9a661f459bd63b",
1123
- "size_bytes": 3020
1124
- },
1125
- {
1126
- "path": "src/commands/recipes/impl/manifest.ts",
1127
- "sha256": "d415d5903159f2d5e2190996a91cc3f9c1bd3a53f144a8779c4f058dee4aa89e",
1128
- "size_bytes": 425
1152
+ "sha256": "13c8c7b63d672d9588edc8c54c79fa8e35df4ac5caca174b2cd641563a2a3627",
1153
+ "size_bytes": 2974
1129
1154
  },
1130
1155
  {
1131
- "path": "src/commands/recipes/impl/normalize.ts",
1132
- "sha256": "9b4f0772ba16a66158d6ad27f1f7ed004c451d2d23cb13dedf2e5cf21a43dd84",
1133
- "size_bytes": 2104
1156
+ "path": "src/commands/recipes/impl/mutation-transaction.ts",
1157
+ "sha256": "f3ddedc3fbbd6fe52d862798deb25b281e13f6551e290ec94916d1974f5e4935",
1158
+ "size_bytes": 1580
1134
1159
  },
1135
1160
  {
1136
1161
  "path": "src/commands/recipes/impl/overlay-project.ts",
1137
- "sha256": "a8b75dbfe6a78e93799eea15d9d4a7443ef4e40661fe2e9ad421706f7c016e38",
1138
- "size_bytes": 11618
1162
+ "sha256": "0f096d3dd4dc67cd2916accdbfe0a57d9ea41f7bb42006ad177bfc891470f621",
1163
+ "size_bytes": 13972
1139
1164
  },
1140
1165
  {
1141
1166
  "path": "src/commands/recipes/impl/paths.ts",
1142
- "sha256": "7c0e611dc49faef93458e30e2e7e77b0ec4635e60e6ddd3bc0954f92415b2037",
1143
- "size_bytes": 2998
1167
+ "sha256": "4fc36987f586d974e01c6de147b298fad769878b40b1a8362a41ee7bf0c63a30",
1168
+ "size_bytes": 2837
1144
1169
  },
1145
1170
  {
1146
1171
  "path": "src/commands/recipes/impl/project-installed-recipes.ts",
1147
- "sha256": "0698691f9acd1375b5b3a979d2232744a637f9542fb004abd8609d1c0a7428b9",
1148
- "size_bytes": 2764
1172
+ "sha256": "3c08758e0e4e497a8787659444982a68b8e934c3b5490534f768ff08a45161a3",
1173
+ "size_bytes": 3016
1149
1174
  },
1150
1175
  {
1151
1176
  "path": "src/commands/recipes/impl/project-recipe-state.ts",
1152
- "sha256": "5c4a2b906438e8d152640af945948eb592cf0d73b162ca5f03ae2c8e6579a5d4",
1153
- "size_bytes": 4183
1177
+ "sha256": "78d59a9ae4eec4f1657aa923c2acce245666ac1fa0dfd826f178988778df0148",
1178
+ "size_bytes": 4195
1154
1179
  },
1155
1180
  {
1156
1181
  "path": "src/commands/recipes/impl/project-registry.ts",
1157
- "sha256": "1173987546090df6587266c32d692f1a51a3532a363e46d6414fc1d38eedf876",
1158
- "size_bytes": 4970
1182
+ "sha256": "6a97b1003a5ebd09a5829252af2e64a6acef0ba7b7a6cf923b95b4de96b999b4",
1183
+ "size_bytes": 5986
1159
1184
  },
1160
1185
  {
1161
1186
  "path": "src/commands/recipes/impl/project.ts",
@@ -1164,18 +1189,18 @@
1164
1189
  },
1165
1190
  {
1166
1191
  "path": "src/commands/recipes/impl/resolver.ts",
1167
- "sha256": "b068757162ecbd2d3eb4df415bce2d3b0834b7f2d057e9ec749ff579c3c3c3c2",
1168
- "size_bytes": 11853
1192
+ "sha256": "fe90a73b3a728ee3fa013cd2dbc68a36feb6455111f33c9927add60001a9986e",
1193
+ "size_bytes": 11835
1169
1194
  },
1170
1195
  {
1171
- "path": "src/commands/recipes/impl/scenario.ts",
1172
- "sha256": "b53157b0e233af22062f7bdc3d9e9e0b143515a9b32555e42b0a9e1c2e349af5",
1173
- "size_bytes": 12012
1196
+ "path": "src/commands/recipes/impl/types.ts",
1197
+ "sha256": "1df01153ed1758e5eea65b2956f1dcf1bf622c51941f42426656ab11942e5c0a",
1198
+ "size_bytes": 1390
1174
1199
  },
1175
1200
  {
1176
- "path": "src/commands/recipes/impl/types.ts",
1177
- "sha256": "d1ed407a7cd6eb165c496602bdf60fb2efbcf7b758d27710ad84415d6087dcd8",
1178
- "size_bytes": 1443
1201
+ "path": "src/commands/recipes/impl/version.ts",
1202
+ "sha256": "1e0c56206f6d96d1ebac539cedbb42f4978c97f3bc0d403daf7390bcc484226e",
1203
+ "size_bytes": 426
1179
1204
  },
1180
1205
  {
1181
1206
  "path": "src/commands/recipes/info.command.ts",
@@ -1219,23 +1244,28 @@
1219
1244
  },
1220
1245
  {
1221
1246
  "path": "src/commands/release.test-helpers.ts",
1222
- "sha256": "d4531cbcf31d1784c306622b50c42c993513af627c4d94e66894e2ae3ed088c4",
1223
- "size_bytes": 2726
1247
+ "sha256": "f53ff6de71cc8af390c872439bcb35f27314c9fd04ee63e5359e4d68994ebb21",
1248
+ "size_bytes": 3186
1224
1249
  },
1225
1250
  {
1226
1251
  "path": "src/commands/release/apply.command.ts",
1227
- "sha256": "fc41fafc65e35b110a8f22c05a137c0ad4df65e71a2d6badb2b8f0dedad3ecbc",
1228
- "size_bytes": 29873
1252
+ "sha256": "099b4bb3509d7ce0102f6739821695bc426d1fc3575727c78ecfae291a2da50b",
1253
+ "size_bytes": 13551
1229
1254
  },
1230
1255
  {
1231
1256
  "path": "src/commands/release/apply.mutation.ts",
1232
- "sha256": "a103b80ae5d4c8bc8e2ffadbb4af044a52addfdd11805d2a1e7493ce8212f17c",
1233
- "size_bytes": 4470
1257
+ "sha256": "cf26966db58afa0775ea410c9c7918cead0dff1c0811c3930dcfed119b689023",
1258
+ "size_bytes": 5695
1259
+ },
1260
+ {
1261
+ "path": "src/commands/release/apply.pipeline.ts",
1262
+ "sha256": "5362a3aa8d57e38ae025310ec1a622b573ff1eb8080054bc6444ed557ed4af15",
1263
+ "size_bytes": 18469
1234
1264
  },
1235
1265
  {
1236
1266
  "path": "src/commands/release/apply.preflight.ts",
1237
- "sha256": "4e3fe84b9b5a202031372e84a3ef78636de4149318eede91b35280f83f628616",
1238
- "size_bytes": 14833
1267
+ "sha256": "fea499ab4adddef9c077cbd461a943cd075d637ddaf795300a96a9216de51c9a",
1268
+ "size_bytes": 15333
1239
1269
  },
1240
1270
  {
1241
1271
  "path": "src/commands/release/apply.reporting.ts",
@@ -1244,8 +1274,8 @@
1244
1274
  },
1245
1275
  {
1246
1276
  "path": "src/commands/release/apply.types.ts",
1247
- "sha256": "fd3d3fcd0e21fc1110db54d6dc8a25c284537305ab147c3ac8b12b9120a22533",
1248
- "size_bytes": 1213
1277
+ "sha256": "173f3159791c6c1f75b935e8cbefa021aad0c2d5aacdd4bf448f96289977f7c7",
1278
+ "size_bytes": 1899
1249
1279
  },
1250
1280
  {
1251
1281
  "path": "src/commands/release/plan.command.ts",
@@ -1374,13 +1404,13 @@
1374
1404
  },
1375
1405
  {
1376
1406
  "path": "src/commands/shared/reconcile-check.ts",
1377
- "sha256": "772b84cc201d759bf66539e0cde5dab6a1de397d525efab0de66cd3180cf1f3a",
1378
- "size_bytes": 6380
1407
+ "sha256": "f03a117a7713319df51debc3b7131737158852fe7a98ca1f221543e787d4c3fc",
1408
+ "size_bytes": 6415
1379
1409
  },
1380
1410
  {
1381
1411
  "path": "src/commands/shared/task-backend.ts",
1382
- "sha256": "81ee7a5bc74476bb67dda073f0ea62b12e43edd2d7cc87d822ee187db9365833",
1383
- "size_bytes": 11019
1412
+ "sha256": "feb1390ee469b94758e3ddd0c96690fd63ce1d59596fecf14797d844eaaed43c",
1413
+ "size_bytes": 12435
1384
1414
  },
1385
1415
  {
1386
1416
  "path": "src/commands/shared/task-handoff.ts",
@@ -1394,13 +1424,33 @@
1394
1424
  },
1395
1425
  {
1396
1426
  "path": "src/commands/shared/task-mutation.ts",
1397
- "sha256": "a63e0cef10e98eaaaa90d899bd6c0ff2336bb98a236b07a9b4c5780da14e97e4",
1398
- "size_bytes": 4304
1427
+ "sha256": "079790fce4c7cafe08e4ebfd0f7fcb202edd55ace9470aee4f19bf8d026b632f",
1428
+ "size_bytes": 4311
1399
1429
  },
1400
1430
  {
1401
1431
  "path": "src/commands/shared/task-store.ts",
1402
- "sha256": "2e858422c83fdeae4fd9a209432c900c5bb15c8157032cd86d8437540d6de453",
1403
- "size_bytes": 22016
1432
+ "sha256": "299c2a609b0ffeb61365b5e3ef6ca3c957e4db7cc55965523a8e9fa88c1f8c7f",
1433
+ "size_bytes": 615
1434
+ },
1435
+ {
1436
+ "path": "src/commands/shared/task-store/intents.ts",
1437
+ "sha256": "504e895e0e5944f37dcd431337b7acc5bb975c579569845cd58372359a9bbbaa",
1438
+ "size_bytes": 10592
1439
+ },
1440
+ {
1441
+ "path": "src/commands/shared/task-store/readme.ts",
1442
+ "sha256": "d34041afedf9eb8f9f342ac66d7a438d21ffa96216e9f8beba5187063d739c1a",
1443
+ "size_bytes": 5520
1444
+ },
1445
+ {
1446
+ "path": "src/commands/shared/task-store/store.ts",
1447
+ "sha256": "60eed1d28f907753511d603e7253824188e256180789b917309ee4e0939d0cf5",
1448
+ "size_bytes": 4969
1449
+ },
1450
+ {
1451
+ "path": "src/commands/shared/task-store/types.ts",
1452
+ "sha256": "c04e64517495786e9b4d5b1e5b9f886623b4311456b99a9fe4c26b7ef9cffba8",
1453
+ "size_bytes": 3032
1404
1454
  },
1405
1455
  {
1406
1456
  "path": "src/commands/start.run.ts",
@@ -1434,8 +1484,8 @@
1434
1484
  },
1435
1485
  {
1436
1486
  "path": "src/commands/task/block.ts",
1437
- "sha256": "095ec477b18c779e0be9983b0cd5d370cea90345d5247e5c357683882da6977e",
1438
- "size_bytes": 3573
1487
+ "sha256": "a0101e03efb334cc14bddd3568d2369fe90b06b99b3e356ebfefa5f47e88fd32",
1488
+ "size_bytes": 3680
1439
1489
  },
1440
1490
  {
1441
1491
  "path": "src/commands/task/close-duplicate.command.ts",
@@ -1469,8 +1519,8 @@
1469
1519
  },
1470
1520
  {
1471
1521
  "path": "src/commands/task/comment.ts",
1472
- "sha256": "1f41c3a0fd73f68e9582e202796e086013f0b3281344095b5d47b0dd8a50cced",
1473
- "size_bytes": 2531
1522
+ "sha256": "6283ea4c0cfde409d6600faa869f80a51434c2f1418d439f3494c2815af61c09",
1523
+ "size_bytes": 2630
1474
1524
  },
1475
1525
  {
1476
1526
  "path": "src/commands/task/derive.command.ts",
@@ -1534,13 +1584,13 @@
1534
1584
  },
1535
1585
  {
1536
1586
  "path": "src/commands/task/finish-shared.ts",
1537
- "sha256": "c62a645e073973e8136005cf4c5072319af53982c3d5b8f60e6f7c69264754f9",
1538
- "size_bytes": 10190
1587
+ "sha256": "93cd950780b5e38c31d60b1a14283012ff43b48f66260f1431919ec2378ff93e",
1588
+ "size_bytes": 10197
1539
1589
  },
1540
1590
  {
1541
1591
  "path": "src/commands/task/finish.ts",
1542
- "sha256": "e982ffefa92fd5c761a73f398f9e7ee8f965e1ff027dc10fb50f4c4d9b7f173f",
1543
- "size_bytes": 18603
1592
+ "sha256": "b8494141b07b607a103303d792ee31946b8ea2fca001ac2af10d6f759bf99859",
1593
+ "size_bytes": 21951
1544
1594
  },
1545
1595
  {
1546
1596
  "path": "src/commands/task/handoff-record.command.ts",
@@ -1569,13 +1619,13 @@
1569
1619
  },
1570
1620
  {
1571
1621
  "path": "src/commands/task/hosted-close.command.ts",
1572
- "sha256": "df15bfa1206c504896f02049ab36e13d8920df488c9f952a7cac04210939a396",
1573
- "size_bytes": 15405
1622
+ "sha256": "5259928bd285c9ea049cb5ffd0cb41147409c48810ccb4742d28846b5bdd9773",
1623
+ "size_bytes": 16385
1574
1624
  },
1575
1625
  {
1576
1626
  "path": "src/commands/task/hosted-merge-sync.ts",
1577
- "sha256": "ee4ce3455cb36024bc5108862e989fda14ff5041afcabf3df33cd16a1c3ebc44",
1578
- "size_bytes": 22106
1627
+ "sha256": "148fce5710f57ee50e1feecffe2a167be75344a2657314ae4dc51107127fd69b",
1628
+ "size_bytes": 22451
1579
1629
  },
1580
1630
  {
1581
1631
  "path": "src/commands/task/index.ts",
@@ -1594,8 +1644,8 @@
1594
1644
  },
1595
1645
  {
1596
1646
  "path": "src/commands/task/list.run.ts",
1597
- "sha256": "65630764e50abd4357f6d9359c21a00fd5ef6af31ea9aad3938a007f69a83b97",
1598
- "size_bytes": 554
1647
+ "sha256": "9e636df36baf660fc13c00fc658b2a36ab2dde64e06e10d3841644770525dfec",
1648
+ "size_bytes": 896
1599
1649
  },
1600
1650
  {
1601
1651
  "path": "src/commands/task/list.spec.ts",
@@ -1629,8 +1679,8 @@
1629
1679
  },
1630
1680
  {
1631
1681
  "path": "src/commands/task/new.command.ts",
1632
- "sha256": "1d0f11a30a7bb152a08a95ac58371937ae08ca912aea9b2900b403da071a9f56",
1633
- "size_bytes": 609
1682
+ "sha256": "da0e3f94b1458ee50afcc168d260d0701e338093a6cc40a12e2735be98e6e143",
1683
+ "size_bytes": 970
1634
1684
  },
1635
1685
  {
1636
1686
  "path": "src/commands/task/new.spec.ts",
@@ -1639,8 +1689,8 @@
1639
1689
  },
1640
1690
  {
1641
1691
  "path": "src/commands/task/new.ts",
1642
- "sha256": "a4ab1d70b532b26a8e9fee54d9e25204c3a8681a48636325312214078d8811de",
1643
- "size_bytes": 9904
1692
+ "sha256": "f5626fb7c5268a8cf648b8f2f71e389e877446b1021ee6aeadd4af91c7fd244d",
1693
+ "size_bytes": 9901
1644
1694
  },
1645
1695
  {
1646
1696
  "path": "src/commands/task/next.run.ts",
@@ -1849,8 +1899,8 @@
1849
1899
  },
1850
1900
  {
1851
1901
  "path": "src/commands/task/shared/tags.ts",
1852
- "sha256": "d260115e79c197324a4c011cd675568db07bb8e624aeaa3b08d8809045f73785",
1853
- "size_bytes": 8619
1902
+ "sha256": "7e1246b5678fd4e01c540b040c9698a95358e130491d7d69847f22045a5fe018",
1903
+ "size_bytes": 8641
1854
1904
  },
1855
1905
  {
1856
1906
  "path": "src/commands/task/shared/transition-command.ts",
@@ -1879,8 +1929,8 @@
1879
1929
  },
1880
1930
  {
1881
1931
  "path": "src/commands/task/show.ts",
1882
- "sha256": "b59d9d30407df4e438f819756fe9ca662229b147fc7d126e57d21e2017900013",
1883
- "size_bytes": 2641
1932
+ "sha256": "1498fbb43da5a438ba71d486c1719c6e06b731a2f6e3fdcfb25111dba4c58136",
1933
+ "size_bytes": 2708
1884
1934
  },
1885
1935
  {
1886
1936
  "path": "src/commands/task/start-ready.command.ts",
@@ -1909,8 +1959,8 @@
1909
1959
  },
1910
1960
  {
1911
1961
  "path": "src/commands/task/update.ts",
1912
- "sha256": "9f10fd3452ee8b4bed80ac7aee6243a5782c4a04927da32b2be434c8f83a494a",
1913
- "size_bytes": 3877
1962
+ "sha256": "2acba2811b0f39907b9b93da04f1679077336dfd2697daab884e2b6460400c53",
1963
+ "size_bytes": 3970
1914
1964
  },
1915
1965
  {
1916
1966
  "path": "src/commands/task/verify-command-shared.ts",
@@ -2147,20 +2197,15 @@
2147
2197
  "sha256": "3869fbd4166d41ff20d2c934e154deacb1c8c4e68d55d96f10176c73e42cfe75",
2148
2198
  "size_bytes": 583
2149
2199
  },
2150
- {
2151
- "path": "src/recipes/bundled-recipes.ts",
2152
- "sha256": "d5028de2b19e56382cb4628536ad641d31f8a6eb3e44014133d395596e4bb4ed",
2153
- "size_bytes": 925
2154
- },
2155
2200
  {
2156
2201
  "path": "src/runner/adapters/codex.ts",
2157
- "sha256": "0bfadd9b02ec5a7f0cbadd67d1113b4f682f5fac313548d5d5da80897b1f5889",
2158
- "size_bytes": 18746
2202
+ "sha256": "ce77963b67e979f363dbbc76b7b31e335a6459a0399f1886d693a5eb2efc3a77",
2203
+ "size_bytes": 17235
2159
2204
  },
2160
2205
  {
2161
2206
  "path": "src/runner/adapters/custom.ts",
2162
- "sha256": "cc3a483956c7f185c3560a2ac28c2a0ed5e4c59ba29df05d371e45de1faa2139",
2163
- "size_bytes": 23652
2207
+ "sha256": "884ae27f5c4bf1a81ac606f51e52ef8092af5d752bcc69d370f6b7c754ef456e",
2208
+ "size_bytes": 22393
2164
2209
  },
2165
2210
  {
2166
2211
  "path": "src/runner/adapters/index.ts",
@@ -2172,6 +2217,11 @@
2172
2217
  "sha256": "789359a40f02af302af1136d08548dea78a4b350c3f992639275f642eedcdfaa",
2173
2218
  "size_bytes": 2395
2174
2219
  },
2220
+ {
2221
+ "path": "src/runner/adapters/runtime-shared.ts",
2222
+ "sha256": "8fc0e13b001513f1d726440cc70bbc2a91ed97548a50a021528021dc03449824",
2223
+ "size_bytes": 2195
2224
+ },
2175
2225
  {
2176
2226
  "path": "src/runner/adapters/shared.ts",
2177
2227
  "sha256": "8b0edf11b0cb5061dc746db5d9d9e0ed50779b5f2724a6fc85a68248eff4a396",
@@ -2197,15 +2247,35 @@
2197
2247
  "sha256": "c35259c3bcced29d05352914c2fddd2b80e8689f95596a2f95e22cace9d61dff",
2198
2248
  "size_bytes": 836
2199
2249
  },
2250
+ {
2251
+ "path": "src/runner/context/base-prompt-sources.ts",
2252
+ "sha256": "c28ed246e49941d73fe7cd34a9d2d4461847eb7d709cb50ef802215c4729c93c",
2253
+ "size_bytes": 6612
2254
+ },
2200
2255
  {
2201
2256
  "path": "src/runner/context/base-prompts.ts",
2202
- "sha256": "e0cfae8c4ad9a4db2365a6cf3bd0ee3cd776228154e270a9ec9ebfdefb34f011",
2203
- "size_bytes": 20299
2257
+ "sha256": "927e405a0b3d1f7c3f7e2554f9d44840bd5706df61115d0a4c7d0ef36fda49e4",
2258
+ "size_bytes": 2493
2259
+ },
2260
+ {
2261
+ "path": "src/runner/context/overlay-prompt-blocks.ts",
2262
+ "sha256": "14de9404ebe72a713b9d3bf3891bd64b0a3ac863661383ed463e3d9dd284b596",
2263
+ "size_bytes": 2813
2264
+ },
2265
+ {
2266
+ "path": "src/runner/context/prompt-block-shared.ts",
2267
+ "sha256": "8351a826aaa0df020db1c811e5061256ff02580c7ba245cb20e67f5a5a892f14",
2268
+ "size_bytes": 4129
2204
2269
  },
2205
2270
  {
2206
2271
  "path": "src/runner/context/recipe-context.ts",
2207
- "sha256": "3f02f7db152f01f68d86fab7af09f604f8fd20a95918bd811b80399c0395fe21",
2208
- "size_bytes": 4434
2272
+ "sha256": "cfdc1b6748dcf033abff35e2214ba87c5475426b97112c77e24bcc49936d532f",
2273
+ "size_bytes": 4476
2274
+ },
2275
+ {
2276
+ "path": "src/runner/context/recipe-prompt-blocks.ts",
2277
+ "sha256": "76c6d947cdf1f0067c4d69ddb88d32cbb719d3f645efe8e299c970b2d533d8a5",
2278
+ "size_bytes": 6587
2209
2279
  },
2210
2280
  {
2211
2281
  "path": "src/runner/context/task-context.ts",
@@ -2284,13 +2354,13 @@
2284
2354
  },
2285
2355
  {
2286
2356
  "path": "src/runner/usecases/scenario-materialize-task.ts",
2287
- "sha256": "ac7ce0ff6504cb9e38e7369fb4f864a37b5badff12ccf7a669f7ddec90408dbe",
2288
- "size_bytes": 9915
2357
+ "sha256": "0c729af9e15422f2763ac524fd6c8cb57c2a47a4c4f2269946272ba09cf8afec",
2358
+ "size_bytes": 9912
2289
2359
  },
2290
2360
  {
2291
2361
  "path": "src/runner/usecases/task-run-inspect.ts",
2292
- "sha256": "0aedd322d018bff13db5594a566b8757baab22862c2c9f93e85eea3c826603a5",
2293
- "size_bytes": 3525
2362
+ "sha256": "e9e5c6bc62ef5d2e546c2cc14b9b27dfc5e7d5a069f3c135e182470680357bec",
2363
+ "size_bytes": 3522
2294
2364
  },
2295
2365
  {
2296
2366
  "path": "src/runner/usecases/task-run-lifecycle-cancel.ts",
@@ -2304,8 +2374,8 @@
2304
2374
  },
2305
2375
  {
2306
2376
  "path": "src/runner/usecases/task-run-lifecycle-shared.ts",
2307
- "sha256": "20802868677e74c4eecaa5c73018571becbc1456522befe71240a37e22f1e10f",
2308
- "size_bytes": 8246
2377
+ "sha256": "f69e5532459897a5e421e85219ee9112f6bef162b5fd998f0380f053ad0e9b80",
2378
+ "size_bytes": 8243
2309
2379
  },
2310
2380
  {
2311
2381
  "path": "src/runner/usecases/task-run-lifecycle.ts",
@@ -2314,8 +2384,8 @@
2314
2384
  },
2315
2385
  {
2316
2386
  "path": "src/runner/usecases/task-run.ts",
2317
- "sha256": "34c09afb9afce433cac212b8fe49ec77509118009e8f6d96ae7f7d2178132fec",
2318
- "size_bytes": 14223
2387
+ "sha256": "8dec3a114f5f46cd0882f583e1aec3654b6cbdc74900e9e67d36da81aaedb86c",
2388
+ "size_bytes": 14349
2319
2389
  },
2320
2390
  {
2321
2391
  "path": "src/runtime/approvals/index.ts",
@@ -2359,8 +2429,8 @@
2359
2429
  },
2360
2430
  {
2361
2431
  "path": "src/runtime/capabilities/recipe.ts",
2362
- "sha256": "a784daa190534d26e050dfafd4f9671a79e56325f4a08822c43766b3585652e3",
2363
- "size_bytes": 6476
2432
+ "sha256": "88eec1e68d338ad2c3f2893a50af4d67119a1f0efa65eed9b294da06caa0a631",
2433
+ "size_bytes": 6462
2364
2434
  },
2365
2435
  {
2366
2436
  "path": "src/runtime/capabilities/registry.ts",
@@ -2377,6 +2447,11 @@
2377
2447
  "sha256": "2c4d516324972eaff7a28415abe05531b428bb66429dd8c4029f971bab5730be",
2378
2448
  "size_bytes": 1145
2379
2449
  },
2450
+ {
2451
+ "path": "src/runtime/execution-context.ts",
2452
+ "sha256": "4eccfdd8c7871cfc570bba74d058a69f666aa7a1a8072adcf15bf3e629e9a6f5",
2453
+ "size_bytes": 6165
2454
+ },
2380
2455
  {
2381
2456
  "path": "src/runtime/execution-profile/index.ts",
2382
2457
  "sha256": "aea4bce51a62b3c3b5150150e7305196f2aa19d38cd33b541258dd9b8c8d8029",
@@ -2427,15 +2502,35 @@
2427
2502
  "sha256": "8fe94a7f18a11401d140bc1f3748bfeb37e10e89b4054b57be8ac3b329a1dd20",
2428
2503
  "size_bytes": 2720
2429
2504
  },
2505
+ {
2506
+ "path": "src/runtime/incidents/advice-strategy.ts",
2507
+ "sha256": "621ca61b64c782e563be9505c311d9ee7310442585061de8cba5b18f47e8c50f",
2508
+ "size_bytes": 2892
2509
+ },
2430
2510
  {
2431
2511
  "path": "src/runtime/incidents/index.ts",
2432
2512
  "sha256": "10bae87d02c646f7d97d3a84b7fb3a5d001c78429e2d0974f8305d96a1c35273",
2433
2513
  "size_bytes": 634
2434
2514
  },
2515
+ {
2516
+ "path": "src/runtime/incidents/plan-strategy.ts",
2517
+ "sha256": "ee7ad959153bb4da89551f7081169b3efc1578c9b3bade3ae661273d63848d02",
2518
+ "size_bytes": 8529
2519
+ },
2520
+ {
2521
+ "path": "src/runtime/incidents/registry-strategy.ts",
2522
+ "sha256": "4252e8ed10be227de9346e80a6abe142343275a0ef12b39a60e1e705de5b191c",
2523
+ "size_bytes": 11364
2524
+ },
2435
2525
  {
2436
2526
  "path": "src/runtime/incidents/resolve.ts",
2437
- "sha256": "17c73e9436987c909fd5aebdec6153106dcb46a2157adc9d003a74f1080c44f1",
2438
- "size_bytes": 27397
2527
+ "sha256": "47c3b3bfdf494133b69222381633d6b9688aad9c1d4a6b5f3290d13befffd331",
2528
+ "size_bytes": 397
2529
+ },
2530
+ {
2531
+ "path": "src/runtime/incidents/shared.ts",
2532
+ "sha256": "e3b9768b8200895d69a8a6f5aa510760d844a9596f96de43cfe7a06a7ee6a2e8",
2533
+ "size_bytes": 6605
2439
2534
  },
2440
2535
  {
2441
2536
  "path": "src/runtime/incidents/types.ts",
@@ -2583,19 +2678,24 @@
2583
2678
  "size_bytes": 505
2584
2679
  },
2585
2680
  {
2586
- "path": "src/usecases/context/resolve-context.ts",
2587
- "sha256": "582452c4d78705fe8d0685e2b8912eb3de163e425d7792a09f3a1f59ed2f1dfc",
2588
- "size_bytes": 6586
2681
+ "path": "src/testing/cli-harness.ts",
2682
+ "sha256": "f38de984fa4e32dd14e7fcf5445ea93cacee952afbefdeeec50a33f4b575351b",
2683
+ "size_bytes": 11333
2684
+ },
2685
+ {
2686
+ "path": "src/testing/cli-harness/recipe-archives.ts",
2687
+ "sha256": "46e9f4b3e6e1fd83b7e1b067d25c81144eaa2f1869af837b30ef8e1f9cf725f3",
2688
+ "size_bytes": 15569
2589
2689
  },
2590
2690
  {
2591
- "path": "src/usecases/task/task-list-usecase.ts",
2592
- "sha256": "d5b7d28552de269f86b56496d5213ee3a819e04816bbf17ac21937a834da84fe",
2593
- "size_bytes": 810
2691
+ "path": "src/testing/cli-harness/stdio.ts",
2692
+ "sha256": "2ddc3583d1d256d083c5112a61afda9b0749676e922ec25c5e397ff085329ad8",
2693
+ "size_bytes": 3286
2594
2694
  },
2595
2695
  {
2596
- "path": "src/usecases/task/task-new-usecase.ts",
2597
- "sha256": "3b35c860f078522c81b09edb6d76dca61045e0149acf7454f45331d68a1ae986",
2598
- "size_bytes": 832
2696
+ "path": "src/testing/index.ts",
2697
+ "sha256": "a6ba25fb04d0a09181f2279ecea33d8119dde6bf5fb8a38ba574f42422eb4052",
2698
+ "size_bytes": 34
2599
2699
  },
2600
2700
  {
2601
2701
  "path": "src/workflow-runtime/build.ts",