agentplane 0.3.12 → 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 (180) hide show
  1. package/assets/RUNNER.md +1 -1
  2. package/assets/agents/ORCHESTRATOR.json +1 -1
  3. package/assets/codex-plugin/assets/header.png +0 -0
  4. package/assets/codex-plugin/assets/icon.svg +1 -0
  5. package/assets/codex-plugin/assets/logo.svg +1 -0
  6. package/assets/codex-plugin/skills/agentplane/SKILL.md +35 -0
  7. package/assets/policy/governance.md +4 -2
  8. package/assets/policy/incidents.md +3 -20
  9. package/assets/policy/workflow.release.md +5 -2
  10. package/dist/.build-manifest.json +203 -113
  11. package/dist/cli/exit-codes.d.ts.map +1 -1
  12. package/dist/cli/exit-codes.js +1 -0
  13. package/dist/cli/reason-codes.d.ts +1 -1
  14. package/dist/cli/reason-codes.d.ts.map +1 -1
  15. package/dist/cli/reason-codes.js +12 -0
  16. package/dist/cli/run-cli/command-catalog/core.d.ts +1 -1
  17. package/dist/cli/run-cli/command-catalog/core.d.ts.map +1 -1
  18. package/dist/cli/run-cli/command-catalog/core.js +16 -0
  19. package/dist/cli/run-cli/command-catalog/project.d.ts +1 -1
  20. package/dist/cli/run-cli/command-catalog/project.d.ts.map +1 -1
  21. package/dist/cli/run-cli/command-catalog/project.js +21 -3
  22. package/dist/cli/run-cli/command-catalog.d.ts +1 -1
  23. package/dist/cli/run-cli/command-catalog.d.ts.map +1 -1
  24. package/dist/cli/run-cli/commands/codex.d.ts +14 -0
  25. package/dist/cli/run-cli/commands/codex.d.ts.map +1 -0
  26. package/dist/cli/run-cli/commands/codex.js +100 -0
  27. package/dist/cli/run-cli/commands/core.d.ts +1 -0
  28. package/dist/cli/run-cli/commands/core.d.ts.map +1 -1
  29. package/dist/cli/run-cli/commands/core.js +1 -0
  30. package/dist/cli/run-cli/commands/init/recipes.d.ts +9 -1
  31. package/dist/cli/run-cli/commands/init/recipes.d.ts.map +1 -1
  32. package/dist/cli/run-cli/commands/init/recipes.js +32 -22
  33. package/dist/cli/run-cli/commands/init.d.ts.map +1 -1
  34. package/dist/cli/run-cli/commands/init.js +26 -21
  35. package/dist/cli/run-cli/error-guidance.js +20 -0
  36. package/dist/cli/run-cli.test-helpers.d.ts.map +1 -1
  37. package/dist/cli/run-cli.test-helpers.js +22 -19
  38. package/dist/commands/codex/plugin-install.d.ts +26 -0
  39. package/dist/commands/codex/plugin-install.d.ts.map +1 -0
  40. package/dist/commands/codex/plugin-install.js +209 -0
  41. package/dist/commands/pr/integrate/cmd.d.ts.map +1 -1
  42. package/dist/commands/pr/integrate/cmd.js +81 -5
  43. package/dist/commands/pr/integrate/internal/prepare.d.ts.map +1 -1
  44. package/dist/commands/pr/integrate/internal/prepare.js +38 -7
  45. package/dist/commands/pr/internal/auto-commit.d.ts.map +1 -1
  46. package/dist/commands/pr/internal/auto-commit.js +11 -6
  47. package/dist/commands/pr/internal/sync.d.ts.map +1 -1
  48. package/dist/commands/pr/internal/sync.js +5 -1
  49. package/dist/commands/pr/open.d.ts.map +1 -1
  50. package/dist/commands/pr/open.js +46 -8
  51. package/dist/commands/recipes/active.command.d.ts +7 -0
  52. package/dist/commands/recipes/active.command.d.ts.map +1 -0
  53. package/dist/commands/recipes/active.command.js +12 -0
  54. package/dist/commands/recipes/add.command.d.ts +8 -0
  55. package/dist/commands/recipes/add.command.d.ts.map +1 -0
  56. package/dist/commands/recipes/add.command.js +33 -0
  57. package/dist/commands/recipes/detach.command.d.ts +7 -0
  58. package/dist/commands/recipes/detach.command.d.ts.map +1 -0
  59. package/dist/commands/recipes/detach.command.js +19 -0
  60. package/dist/commands/recipes/disable.command.d.ts +7 -0
  61. package/dist/commands/recipes/disable.command.d.ts.map +1 -0
  62. package/dist/commands/recipes/disable.command.js +10 -0
  63. package/dist/commands/recipes/enable.command.d.ts +7 -0
  64. package/dist/commands/recipes/enable.command.d.ts.map +1 -0
  65. package/dist/commands/recipes/enable.command.js +10 -0
  66. package/dist/commands/recipes/explain-active.command.d.ts +5 -0
  67. package/dist/commands/recipes/explain-active.command.d.ts.map +1 -0
  68. package/dist/commands/recipes/explain-active.command.js +11 -0
  69. package/dist/commands/recipes/explain.command.d.ts.map +1 -1
  70. package/dist/commands/recipes/explain.command.js +4 -2
  71. package/dist/commands/recipes/impl/apply.d.ts.map +1 -1
  72. package/dist/commands/recipes/impl/apply.js +33 -14
  73. package/dist/commands/recipes/impl/commands/active.d.ts +6 -0
  74. package/dist/commands/recipes/impl/commands/active.d.ts.map +1 -0
  75. package/dist/commands/recipes/impl/commands/active.js +46 -0
  76. package/dist/commands/recipes/impl/commands/add.d.ts +7 -0
  77. package/dist/commands/recipes/impl/commands/add.d.ts.map +1 -0
  78. package/dist/commands/recipes/impl/commands/add.js +100 -0
  79. package/dist/commands/recipes/impl/commands/detach.d.ts +6 -0
  80. package/dist/commands/recipes/impl/commands/detach.d.ts.map +1 -0
  81. package/dist/commands/recipes/impl/commands/detach.js +85 -0
  82. package/dist/commands/recipes/impl/commands/disable.d.ts +6 -0
  83. package/dist/commands/recipes/impl/commands/disable.d.ts.map +1 -0
  84. package/dist/commands/recipes/impl/commands/disable.js +21 -0
  85. package/dist/commands/recipes/impl/commands/enable.d.ts +6 -0
  86. package/dist/commands/recipes/impl/commands/enable.d.ts.map +1 -0
  87. package/dist/commands/recipes/impl/commands/enable.js +39 -0
  88. package/dist/commands/recipes/impl/commands/explain-active.d.ts +5 -0
  89. package/dist/commands/recipes/impl/commands/explain-active.d.ts.map +1 -0
  90. package/dist/commands/recipes/impl/commands/explain-active.js +20 -0
  91. package/dist/commands/recipes/impl/commands/explain.d.ts.map +1 -1
  92. package/dist/commands/recipes/impl/commands/explain.js +40 -3
  93. package/dist/commands/recipes/impl/commands/info.d.ts.map +1 -1
  94. package/dist/commands/recipes/impl/commands/info.js +21 -8
  95. package/dist/commands/recipes/impl/commands/install.d.ts.map +1 -1
  96. package/dist/commands/recipes/impl/commands/install.js +32 -29
  97. package/dist/commands/recipes/impl/commands/list.d.ts.map +1 -1
  98. package/dist/commands/recipes/impl/commands/list.js +11 -11
  99. package/dist/commands/recipes/impl/commands/remove.d.ts.map +1 -1
  100. package/dist/commands/recipes/impl/commands/remove.js +5 -0
  101. package/dist/commands/recipes/impl/commands/update.d.ts +7 -0
  102. package/dist/commands/recipes/impl/commands/update.d.ts.map +1 -0
  103. package/dist/commands/recipes/impl/commands/update.js +93 -0
  104. package/dist/commands/recipes/impl/commands.d.ts +7 -0
  105. package/dist/commands/recipes/impl/commands.d.ts.map +1 -1
  106. package/dist/commands/recipes/impl/commands.js +7 -0
  107. package/dist/commands/recipes/impl/constants.d.ts +1 -14
  108. package/dist/commands/recipes/impl/constants.d.ts.map +1 -1
  109. package/dist/commands/recipes/impl/constants.js +1 -18
  110. package/dist/commands/recipes/impl/manifest.d.ts +2 -2
  111. package/dist/commands/recipes/impl/manifest.d.ts.map +1 -1
  112. package/dist/commands/recipes/impl/manifest.js +4 -226
  113. package/dist/commands/recipes/impl/overlay-project.d.ts +32 -0
  114. package/dist/commands/recipes/impl/overlay-project.d.ts.map +1 -0
  115. package/dist/commands/recipes/impl/overlay-project.js +282 -0
  116. package/dist/commands/recipes/impl/paths.d.ts +20 -2
  117. package/dist/commands/recipes/impl/paths.d.ts.map +1 -1
  118. package/dist/commands/recipes/impl/paths.js +23 -5
  119. package/dist/commands/recipes/impl/project-installed-recipes.d.ts +2 -4
  120. package/dist/commands/recipes/impl/project-installed-recipes.d.ts.map +1 -1
  121. package/dist/commands/recipes/impl/project-installed-recipes.js +30 -74
  122. package/dist/commands/recipes/impl/project-recipe-state.d.ts +18 -0
  123. package/dist/commands/recipes/impl/project-recipe-state.d.ts.map +1 -0
  124. package/dist/commands/recipes/impl/project-recipe-state.js +94 -0
  125. package/dist/commands/recipes/impl/project-registry.d.ts +20 -0
  126. package/dist/commands/recipes/impl/project-registry.d.ts.map +1 -0
  127. package/dist/commands/recipes/impl/project-registry.js +104 -0
  128. package/dist/commands/recipes/impl/resolver.d.ts.map +1 -1
  129. package/dist/commands/recipes/impl/resolver.js +5 -3
  130. package/dist/commands/recipes/impl/types.d.ts +1 -240
  131. package/dist/commands/recipes/impl/types.d.ts.map +1 -1
  132. package/dist/commands/recipes/info.command.js +2 -2
  133. package/dist/commands/recipes/install.spec.js +4 -4
  134. package/dist/commands/recipes/list.command.js +4 -4
  135. package/dist/commands/recipes/remove.command.js +2 -2
  136. package/dist/commands/recipes/update.command.d.ts +8 -0
  137. package/dist/commands/recipes/update.command.d.ts.map +1 -0
  138. package/dist/commands/recipes/update.command.js +35 -0
  139. package/dist/commands/recipes.d.ts +7 -4
  140. package/dist/commands/recipes.d.ts.map +1 -1
  141. package/dist/commands/recipes.js +6 -3
  142. package/dist/commands/recipes.test-helpers.d.ts +3 -3
  143. package/dist/commands/recipes.test-helpers.d.ts.map +1 -1
  144. package/dist/commands/recipes.test-helpers.js +105 -15
  145. package/dist/commands/scenario/execute.command.js +4 -4
  146. package/dist/commands/scenario/impl/commands.js +4 -4
  147. package/dist/commands/scenario/info.command.js +4 -4
  148. package/dist/commands/scenario/list.command.js +3 -3
  149. package/dist/commands/scenario/run.command.js +5 -5
  150. package/dist/commands/scenario/scenario.command.js +7 -7
  151. package/dist/commands/shared/task-handoff.d.ts +2 -1
  152. package/dist/commands/shared/task-handoff.d.ts.map +1 -1
  153. package/dist/commands/shared/task-handoff.js +15 -0
  154. package/dist/commands/task/handoff-show.command.d.ts.map +1 -1
  155. package/dist/commands/task/handoff-show.command.js +24 -0
  156. package/dist/runner/context/base-prompts.d.ts +2 -1
  157. package/dist/runner/context/base-prompts.d.ts.map +1 -1
  158. package/dist/runner/context/base-prompts.js +109 -13
  159. package/dist/runner/context/recipe-context.d.ts.map +1 -1
  160. package/dist/runner/context/recipe-context.js +40 -8
  161. package/dist/runner/types.d.ts +4 -0
  162. package/dist/runner/types.d.ts.map +1 -1
  163. package/dist/runner/usecases/task-run.d.ts.map +1 -1
  164. package/dist/runner/usecases/task-run.js +2 -1
  165. package/dist/runtime/behavior/resolve.d.ts +2 -1
  166. package/dist/runtime/behavior/resolve.d.ts.map +1 -1
  167. package/dist/runtime/behavior/resolve.js +25 -5
  168. package/dist/runtime/behavior/types.d.ts +1 -0
  169. package/dist/runtime/behavior/types.d.ts.map +1 -1
  170. package/dist/runtime/capabilities/recipe.d.ts +2 -1
  171. package/dist/runtime/capabilities/recipe.d.ts.map +1 -1
  172. package/dist/runtime/capabilities/recipe.js +88 -28
  173. package/dist/shared/errors.d.ts +1 -1
  174. package/dist/shared/errors.d.ts.map +1 -1
  175. package/dist/shared/runtime-source.d.ts.map +1 -1
  176. package/dist/shared/runtime-source.js +8 -3
  177. package/package.json +3 -2
  178. package/dist/cli/recipes-bundled.d.ts +0 -10
  179. package/dist/cli/recipes-bundled.d.ts.map +0 -1
  180. 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-15T18:59:22.213Z",
5
- "git_head": "6ddbb9afff915d350dbeb84d4524ada57166f459",
6
- "src_cli_mtime_ms": 1776279501492.4805,
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": 1776279561594.0981,
8
+ "dist_cli_mtime_ms": 1776424478147.3413,
9
9
  "dist_index_mtime_ms": null,
10
- "tsbuildinfo_mtime_ms": 1776279561657.0977,
10
+ "tsbuildinfo_mtime_ms": 1776424478210.342,
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": "8824502f3723ef637a70bbef865bcbad2dee18d15448369b846ebb52a3669d4d",
18
+ "watched_runtime_snapshot_hash": "1eee815309d64bcb0d595bd2d0d2d727971d585449b718bca17dc4130ac8d3b2",
19
19
  "watched_runtime_files": [
20
20
  {
21
21
  "path": "bin/agentplane.js",
@@ -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": "5ee912e471ff0501e6a0e61edff1417bb6699c074c5cc4dc577a41b83c704c75",
338
- "size_bytes": 30342
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": "a4bf9f338f05f5edb4902dae5d5c80824ae38df2542cd7ded6ee675e1379c28d",
353
- "size_bytes": 8204
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",
@@ -637,6 +637,11 @@
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",
@@ -844,8 +849,8 @@
844
849
  },
845
850
  {
846
851
  "path": "src/commands/pr/integrate/cmd.ts",
847
- "sha256": "c796b33c147318f7a5bc057b3d44b11dc1f8b839054acaad54f88779f311bb5d",
848
- "size_bytes": 8556
852
+ "sha256": "e2ed1ff93d370407ac59ac9f9672a93f57da530d90cf979160b77892a73e175e",
853
+ "size_bytes": 12321
849
854
  },
850
855
  {
851
856
  "path": "src/commands/pr/integrate/internal/bootstrap-guidance.ts",
@@ -884,8 +889,8 @@
884
889
  },
885
890
  {
886
891
  "path": "src/commands/pr/integrate/internal/prepare.ts",
887
- "sha256": "036fda60859831c006c71788b7ff351666162dbfe4b34aa92c0dd70be089c12a",
888
- "size_bytes": 9656
892
+ "sha256": "7a1c4e68f308baef6aae5d2a4f0eb9f29916e85f74eaee8c37c6fae05e463d77",
893
+ "size_bytes": 11484
889
894
  },
890
895
  {
891
896
  "path": "src/commands/pr/integrate/internal/worktree.ts",
@@ -899,8 +904,8 @@
899
904
  },
900
905
  {
901
906
  "path": "src/commands/pr/internal/auto-commit.ts",
902
- "sha256": "0f96a1cefe0295295bd779a54ae3c6ad86f97b1a5ddb784e9da700f2cab4a5e8",
903
- "size_bytes": 2638
907
+ "sha256": "7829f5fb844007dade38edcf29cd47992c46c8e7b779aba34aee644454dfbad8",
908
+ "size_bytes": 2869
904
909
  },
905
910
  {
906
911
  "path": "src/commands/pr/internal/freshness.ts",
@@ -929,8 +934,8 @@
929
934
  },
930
935
  {
931
936
  "path": "src/commands/pr/internal/sync.ts",
932
- "sha256": "c2c5df6c566d4d92f2118221e7557e3d13e61f2eef1cd078b9bc36b7cbc6c088",
933
- "size_bytes": 25809
937
+ "sha256": "5064297a36de98de644cf444ec6b30c842eda36a5fb6c81e41416b947a27f787",
938
+ "size_bytes": 25940
934
939
  },
935
940
  {
936
941
  "path": "src/commands/pr/note.ts",
@@ -939,8 +944,8 @@
939
944
  },
940
945
  {
941
946
  "path": "src/commands/pr/open.ts",
942
- "sha256": "90479ea163d35b9fa652f8a91cd8d9aafcd0c7e50b2bacddaa5c18ea6982e5ea",
943
- "size_bytes": 2359
947
+ "sha256": "7ababfc18c080a69dc37af52994855adce2628290f4dac5a35fb964c705789fc",
948
+ "size_bytes": 3759
944
949
  },
945
950
  {
946
951
  "path": "src/commands/pr/pr.command.ts",
@@ -959,13 +964,23 @@
959
964
  },
960
965
  {
961
966
  "path": "src/commands/recipes.test-helpers.ts",
962
- "sha256": "5a767c9adf95157eca4409a52e3128958ae45d5f5b1a92fc3e3ba8b5791f3474",
963
- "size_bytes": 15428
967
+ "sha256": "db30218e3c74e861a8b1f3bf7308b44ac79f5741325a8fcb60b1f784e3012606",
968
+ "size_bytes": 19459
964
969
  },
965
970
  {
966
971
  "path": "src/commands/recipes.ts",
967
- "sha256": "48f91afd4ba14f2a16b1cd7d1b68bb8859f0e5dd23c2da179336a2bb1062dd37",
968
- "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
969
984
  },
970
985
  {
971
986
  "path": "src/commands/recipes/cache-prune.command.ts",
@@ -977,15 +992,35 @@
977
992
  "sha256": "9c8e29a89078ae059cb021bf8412fba37aab68583494e8df10a6eed906d26af4",
978
993
  "size_bytes": 1034
979
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
+ },
980
1015
  {
981
1016
  "path": "src/commands/recipes/explain.command.ts",
982
- "sha256": "70de83f3efc694115e071e7bfc08de04913764de59a0d44aa09ba0f197562d1e",
983
- "size_bytes": 747
1017
+ "sha256": "f9e5be58b94b2eeafe76fadfefea98ac146b12e07f777c6e942ca3b8898cdd9a",
1018
+ "size_bytes": 768
984
1019
  },
985
1020
  {
986
1021
  "path": "src/commands/recipes/impl/apply.ts",
987
- "sha256": "6d3e0827d682399c6d6af6c97134c0058195ec828d143b897ccde675b561bb3c",
988
- "size_bytes": 6043
1022
+ "sha256": "92e2191619444aef0487c59d0b7c6e3e9f02e65690ccca948bb89ad2a8d65e72",
1023
+ "size_bytes": 6922
989
1024
  },
990
1025
  {
991
1026
  "path": "src/commands/recipes/impl/archive.ts",
@@ -994,28 +1029,58 @@
994
1029
  },
995
1030
  {
996
1031
  "path": "src/commands/recipes/impl/commands.ts",
997
- "sha256": "46300820a9380642393597aecb6415d9236713493853e08cd11aac654cf7a0e1",
998
- "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
999
1044
  },
1000
1045
  {
1001
1046
  "path": "src/commands/recipes/impl/commands/cache-prune.ts",
1002
1047
  "sha256": "a9866b5fcefe980c5719e6c6df90b7f60ecf5b289c6f6cb04fbdc5580c47c632",
1003
1048
  "size_bytes": 4748
1004
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
+ },
1005
1070
  {
1006
1071
  "path": "src/commands/recipes/impl/commands/explain.ts",
1007
- "sha256": "15da836ef21131746bde4777fc7238633aef674fb061dc8873b3f664e8534c6e",
1008
- "size_bytes": 6336
1072
+ "sha256": "5b4b8073ad561175867ab2554897473dd2723884c219f1d053ed47c131747497",
1073
+ "size_bytes": 8324
1009
1074
  },
1010
1075
  {
1011
1076
  "path": "src/commands/recipes/impl/commands/info.ts",
1012
- "sha256": "453e362b1f1c7d59d28bd4c0a8119cdb9482f75eb8252d213f717887c3792d09",
1013
- "size_bytes": 2801
1077
+ "sha256": "883072a3bc4004e9d389634e45230183b09ccbd50f6bdc121fdcc925df0f94d1",
1078
+ "size_bytes": 3476
1014
1079
  },
1015
1080
  {
1016
1081
  "path": "src/commands/recipes/impl/commands/install.ts",
1017
- "sha256": "675a1902bc6d3b73a27bd6d11e6a7ed9ab14b3ed54e65adceb88bd101601315e",
1018
- "size_bytes": 10686
1082
+ "sha256": "1e58ecbe4221e21525a1ca1c15c91a2d77ee2781396fcf3962e2c2f3eb1a0dac",
1083
+ "size_bytes": 10548
1019
1084
  },
1020
1085
  {
1021
1086
  "path": "src/commands/recipes/impl/commands/list-remote.ts",
@@ -1024,18 +1089,23 @@
1024
1089
  },
1025
1090
  {
1026
1091
  "path": "src/commands/recipes/impl/commands/list.ts",
1027
- "sha256": "0d4a6553df2a63dd05fd61ac97e588f26eb87da842f0933af58daefdf8b06f8c",
1028
- "size_bytes": 1910
1092
+ "sha256": "67e3cfe976b29a4348366a364f407569eeae2c2e469445d6f68a384739127aaf",
1093
+ "size_bytes": 1867
1029
1094
  },
1030
1095
  {
1031
1096
  "path": "src/commands/recipes/impl/commands/remove.ts",
1032
- "sha256": "88b5f3127bc41b433e412e1898f30f2d2ced6bf409e2d558058cee6c0988dc6b",
1033
- "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
1034
1104
  },
1035
1105
  {
1036
1106
  "path": "src/commands/recipes/impl/constants.ts",
1037
- "sha256": "687f3c35891b94f8a30d1dad2e0ddef9b96eff8eb042ed58ffe1b3aa8e23c3e3",
1038
- "size_bytes": 1035
1107
+ "sha256": "c979671da44723edf9d298898567133a3fdbb8d7be245cff35b751a4d5d701bd",
1108
+ "size_bytes": 481
1039
1109
  },
1040
1110
  {
1041
1111
  "path": "src/commands/recipes/impl/format.ts",
@@ -1054,23 +1124,38 @@
1054
1124
  },
1055
1125
  {
1056
1126
  "path": "src/commands/recipes/impl/manifest.ts",
1057
- "sha256": "a447b3254a936df8e0405edaf37c99ec219906a87baf0b50892b2ec039d3aaf0",
1058
- "size_bytes": 12530
1127
+ "sha256": "d415d5903159f2d5e2190996a91cc3f9c1bd3a53f144a8779c4f058dee4aa89e",
1128
+ "size_bytes": 425
1059
1129
  },
1060
1130
  {
1061
1131
  "path": "src/commands/recipes/impl/normalize.ts",
1062
1132
  "sha256": "9b4f0772ba16a66158d6ad27f1f7ed004c451d2d23cb13dedf2e5cf21a43dd84",
1063
1133
  "size_bytes": 2104
1064
1134
  },
1135
+ {
1136
+ "path": "src/commands/recipes/impl/overlay-project.ts",
1137
+ "sha256": "a8b75dbfe6a78e93799eea15d9d4a7443ef4e40661fe2e9ad421706f7c016e38",
1138
+ "size_bytes": 11618
1139
+ },
1065
1140
  {
1066
1141
  "path": "src/commands/recipes/impl/paths.ts",
1067
- "sha256": "40ea52e99eba1425397eec87563eabc28cdbeb025b813525d38002ce311536ba",
1068
- "size_bytes": 1946
1142
+ "sha256": "7c0e611dc49faef93458e30e2e7e77b0ec4635e60e6ddd3bc0954f92415b2037",
1143
+ "size_bytes": 2998
1069
1144
  },
1070
1145
  {
1071
1146
  "path": "src/commands/recipes/impl/project-installed-recipes.ts",
1072
- "sha256": "8694434010fe1bbcc2ad03da563d19b73ab9794a77b094657b463dfd78f5d055",
1073
- "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
1074
1159
  },
1075
1160
  {
1076
1161
  "path": "src/commands/recipes/impl/project.ts",
@@ -1079,8 +1164,8 @@
1079
1164
  },
1080
1165
  {
1081
1166
  "path": "src/commands/recipes/impl/resolver.ts",
1082
- "sha256": "3485e9e1eb8613ffcace6a5eb38682e287eab3d2d4c661883793cca5d1c90e9d",
1083
- "size_bytes": 11708
1167
+ "sha256": "b068757162ecbd2d3eb4df415bce2d3b0834b7f2d057e9ec749ff579c3c3c3c2",
1168
+ "size_bytes": 11853
1084
1169
  },
1085
1170
  {
1086
1171
  "path": "src/commands/recipes/impl/scenario.ts",
@@ -1089,13 +1174,13 @@
1089
1174
  },
1090
1175
  {
1091
1176
  "path": "src/commands/recipes/impl/types.ts",
1092
- "sha256": "8f0b0881697a86601afa91b45b794a8853b29ced16a43f0cab014d8183dd3fc8",
1093
- "size_bytes": 5913
1177
+ "sha256": "d1ed407a7cd6eb165c496602bdf60fb2efbcf7b758d27710ad84415d6087dcd8",
1178
+ "size_bytes": 1443
1094
1179
  },
1095
1180
  {
1096
1181
  "path": "src/commands/recipes/info.command.ts",
1097
- "sha256": "c9e0f0ca7b9c27a151db0779c8dbf77f29e6c323e5ff720cd78b0bf76b62a576",
1098
- "size_bytes": 703
1182
+ "sha256": "ddefcdd3c6cfc42a67accd5755828a343da51701679c505f1dfb4926b0595925",
1183
+ "size_bytes": 707
1099
1184
  },
1100
1185
  {
1101
1186
  "path": "src/commands/recipes/install.run.ts",
@@ -1104,8 +1189,8 @@
1104
1189
  },
1105
1190
  {
1106
1191
  "path": "src/commands/recipes/install.spec.ts",
1107
- "sha256": "b74e888e70dc3fa221d1032d27a30c829d56985732173aebf8023743af3a98eb",
1108
- "size_bytes": 4776
1192
+ "sha256": "a77582d2b892323fddf711aca98654fd737917a5192492af4e97efdc4097724e",
1193
+ "size_bytes": 4792
1109
1194
  },
1110
1195
  {
1111
1196
  "path": "src/commands/recipes/list-remote.command.ts",
@@ -1114,8 +1199,8 @@
1114
1199
  },
1115
1200
  {
1116
1201
  "path": "src/commands/recipes/list.command.ts",
1117
- "sha256": "8f61561d4c6872f1651d8559cdf1889d4d77a21eda12052a1c3ed6f628fa6749",
1118
- "size_bytes": 1520
1202
+ "sha256": "e70fa0175d1e4bec42044174fd19e85d50578efe7dd86235c95d0a0ce431fb6b",
1203
+ "size_bytes": 1508
1119
1204
  },
1120
1205
  {
1121
1206
  "path": "src/commands/recipes/recipes.command.ts",
@@ -1124,8 +1209,13 @@
1124
1209
  },
1125
1210
  {
1126
1211
  "path": "src/commands/recipes/remove.command.ts",
1127
- "sha256": "2d32b0c4bcd3dd13c843d27327c895595946e3a4f7ff52edac93505133ccef86",
1128
- "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
1129
1219
  },
1130
1220
  {
1131
1221
  "path": "src/commands/release.test-helpers.ts",
@@ -1179,13 +1269,13 @@
1179
1269
  },
1180
1270
  {
1181
1271
  "path": "src/commands/scenario/execute.command.ts",
1182
- "sha256": "f3769b3d1fb5f80ba6389c1e2869bbb2f649b388768d65c97c88e45c497c92a9",
1183
- "size_bytes": 4991
1272
+ "sha256": "f89df359b2f26c3e01a4c28845411951afca3a9b0c4c35ed4b22a8858dc21a74",
1273
+ "size_bytes": 5017
1184
1274
  },
1185
1275
  {
1186
1276
  "path": "src/commands/scenario/impl/commands.ts",
1187
- "sha256": "29de95ccd4409d90dbf5d21b457711f0e93ec1eabff531442b335d33480b50dd",
1188
- "size_bytes": 12975
1277
+ "sha256": "c8d8578508ea2824a27d7e87de2f2057d1fc6baafadac89d9c3f81530a261dac",
1278
+ "size_bytes": 13007
1189
1279
  },
1190
1280
  {
1191
1281
  "path": "src/commands/scenario/impl/report.ts",
@@ -1194,23 +1284,23 @@
1194
1284
  },
1195
1285
  {
1196
1286
  "path": "src/commands/scenario/info.command.ts",
1197
- "sha256": "69f594f4bd53ab473564049bb6c6e0cc56400eafebd31393456d29cc9c744744",
1198
- "size_bytes": 1292
1287
+ "sha256": "01812137897e6c68d6f93d3c71ded9a4eb7b8b21d5ce5b8f285ce9f9c0851fde",
1288
+ "size_bytes": 1318
1199
1289
  },
1200
1290
  {
1201
1291
  "path": "src/commands/scenario/list.command.ts",
1202
- "sha256": "31b7f02b4b529a884c57ab7fedf337fa837cd64fc37d397745c64854ac03bfd3",
1203
- "size_bytes": 653
1292
+ "sha256": "b57a464b2ba5f35cf2242309b1be033c5d087eb090717225a67740405d4b79da",
1293
+ "size_bytes": 671
1204
1294
  },
1205
1295
  {
1206
1296
  "path": "src/commands/scenario/run.command.ts",
1207
- "sha256": "40f8ade45b5726eaab72f545504b0eb5c04f69ecf5962a8f76f6cc55d2f51a94",
1208
- "size_bytes": 1310
1297
+ "sha256": "4cb5907f8c67b4923b670411f39615d48a8db307fea3ae3a6d0abb054a9b624e",
1298
+ "size_bytes": 1344
1209
1299
  },
1210
1300
  {
1211
1301
  "path": "src/commands/scenario/scenario.command.ts",
1212
- "sha256": "6dfb8dfe2b848697119596a4a2ebcb2cb63145af9067312b19bdf5917ec1849c",
1213
- "size_bytes": 1015
1302
+ "sha256": "373b87cda2a75fbdc4b067d04ecba5581d09717416a3f2776c9b09acd4a10d17",
1303
+ "size_bytes": 1068
1214
1304
  },
1215
1305
  {
1216
1306
  "path": "src/commands/shared/approval-requirements.ts",
@@ -1294,8 +1384,8 @@
1294
1384
  },
1295
1385
  {
1296
1386
  "path": "src/commands/shared/task-handoff.ts",
1297
- "sha256": "c0205fc677b406ae11198e7e6657941b7079960c36382de8273a2044145eb200",
1298
- "size_bytes": 6625
1387
+ "sha256": "71daeba5f527657c8b890c36b43a1d4d2db0693b32fa1862b930e4f6cbfafa5c",
1388
+ "size_bytes": 7343
1299
1389
  },
1300
1390
  {
1301
1391
  "path": "src/commands/shared/task-local-freshness.ts",
@@ -1459,8 +1549,8 @@
1459
1549
  },
1460
1550
  {
1461
1551
  "path": "src/commands/task/handoff-show.command.ts",
1462
- "sha256": "b7710b1fd583a95daa68555cedaacd698c7c8d92b779347ffef3f7a1a528144f",
1463
- "size_bytes": 3153
1552
+ "sha256": "3155747642271d70ac9acf28e57653a2a93b7667c1892ad2caaaa84611ab775e",
1553
+ "size_bytes": 4160
1464
1554
  },
1465
1555
  {
1466
1556
  "path": "src/commands/task/handoff.command.ts",
@@ -2109,13 +2199,13 @@
2109
2199
  },
2110
2200
  {
2111
2201
  "path": "src/runner/context/base-prompts.ts",
2112
- "sha256": "7e2a1b64b125ad7aa7eb46b7ee722bffd7625c9f55e95e683b9ad46308e24ed1",
2113
- "size_bytes": 16731
2202
+ "sha256": "e0cfae8c4ad9a4db2365a6cf3bd0ee3cd776228154e270a9ec9ebfdefb34f011",
2203
+ "size_bytes": 20299
2114
2204
  },
2115
2205
  {
2116
2206
  "path": "src/runner/context/recipe-context.ts",
2117
- "sha256": "073ab67a86c7d741f3dcf649f32b795deda4039701e6911e01ffe34900c44816",
2118
- "size_bytes": 3029
2207
+ "sha256": "3f02f7db152f01f68d86fab7af09f604f8fd20a95918bd811b80399c0395fe21",
2208
+ "size_bytes": 4434
2119
2209
  },
2120
2210
  {
2121
2211
  "path": "src/runner/context/task-context.ts",
@@ -2189,8 +2279,8 @@
2189
2279
  },
2190
2280
  {
2191
2281
  "path": "src/runner/types.ts",
2192
- "sha256": "a502df4e3ebc1e4c9401041e82280ac9345d53cab0b701e093167c221ec94f75",
2193
- "size_bytes": 10217
2282
+ "sha256": "34b80d25e9fc6e15b1a82dca58bcb913786bb4e12407e40cc629b65de94b35b7",
2283
+ "size_bytes": 10419
2194
2284
  },
2195
2285
  {
2196
2286
  "path": "src/runner/usecases/scenario-materialize-task.ts",
@@ -2224,8 +2314,8 @@
2224
2314
  },
2225
2315
  {
2226
2316
  "path": "src/runner/usecases/task-run.ts",
2227
- "sha256": "72788585bb6d106808fae203d7447aa17cee1631f3921c615b93aaa4c74424a9",
2228
- "size_bytes": 14186
2317
+ "sha256": "34c09afb9afce433cac212b8fe49ec77509118009e8f6d96ae7f7d2178132fec",
2318
+ "size_bytes": 14223
2229
2319
  },
2230
2320
  {
2231
2321
  "path": "src/runtime/approvals/index.ts",
@@ -2249,13 +2339,13 @@
2249
2339
  },
2250
2340
  {
2251
2341
  "path": "src/runtime/behavior/resolve.ts",
2252
- "sha256": "8fd639489a4d1c7aff3fe97680aceb9ae17d52c734e1d1fafc97e91bd975718c",
2253
- "size_bytes": 2819
2342
+ "sha256": "efb29fadf88c71d008993beff2bfa6098c7558a5ad05353a4315b632fbe8d18d",
2343
+ "size_bytes": 3686
2254
2344
  },
2255
2345
  {
2256
2346
  "path": "src/runtime/behavior/types.ts",
2257
- "sha256": "f732b3f2ce8dd3bb1a7727a78451aa25796ac393646085079bc9358fddb64416",
2258
- "size_bytes": 826
2347
+ "sha256": "253f723069cea44d2b0b0beafd7feb290faade5daa4f96e647bd87972a4aeb0d",
2348
+ "size_bytes": 891
2259
2349
  },
2260
2350
  {
2261
2351
  "path": "src/runtime/capabilities/backend.ts",
@@ -2269,8 +2359,8 @@
2269
2359
  },
2270
2360
  {
2271
2361
  "path": "src/runtime/capabilities/recipe.ts",
2272
- "sha256": "88bbf9ab7ba531de87014db981e8c791d7c30fd88bcb352cd7d328cab59aebc0",
2273
- "size_bytes": 4641
2362
+ "sha256": "a784daa190534d26e050dfafd4f9671a79e56325f4a08822c43766b3585652e3",
2363
+ "size_bytes": 6476
2274
2364
  },
2275
2365
  {
2276
2366
  "path": "src/runtime/capabilities/registry.ts",
@@ -2414,8 +2504,8 @@
2414
2504
  },
2415
2505
  {
2416
2506
  "path": "src/shared/errors.ts",
2417
- "sha256": "1d80d9467f2d16ce55529436dedf8b6d34e32b495d86fb9effb4d7e9cf6123a2",
2418
- "size_bytes": 1326
2507
+ "sha256": "9a0899d580559d819f080df0518686e374f252befef6087aebb59b07f6a8c933",
2508
+ "size_bytes": 1342
2419
2509
  },
2420
2510
  {
2421
2511
  "path": "src/shared/git-log.ts",
@@ -2454,8 +2544,8 @@
2454
2544
  },
2455
2545
  {
2456
2546
  "path": "src/shared/runtime-source.ts",
2457
- "sha256": "8fe0cd70148a835a17c44cc8cb6f8d4f2410c4f0edc7eb52f00b2b62142cfd41",
2458
- "size_bytes": 6950
2547
+ "sha256": "e14449747e472158a645ed6ddeaa2af28234e5d2d0784e2d93a3a554ed438759",
2548
+ "size_bytes": 7305
2459
2549
  },
2460
2550
  {
2461
2551
  "path": "src/shared/strings.ts",
@@ -1 +1 @@
1
- {"version":3,"file":"exit-codes.d.ts","sourceRoot":"","sources":["../../src/cli/exit-codes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAarD,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,SAAS,GAAG,MAAM,CAExD"}
1
+ {"version":3,"file":"exit-codes.d.ts","sourceRoot":"","sources":["../../src/cli/exit-codes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAcrD,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,SAAS,GAAG,MAAM,CAExD"}
@@ -6,6 +6,7 @@ const EXIT_CODE_BY_ERROR = {
6
6
  E_BACKEND: 6,
7
7
  E_NETWORK: 7,
8
8
  E_RUNTIME: 8,
9
+ E_HANDOFF: 9,
9
10
  E_INTERNAL: 1,
10
11
  };
11
12
  export function exitCodeForError(code) {
@@ -1,4 +1,4 @@
1
- export type ReasonCodeCategory = "usage" | "reconcile" | "git" | "network" | "backend" | "validation";
1
+ export type ReasonCodeCategory = "usage" | "reconcile" | "git" | "handoff" | "network" | "backend" | "validation";
2
2
  export type ReasonCodeMeta = {
3
3
  code: string;
4
4
  category: ReasonCodeCategory;
@@ -1 +1 @@
1
- {"version":3,"file":"reason-codes.d.ts","sourceRoot":"","sources":["../../src/cli/reason-codes.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,kBAAkB,GAC1B,OAAO,GACP,WAAW,GACX,KAAK,GACL,SAAS,GACT,SAAS,GACT,YAAY,CAAC;AAEjB,MAAM,MAAM,cAAc,GAAG;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,kBAAkB,CAAC;IAC7B,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AA2GF,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,MAAM,GAAG,SAAS,GAAG,cAAc,GAAG,SAAS,CAGtF"}
1
+ {"version":3,"file":"reason-codes.d.ts","sourceRoot":"","sources":["../../src/cli/reason-codes.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,kBAAkB,GAC1B,OAAO,GACP,WAAW,GACX,KAAK,GACL,SAAS,GACT,SAAS,GACT,SAAS,GACT,YAAY,CAAC;AAEjB,MAAM,MAAM,cAAc,GAAG;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,kBAAkB,CAAC;IAC7B,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAwHF,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,MAAM,GAAG,SAAS,GAAG,cAAc,GAAG,SAAS,CAGtF"}