agentplane 0.3.5 → 0.3.7

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 (256) hide show
  1. package/README.md +103 -75
  2. package/assets/AGENTS.md +4 -2
  3. package/bin/dist-guard.js +13 -3
  4. package/bin/runtime-watch.d.ts +1 -0
  5. package/bin/runtime-watch.js +22 -5
  6. package/bin/stale-dist-policy.js +9 -2
  7. package/dist/.build-manifest.json +251 -821
  8. package/dist/adapters/task-backend/task-backend-adapter.d.ts +2 -2
  9. package/dist/adapters/task-backend/task-backend-adapter.d.ts.map +1 -1
  10. package/dist/adapters/task-backend/task-backend-adapter.js +2 -2
  11. package/dist/backends/task-backend/local-backend.d.ts +7 -5
  12. package/dist/backends/task-backend/local-backend.d.ts.map +1 -1
  13. package/dist/backends/task-backend/local-backend.js +79 -7
  14. package/dist/backends/task-backend/redmine/env.d.ts +1 -1
  15. package/dist/backends/task-backend/redmine/env.d.ts.map +1 -1
  16. package/dist/backends/task-backend/redmine/env.js +3 -0
  17. package/dist/backends/task-backend/redmine/inspect.d.ts +11 -0
  18. package/dist/backends/task-backend/redmine/inspect.d.ts.map +1 -0
  19. package/dist/backends/task-backend/redmine/inspect.js +75 -0
  20. package/dist/backends/task-backend/redmine/mapping.d.ts.map +1 -1
  21. package/dist/backends/task-backend/redmine/mapping.js +21 -2
  22. package/dist/backends/task-backend/redmine/state.d.ts +17 -0
  23. package/dist/backends/task-backend/redmine/state.d.ts.map +1 -0
  24. package/dist/backends/task-backend/redmine/state.js +95 -0
  25. package/dist/backends/task-backend/redmine-backend.d.ts +10 -16
  26. package/dist/backends/task-backend/redmine-backend.d.ts.map +1 -1
  27. package/dist/backends/task-backend/redmine-backend.js +205 -15
  28. package/dist/backends/task-backend/shared/constants.d.ts +1 -1
  29. package/dist/backends/task-backend/shared/constants.js +1 -1
  30. package/dist/backends/task-backend/shared/record.d.ts.map +1 -1
  31. package/dist/backends/task-backend/shared/record.js +20 -1
  32. package/dist/backends/task-backend/shared/types.d.ts +42 -4
  33. package/dist/backends/task-backend/shared/types.d.ts.map +1 -1
  34. package/dist/backends/task-backend/shared.d.ts +1 -1
  35. package/dist/backends/task-backend/shared.d.ts.map +1 -1
  36. package/dist/backends/task-backend.d.ts +1 -1
  37. package/dist/backends/task-backend.d.ts.map +1 -1
  38. package/dist/backends/task-backend.test-helpers.d.ts +4 -0
  39. package/dist/backends/task-backend.test-helpers.d.ts.map +1 -0
  40. package/dist/backends/task-backend.test-helpers.js +33 -0
  41. package/dist/backends/task-index.d.ts.map +1 -1
  42. package/dist/backends/task-index.js +1 -0
  43. package/dist/cli/bootstrap-guide.d.ts.map +1 -1
  44. package/dist/cli/bootstrap-guide.js +1 -0
  45. package/dist/cli/command-guide.d.ts.map +1 -1
  46. package/dist/cli/command-guide.js +3 -2
  47. package/dist/cli/reason-codes.d.ts.map +1 -1
  48. package/dist/cli/reason-codes.js +30 -0
  49. package/dist/cli/run-cli/command-catalog/core.d.ts +3 -0
  50. package/dist/cli/run-cli/command-catalog/core.d.ts.map +1 -0
  51. package/dist/cli/run-cli/command-catalog/core.js +137 -0
  52. package/dist/cli/run-cli/command-catalog/lifecycle.d.ts +3 -0
  53. package/dist/cli/run-cli/command-catalog/lifecycle.d.ts.map +1 -0
  54. package/dist/cli/run-cli/command-catalog/lifecycle.js +52 -0
  55. package/dist/cli/run-cli/command-catalog/project.d.ts +3 -0
  56. package/dist/cli/run-cli/command-catalog/project.d.ts.map +1 -0
  57. package/dist/cli/run-cli/command-catalog/project.js +80 -0
  58. package/dist/cli/run-cli/command-catalog/shared.d.ts +19 -0
  59. package/dist/cli/run-cli/command-catalog/shared.d.ts.map +1 -0
  60. package/dist/cli/run-cli/command-catalog/shared.js +9 -0
  61. package/dist/cli/run-cli/command-catalog/task.d.ts +3 -0
  62. package/dist/cli/run-cli/command-catalog/task.d.ts.map +1 -0
  63. package/dist/cli/run-cli/command-catalog/task.js +85 -0
  64. package/dist/cli/run-cli/command-catalog.d.ts +3 -18
  65. package/dist/cli/run-cli/command-catalog.d.ts.map +1 -1
  66. package/dist/cli/run-cli/command-catalog.js +8 -337
  67. package/dist/cli/run-cli/commands/ide.d.ts.map +1 -1
  68. package/dist/cli/run-cli/commands/ide.js +64 -2
  69. package/dist/cli/run-cli/commands/init/ui.d.ts.map +1 -1
  70. package/dist/cli/run-cli/commands/init/ui.js +33 -13
  71. package/dist/cli/run-cli/commands/init/write-env.d.ts.map +1 -1
  72. package/dist/cli/run-cli/commands/init/write-env.js +12 -0
  73. package/dist/cli/run-cli.core.pr-flow.test-helpers.d.ts +3 -0
  74. package/dist/cli/run-cli.core.pr-flow.test-helpers.d.ts.map +1 -0
  75. package/dist/cli/run-cli.core.pr-flow.test-helpers.js +41 -0
  76. package/dist/cli/run-cli.core.tasks.test-helpers.d.ts +2 -0
  77. package/dist/cli/run-cli.core.tasks.test-helpers.d.ts.map +1 -0
  78. package/dist/cli/run-cli.core.tasks.test-helpers.js +6 -0
  79. package/dist/cli/run-cli.test-helpers.d.ts +3 -0
  80. package/dist/cli/run-cli.test-helpers.d.ts.map +1 -1
  81. package/dist/cli/run-cli.test-helpers.js +140 -6
  82. package/dist/commands/backend/sync.command.d.ts +5 -1
  83. package/dist/commands/backend/sync.command.d.ts.map +1 -1
  84. package/dist/commands/backend/sync.command.js +67 -3
  85. package/dist/commands/backend.d.ts +22 -0
  86. package/dist/commands/backend.d.ts.map +1 -1
  87. package/dist/commands/backend.js +110 -1
  88. package/dist/commands/commit.spec.d.ts.map +1 -1
  89. package/dist/commands/commit.spec.js +31 -7
  90. package/dist/commands/doctor/runtime.d.ts.map +1 -1
  91. package/dist/commands/doctor/runtime.js +3 -6
  92. package/dist/commands/doctor/workspace.d.ts +8 -0
  93. package/dist/commands/doctor/workspace.d.ts.map +1 -1
  94. package/dist/commands/doctor/workspace.js +127 -3
  95. package/dist/commands/guard/commit.command.d.ts.map +1 -1
  96. package/dist/commands/guard/commit.command.js +30 -6
  97. package/dist/commands/guard/impl/allow.d.ts +9 -0
  98. package/dist/commands/guard/impl/allow.d.ts.map +1 -1
  99. package/dist/commands/guard/impl/allow.js +26 -10
  100. package/dist/commands/guard/impl/commands.d.ts.map +1 -1
  101. package/dist/commands/guard/impl/commands.js +146 -18
  102. package/dist/commands/guard/impl/comment-commit.d.ts.map +1 -1
  103. package/dist/commands/guard/impl/comment-commit.js +2 -0
  104. package/dist/commands/hooks/index.d.ts.map +1 -1
  105. package/dist/commands/hooks/index.js +8 -35
  106. package/dist/commands/recipes/impl/apply.d.ts +4 -0
  107. package/dist/commands/recipes/impl/apply.d.ts.map +1 -1
  108. package/dist/commands/recipes/impl/apply.js +34 -0
  109. package/dist/commands/recipes/impl/commands/explain.d.ts.map +1 -1
  110. package/dist/commands/recipes/impl/commands/explain.js +70 -11
  111. package/dist/commands/recipes/impl/commands/info.d.ts.map +1 -1
  112. package/dist/commands/recipes/impl/commands/info.js +24 -12
  113. package/dist/commands/recipes/impl/commands/install.d.ts.map +1 -1
  114. package/dist/commands/recipes/impl/commands/install.js +32 -36
  115. package/dist/commands/recipes/impl/commands/list.d.ts.map +1 -1
  116. package/dist/commands/recipes/impl/commands/list.js +7 -4
  117. package/dist/commands/recipes/impl/commands/remove.d.ts.map +1 -1
  118. package/dist/commands/recipes/impl/commands/remove.js +9 -11
  119. package/dist/commands/recipes/impl/constants.d.ts +2 -0
  120. package/dist/commands/recipes/impl/constants.d.ts.map +1 -1
  121. package/dist/commands/recipes/impl/constants.js +2 -0
  122. package/dist/commands/recipes/impl/manifest.d.ts.map +1 -1
  123. package/dist/commands/recipes/impl/manifest.js +219 -23
  124. package/dist/commands/recipes/impl/normalize.d.ts +3 -0
  125. package/dist/commands/recipes/impl/normalize.d.ts.map +1 -1
  126. package/dist/commands/recipes/impl/normalize.js +28 -24
  127. package/dist/commands/recipes/impl/paths.d.ts +9 -0
  128. package/dist/commands/recipes/impl/paths.d.ts.map +1 -1
  129. package/dist/commands/recipes/impl/paths.js +10 -1
  130. package/dist/commands/recipes/impl/project-installed-recipes.d.ts +7 -0
  131. package/dist/commands/recipes/impl/project-installed-recipes.d.ts.map +1 -0
  132. package/dist/commands/recipes/impl/project-installed-recipes.js +102 -0
  133. package/dist/commands/recipes/impl/resolver.d.ts +20 -0
  134. package/dist/commands/recipes/impl/resolver.d.ts.map +1 -0
  135. package/dist/commands/recipes/impl/resolver.js +220 -0
  136. package/dist/commands/recipes/impl/scenario.d.ts.map +1 -1
  137. package/dist/commands/recipes/impl/scenario.js +40 -11
  138. package/dist/commands/recipes/impl/types.d.ts +145 -16
  139. package/dist/commands/recipes/impl/types.d.ts.map +1 -1
  140. package/dist/commands/recipes/install.spec.d.ts.map +1 -1
  141. package/dist/commands/recipes/install.spec.js +3 -2
  142. package/dist/commands/recipes.d.ts +6 -4
  143. package/dist/commands/recipes.d.ts.map +1 -1
  144. package/dist/commands/recipes.js +5 -3
  145. package/dist/commands/recipes.test-helpers.d.ts +185 -0
  146. package/dist/commands/recipes.test-helpers.d.ts.map +1 -0
  147. package/dist/commands/recipes.test-helpers.js +339 -0
  148. package/dist/commands/scenario/impl/commands.d.ts.map +1 -1
  149. package/dist/commands/scenario/impl/commands.js +192 -336
  150. package/dist/commands/scenario/info.command.d.ts.map +1 -1
  151. package/dist/commands/scenario/info.command.js +7 -2
  152. package/dist/commands/scenario/list.command.js +2 -2
  153. package/dist/commands/scenario/run.command.d.ts.map +1 -1
  154. package/dist/commands/scenario/run.command.js +7 -2
  155. package/dist/commands/shared/reconcile-check.d.ts.map +1 -1
  156. package/dist/commands/shared/reconcile-check.js +77 -2
  157. package/dist/commands/shared/task-backend.d.ts +1 -1
  158. package/dist/commands/shared/task-backend.d.ts.map +1 -1
  159. package/dist/commands/shared/task-backend.js +9 -0
  160. package/dist/commands/shared/task-store.d.ts +92 -2
  161. package/dist/commands/shared/task-store.d.ts.map +1 -1
  162. package/dist/commands/shared/task-store.js +405 -43
  163. package/dist/commands/task/block.d.ts.map +1 -1
  164. package/dist/commands/task/block.js +84 -46
  165. package/dist/commands/task/close-duplicate.d.ts.map +1 -1
  166. package/dist/commands/task/close-duplicate.js +12 -37
  167. package/dist/commands/task/close-noop.d.ts.map +1 -1
  168. package/dist/commands/task/close-noop.js +12 -30
  169. package/dist/commands/task/close-shared.d.ts +14 -0
  170. package/dist/commands/task/close-shared.d.ts.map +1 -0
  171. package/dist/commands/task/close-shared.js +73 -0
  172. package/dist/commands/task/comment.d.ts.map +1 -1
  173. package/dist/commands/task/comment.js +34 -21
  174. package/dist/commands/task/derive.command.d.ts +1 -0
  175. package/dist/commands/task/derive.command.d.ts.map +1 -1
  176. package/dist/commands/task/derive.command.js +15 -2
  177. package/dist/commands/task/derive.d.ts +1 -0
  178. package/dist/commands/task/derive.d.ts.map +1 -1
  179. package/dist/commands/task/derive.js +27 -4
  180. package/dist/commands/task/doc-set.command.d.ts +2 -1
  181. package/dist/commands/task/doc-set.command.d.ts.map +1 -1
  182. package/dist/commands/task/doc-set.command.js +36 -4
  183. package/dist/commands/task/doc-template.d.ts.map +1 -1
  184. package/dist/commands/task/doc-template.js +2 -7
  185. package/dist/commands/task/doc.command.js +1 -1
  186. package/dist/commands/task/doc.d.ts +2 -1
  187. package/dist/commands/task/doc.d.ts.map +1 -1
  188. package/dist/commands/task/doc.js +139 -76
  189. package/dist/commands/task/finish.d.ts.map +1 -1
  190. package/dist/commands/task/finish.js +142 -80
  191. package/dist/commands/task/migrate-doc.d.ts +15 -0
  192. package/dist/commands/task/migrate-doc.d.ts.map +1 -1
  193. package/dist/commands/task/migrate-doc.js +128 -43
  194. package/dist/commands/task/new.d.ts.map +1 -1
  195. package/dist/commands/task/new.js +3 -1
  196. package/dist/commands/task/plan-set.command.js +1 -1
  197. package/dist/commands/task/plan.command.d.ts +8 -0
  198. package/dist/commands/task/plan.command.d.ts.map +1 -0
  199. package/dist/commands/task/plan.command.js +37 -0
  200. package/dist/commands/task/plan.d.ts.map +1 -1
  201. package/dist/commands/task/plan.js +198 -101
  202. package/dist/commands/task/set-status.command.d.ts.map +1 -1
  203. package/dist/commands/task/set-status.command.js +1 -1
  204. package/dist/commands/task/set-status.d.ts.map +1 -1
  205. package/dist/commands/task/set-status.js +115 -35
  206. package/dist/commands/task/shared/dependencies.d.ts +1 -0
  207. package/dist/commands/task/shared/dependencies.d.ts.map +1 -1
  208. package/dist/commands/task/shared/dependencies.js +10 -0
  209. package/dist/commands/task/shared/docs.d.ts +1 -0
  210. package/dist/commands/task/shared/docs.d.ts.map +1 -1
  211. package/dist/commands/task/shared/docs.js +8 -1
  212. package/dist/commands/task/shared/transitions.d.ts +17 -2
  213. package/dist/commands/task/shared/transitions.d.ts.map +1 -1
  214. package/dist/commands/task/shared/transitions.js +20 -13
  215. package/dist/commands/task/shared.d.ts +3 -3
  216. package/dist/commands/task/shared.d.ts.map +1 -1
  217. package/dist/commands/task/shared.js +3 -3
  218. package/dist/commands/task/start.d.ts.map +1 -1
  219. package/dist/commands/task/start.js +101 -71
  220. package/dist/commands/task/task.command.d.ts +8 -0
  221. package/dist/commands/task/task.command.d.ts.map +1 -0
  222. package/dist/commands/task/task.command.js +71 -0
  223. package/dist/commands/task/verify-command-shared.d.ts +16 -0
  224. package/dist/commands/task/verify-command-shared.d.ts.map +1 -0
  225. package/dist/commands/task/verify-command-shared.js +53 -0
  226. package/dist/commands/task/verify-ok.command.d.ts +2 -6
  227. package/dist/commands/task/verify-ok.command.d.ts.map +1 -1
  228. package/dist/commands/task/verify-ok.command.js +8 -50
  229. package/dist/commands/task/verify-record.d.ts.map +1 -1
  230. package/dist/commands/task/verify-record.js +124 -145
  231. package/dist/commands/task/verify-rework.command.d.ts +2 -6
  232. package/dist/commands/task/verify-rework.command.d.ts.map +1 -1
  233. package/dist/commands/task/verify-rework.command.js +8 -50
  234. package/dist/commands/upgrade/apply.d.ts +2 -0
  235. package/dist/commands/upgrade/apply.d.ts.map +1 -1
  236. package/dist/commands/upgrade/apply.js +33 -1
  237. package/dist/commands/upgrade.command.d.ts.map +1 -1
  238. package/dist/commands/upgrade.command.js +25 -0
  239. package/dist/commands/upgrade.d.ts +1 -0
  240. package/dist/commands/upgrade.d.ts.map +1 -1
  241. package/dist/commands/upgrade.js +34 -0
  242. package/dist/commands/verify.spec.d.ts.map +1 -1
  243. package/dist/commands/verify.spec.js +3 -12
  244. package/dist/policy/rules/allowlist.d.ts.map +1 -1
  245. package/dist/policy/rules/allowlist.js +16 -4
  246. package/dist/policy/rules/protected-paths.d.ts.map +1 -1
  247. package/dist/policy/rules/protected-paths.js +6 -1
  248. package/dist/ports/task-backend-port.d.ts +2 -2
  249. package/dist/ports/task-backend-port.d.ts.map +1 -1
  250. package/dist/shared/agent-emoji.d.ts.map +1 -1
  251. package/dist/shared/protected-paths.d.ts +17 -0
  252. package/dist/shared/protected-paths.d.ts.map +1 -1
  253. package/dist/shared/protected-paths.js +59 -10
  254. package/dist/shared/repo-cli-version.d.ts.map +1 -1
  255. package/dist/shared/repo-cli-version.js +9 -3
  256. package/package.json +2 -2
@@ -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-03-09T11:27:01.401Z",
5
- "git_head": "048eac0e4c4643f9706ee28a314a47900c8aeda2",
6
- "src_cli_mtime_ms": 1773055566738.3289,
4
+ "generated_at": "2026-03-14T18:04:43.921Z",
5
+ "git_head": "bd7e3f494c61ad5c3cd4810aeca30b8678670d83",
6
+ "src_cli_mtime_ms": 1773511304180.027,
7
7
  "src_index_mtime_ms": null,
8
- "dist_cli_mtime_ms": 1773055620787.9597,
8
+ "dist_cli_mtime_ms": 1773511483344.7961,
9
9
  "dist_index_mtime_ms": null,
10
- "tsbuildinfo_mtime_ms": 1773055620840.9602,
10
+ "tsbuildinfo_mtime_ms": 1773511483402.7961,
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": "90fec1d16ff7e43a183c043b40ce90d2da4e35df365aed7509c0ef6a4ee8f40e",
18
+ "watched_runtime_snapshot_hash": "6df19c61594d905ece9f1e8d9572cc0b5d62e98f147aed8a5a9ed3c7a1c317fe",
19
19
  "watched_runtime_files": [
20
20
  {
21
21
  "path": "bin/agentplane.js",
@@ -24,8 +24,8 @@
24
24
  },
25
25
  {
26
26
  "path": "bin/dist-guard.js",
27
- "sha256": "cbcc21fb61927aaaa91cb8b227cc756d69097a5863f828f37c329f9012d64b12",
28
- "size_bytes": 5421
27
+ "sha256": "4440f5e2585cc928c55c8f6343bdd7bd3d85729027e1998067a86f25d27f4099",
28
+ "size_bytes": 5622
29
29
  },
30
30
  {
31
31
  "path": "bin/runtime-context.js",
@@ -34,8 +34,8 @@
34
34
  },
35
35
  {
36
36
  "path": "bin/stale-dist-policy.js",
37
- "sha256": "60216c129e52c0332917f2aac7c315955eb5db84bb47da626ff50f20313018db",
38
- "size_bytes": 1147
37
+ "sha256": "37615d29e1eace7d1c42638328dbfa2616029b95b1a52b366d62fb4a3ea810f9",
38
+ "size_bytes": 1356
39
39
  },
40
40
  {
41
41
  "path": "src/adapters/clock/system-clock-adapter.ts",
@@ -59,13 +59,8 @@
59
59
  },
60
60
  {
61
61
  "path": "src/adapters/task-backend/task-backend-adapter.ts",
62
- "sha256": "b071098191f407302cbb37793fd45934d17891b2e2ac628e69903535c5204dc6",
63
- "size_bytes": 1034
64
- },
65
- {
66
- "path": "src/agents/agents-template.test.ts",
67
- "sha256": "f3d7818ce87017a077d8460204be4008f3233620291034f3efd661f32a7e26e6",
68
- "size_bytes": 5924
62
+ "sha256": "e8c5d6354dd9e2c8f0fc195963b081260d99dc162fe09f4f3e3815a8d04dcdf0",
63
+ "size_bytes": 1083
69
64
  },
70
65
  {
71
66
  "path": "src/agents/agents-template.ts",
@@ -73,24 +68,14 @@
73
68
  "size_bytes": 4722
74
69
  },
75
70
  {
76
- "path": "src/agents/policy-routing-check.test.ts",
77
- "sha256": "a011dbb1d3ad5cbdebe11b53630f522b418a9ebe3b9d9209559db5f3719f7f79",
78
- "size_bytes": 477
79
- },
80
- {
81
- "path": "src/architecture/layering.imports.test.ts",
82
- "sha256": "7c8c5e45d3f200ef8c5535f2116ffca2a225d1000141cb55e6cee0c53ff2ba5a",
83
- "size_bytes": 3208
84
- },
85
- {
86
- "path": "src/backends/task-backend.test.ts",
87
- "sha256": "7995d304c2b494e69a80cb5f1d2ba5c26686d2aeebdca163187ca04b1f426059",
88
- "size_bytes": 77948
71
+ "path": "src/backends/task-backend.test-helpers.ts",
72
+ "sha256": "21bbfb73038206a1d73f2e6ed7814c1251642d937ae5175a64181a9aafe3f522",
73
+ "size_bytes": 1054
89
74
  },
90
75
  {
91
76
  "path": "src/backends/task-backend.ts",
92
- "sha256": "bf16b2ba5f73df3de0f5559ef26d4997926aed81b97b63d59bb5decabcd8e09c",
93
- "size_bytes": 641
77
+ "sha256": "b73802ff56a8642da37dfa42775a5fbb6569234d8a1043271f1408cbc84d9a41",
78
+ "size_bytes": 768
94
79
  },
95
80
  {
96
81
  "path": "src/backends/task-backend/load.ts",
@@ -99,13 +84,13 @@
99
84
  },
100
85
  {
101
86
  "path": "src/backends/task-backend/local-backend.ts",
102
- "sha256": "4d2adf9517bd8e791a2f0993b90f4755f9d221d53eae6a85dc67477f8832d4bc",
103
- "size_bytes": 15922
87
+ "sha256": "1465e48b7bc5d79597da804c59852da60a23a84ffdb6e9cafbd72572197f4dec",
88
+ "size_bytes": 19162
104
89
  },
105
90
  {
106
91
  "path": "src/backends/task-backend/redmine-backend.ts",
107
- "sha256": "446f0a9b73c0aac28233c623b6ca234908ab725a64cce48794a2a04c86bd6e41",
108
- "size_bytes": 26863
92
+ "sha256": "170bbfbc971732fe822c9ec6cf9beb2f1b3c0e44de35cc60e29e27c84b11c050",
93
+ "size_bytes": 36210
109
94
  },
110
95
  {
111
96
  "path": "src/backends/task-backend/redmine/client.ts",
@@ -117,15 +102,10 @@
117
102
  "sha256": "27ba0df10dd7580259b5d3ed94425f30d906dd78d1885e55e6daac37bf905e22",
118
103
  "size_bytes": 2368
119
104
  },
120
- {
121
- "path": "src/backends/task-backend/redmine/env.test.ts",
122
- "sha256": "29f994f1f67cb67af07616afdb993fb8116f00ab2765860bc516374d0f732eaf",
123
- "size_bytes": 2310
124
- },
125
105
  {
126
106
  "path": "src/backends/task-backend/redmine/env.ts",
127
- "sha256": "0e2c098aa9a5e561d0f2e8ad860e95e9492b6421c3836469cf707f3cdba2735d",
128
- "size_bytes": 3178
107
+ "sha256": "51f1ba8f756abd7fdefa9facfb68723c6ccb35e4f83c214f3b62c4f92258ae82",
108
+ "size_bytes": 3381
129
109
  },
130
110
  {
131
111
  "path": "src/backends/task-backend/redmine/fields.ts",
@@ -133,14 +113,14 @@
133
113
  "size_bytes": 1483
134
114
  },
135
115
  {
136
- "path": "src/backends/task-backend/redmine/live.test.ts",
137
- "sha256": "ff60d64abaf765448bec556d3ebdd2c35e1711ef2ba9244cc9c5b09fbd201c17",
138
- "size_bytes": 3189
116
+ "path": "src/backends/task-backend/redmine/inspect.ts",
117
+ "sha256": "d5533556ca1ec8a48296a498292b3abe4deba5e906f440e1e96d5819cdc752f9",
118
+ "size_bytes": 3108
139
119
  },
140
120
  {
141
121
  "path": "src/backends/task-backend/redmine/mapping.ts",
142
- "sha256": "cd327da5e9745c35cf20ca4e5b63cb6e29cea947e6e312a22d219181a0925d3b",
143
- "size_bytes": 7494
122
+ "sha256": "4283504e9c3ea3ac577d668e4d5b26cb03d0cad1f7ecbed1a4376ce6a3fd1a22",
123
+ "size_bytes": 8470
144
124
  },
145
125
  {
146
126
  "path": "src/backends/task-backend/redmine/parse.ts",
@@ -152,10 +132,15 @@
152
132
  "sha256": "a2367f7e019556608f75ad493a562f447f2e3fb16e7fff7d26ccc8004994c543",
153
133
  "size_bytes": 3664
154
134
  },
135
+ {
136
+ "path": "src/backends/task-backend/redmine/state.ts",
137
+ "sha256": "cdcb7b6b3b582fa466ef9556191ee635c2cf280dc2ffe53825517780058f7384",
138
+ "size_bytes": 4191
139
+ },
155
140
  {
156
141
  "path": "src/backends/task-backend/shared.ts",
157
- "sha256": "f892c20754f8c43bbb8270c7f574fc15abbbe21ce57d7612f5cb7e4f2fd01d63",
158
- "size_bytes": 731
142
+ "sha256": "f3c72c62cd3ed2abf96741679f4eaded7c23a9bf3c9749937b84c813e80102ca",
143
+ "size_bytes": 875
159
144
  },
160
145
  {
161
146
  "path": "src/backends/task-backend/shared/concurrency.ts",
@@ -164,7 +149,7 @@
164
149
  },
165
150
  {
166
151
  "path": "src/backends/task-backend/shared/constants.ts",
167
- "sha256": "efc6065ea4a57b34d1c6cdfce4b16a326a6950abab04433779954adf9eef692d",
152
+ "sha256": "7706b2e61116a7729de0838b5a7633b5b42a553e807e5467305a77a92957f01a",
168
153
  "size_bytes": 280
169
154
  },
170
155
  {
@@ -199,8 +184,8 @@
199
184
  },
200
185
  {
201
186
  "path": "src/backends/task-backend/shared/record.ts",
202
- "sha256": "562c3d681f6cd5b44b357b3b3c924352947f272cfaf38a1229fbb5e67a44d8d7",
203
- "size_bytes": 2841
187
+ "sha256": "ab0e8da9be1b902d594c1b8a2c3210994a969b07a0c29aeaab29d3fa7b5caffb",
188
+ "size_bytes": 3780
204
189
  },
205
190
  {
206
191
  "path": "src/backends/task-backend/shared/strings.ts",
@@ -209,29 +194,19 @@
209
194
  },
210
195
  {
211
196
  "path": "src/backends/task-backend/shared/types.ts",
212
- "sha256": "6e7ee2be6a314c92fab96630dea044eac767710d0089dbc38e2f3e9c5bdb44c3",
213
- "size_bytes": 3070
197
+ "sha256": "c56f99a6d467746538c9a4c453ae78307f5a63e232c8db1497255f0e5d7548ec",
198
+ "size_bytes": 4214
214
199
  },
215
200
  {
216
201
  "path": "src/backends/task-index.ts",
217
- "sha256": "4df99bf49efd4f19742fd4c61a328708d3e07a4141cfb9b3c1d91b23163bcde9",
218
- "size_bytes": 4690
202
+ "sha256": "db2be80065fafd84fe5247e5c15cdb3da418db9c68132d5e6d7cdf9c717d6c8d",
203
+ "size_bytes": 4715
219
204
  },
220
205
  {
221
206
  "path": "src/cli.ts",
222
207
  "sha256": "5a523c23d448bb69b175657bf971f77fa8e01383f8fccc7e14d32ed26d5175ec",
223
208
  "size_bytes": 142
224
209
  },
225
- {
226
- "path": "src/cli/__snapshots__/run-cli.core.help-snap.test.ts.snap",
227
- "sha256": "faca78c91cd38b800335f78b9c5708c002c53669b75195e3b4a516246fbc0224",
228
- "size_bytes": 11478
229
- },
230
- {
231
- "path": "src/cli/archive.test.ts",
232
- "sha256": "9572b963c1e74b64d956bcfbf9f9ff8a307201b2d1e198ddc522dc507e956055",
233
- "size_bytes": 1654
234
- },
235
210
  {
236
211
  "path": "src/cli/archive.ts",
237
212
  "sha256": "efcfaf38e82a6bc62b8a4fbe7f28358df744f3a13ae66ab4e0bf0981e99ce3be",
@@ -239,43 +214,23 @@
239
214
  },
240
215
  {
241
216
  "path": "src/cli/bootstrap-guide.ts",
242
- "sha256": "be6a4e82e5b1d7d876749f0b1d04e234aeddefb3a2601d11fc86139c59fadfcd",
243
- "size_bytes": 4962
244
- },
245
- {
246
- "path": "src/cli/checksum.test.ts",
247
- "sha256": "0fd5228ee02dd4001cddf5c145fe2a80b52f69755dd6a45ca195d3e15251b63c",
248
- "size_bytes": 954
217
+ "sha256": "94d47f874a95e239374cc24928bb50a1eea0bd9d1011af577fd56e09f727d716",
218
+ "size_bytes": 5095
249
219
  },
250
220
  {
251
221
  "path": "src/cli/checksum.ts",
252
222
  "sha256": "9beb5476f0519f8c04bb70a4ad8ad37fd5ec92bb8b80582b372d053437d8364a",
253
223
  "size_bytes": 410
254
224
  },
255
- {
256
- "path": "src/cli/cli-contract.test.ts",
257
- "sha256": "5f9ae48bb1e11b0ef98ec97c7042e2231437fc70bb587a4299504c11f2fc61f4",
258
- "size_bytes": 563
259
- },
260
225
  {
261
226
  "path": "src/cli/cli-error.ts",
262
227
  "sha256": "c3cda6a4fde892f9ba12c0647bbda92763a2804c1aa28ce5eae63c5acde918f9",
263
228
  "size_bytes": 573
264
229
  },
265
- {
266
- "path": "src/cli/cli-smoke.test.ts",
267
- "sha256": "b272bb1272c5d015ae16ce490497a836981f8befe1b4f16588d07c14cf5c5a23",
268
- "size_bytes": 6798
269
- },
270
- {
271
- "path": "src/cli/command-guide.test.ts",
272
- "sha256": "17ee80b536d7b2a2ef1392f1d28265660de4e4e6f995d485da85e6e4fed00b99",
273
- "size_bytes": 2632
274
- },
275
230
  {
276
231
  "path": "src/cli/command-guide.ts",
277
- "sha256": "3e873714538832069e13b7eb9bb9a672c847cdde82d165f8f275281fedae2b57",
278
- "size_bytes": 8954
232
+ "sha256": "bd787e6aa3d1e334c2af1db6b5ba92aad4998dfd83fbcd04b73800cfea511349",
233
+ "size_bytes": 9164
279
234
  },
280
235
  {
281
236
  "path": "src/cli/command-snippets.ts",
@@ -297,86 +252,31 @@
297
252
  "sha256": "b353988e749a73777970ae9ea35c3576a5af8e1bf46214d4026d6c75a3e39576",
298
253
  "size_bytes": 431
299
254
  },
300
- {
301
- "path": "src/cli/dist-guard.test.ts",
302
- "sha256": "05f6057bb28010bc2557c02cf9a68e53d997693d3f186bc494471ab175d50bf8",
303
- "size_bytes": 7764
304
- },
305
- {
306
- "path": "src/cli/error-map.test.ts",
307
- "sha256": "016067061c0bae295751be605199817a7a1fe2b148b20a743d3e7d353f76d1ea",
308
- "size_bytes": 1149
309
- },
310
255
  {
311
256
  "path": "src/cli/error-map.ts",
312
257
  "sha256": "32d93be981736304aeb3f11956256d3eee2c3dc08d2d6c0b305c073c7b0682b7",
313
258
  "size_bytes": 1352
314
259
  },
315
- {
316
- "path": "src/cli/exit-code.contract.test.ts",
317
- "sha256": "ca6041d8971f704ff40b17390e9879be83894b6a2707e146cefb52634adc8227",
318
- "size_bytes": 2833
319
- },
320
260
  {
321
261
  "path": "src/cli/exit-codes.ts",
322
262
  "sha256": "edbf5cc6188bab5a13e70a57cf8cdc4d8672ed89068f2b536394c884f1539354",
323
263
  "size_bytes": 317
324
264
  },
325
- {
326
- "path": "src/cli/fs-utils.test.ts",
327
- "sha256": "0beb4b14401fc73510e0ff95ba122d9e46b9ff1a81b8010bc049fc020e2c86fd",
328
- "size_bytes": 1832
329
- },
330
265
  {
331
266
  "path": "src/cli/fs-utils.ts",
332
267
  "sha256": "d717546afc77830a49fab9f189b4fac514fd941521dc377c6a0c25169421a79c",
333
268
  "size_bytes": 783
334
269
  },
335
- {
336
- "path": "src/cli/help.all-commands.contract.test.ts",
337
- "sha256": "1e51552fec8bd464e0c290e9d8d863cfcb0684a8eb2951f4f4a52091c2f6f6f2",
338
- "size_bytes": 1572
339
- },
340
- {
341
- "path": "src/cli/http.test.ts",
342
- "sha256": "558394ac9f3ef8703fb58abbec6f0613d0c407ba6bd42f12e706648af87eb01e",
343
- "size_bytes": 3916
344
- },
345
270
  {
346
271
  "path": "src/cli/http.ts",
347
272
  "sha256": "b953c1e42b1d193d026191b0f94b8dee3666f441b9aafbf800648c9bc93895f3",
348
273
  "size_bytes": 3374
349
274
  },
350
- {
351
- "path": "src/cli/legacy-cli-regressions.test.ts",
352
- "sha256": "5de5a4c262e04504e6fdaabb13e97614fb7354fd18931885b731f08c2fae0fb1",
353
- "size_bytes": 2925
354
- },
355
- {
356
- "path": "src/cli/local-ci-selection.test.ts",
357
- "sha256": "a32dd8188e3410037b1cbe31a307be645110249e255c3c32a783397da054104a",
358
- "size_bytes": 8783
359
- },
360
- {
361
- "path": "src/cli/output.test.ts",
362
- "sha256": "ca0f2c558d9aec3aeffd4460e1e4b336b93fb1e8828e47fe1c833c8100edb413",
363
- "size_bytes": 2616
364
- },
365
275
  {
366
276
  "path": "src/cli/output.ts",
367
277
  "sha256": "1c424a6947adbb20c84e0dbfc938518ff43927ec4f7c0065d590b8e47e880c87",
368
278
  "size_bytes": 2217
369
279
  },
370
- {
371
- "path": "src/cli/pre-commit-staged-files.test.ts",
372
- "sha256": "58469c799e11eded4f24e5e128aca9277ee48b9b80d5f965345d74ea720bd658",
373
- "size_bytes": 1042
374
- },
375
- {
376
- "path": "src/cli/prompts.test.ts",
377
- "sha256": "230125b3395fb9bc63ffca5304281d089771cf58e36e2bdee044b000f7a7a75f",
378
- "size_bytes": 2315
379
- },
380
280
  {
381
281
  "path": "src/cli/prompts.ts",
382
282
  "sha256": "6fd34ae852da19cc135a9fd32b4648948cfec9cd8543cfc1c68e4b8c773897ea",
@@ -384,13 +284,8 @@
384
284
  },
385
285
  {
386
286
  "path": "src/cli/reason-codes.ts",
387
- "sha256": "cd664388120558bdd41781f38f382147b7196614c1dbdbeb16ee2a85e30805a6",
388
- "size_bytes": 3013
389
- },
390
- {
391
- "path": "src/cli/recipes-bundled.test.ts",
392
- "sha256": "8af6a0938668025936cd5219860de980bad677c8499328ceaf1f67061863d106",
393
- "size_bytes": 2951
287
+ "sha256": "81a73f4985c178d9bee7d16b29c0516b4f303d89816f04705543a8be30c9ef14",
288
+ "size_bytes": 4268
394
289
  },
395
290
  {
396
291
  "path": "src/cli/recipes-bundled.ts",
@@ -398,134 +293,59 @@
398
293
  "size_bytes": 1417
399
294
  },
400
295
  {
401
- "path": "src/cli/release-recovery-script.test.ts",
402
- "sha256": "d555fb9d648cb51e30698321f0193a00bc75b15c4098608c89338ceb53c37735",
403
- "size_bytes": 6461
404
- },
405
- {
406
- "path": "src/cli/repo-local-handoff.test.ts",
407
- "sha256": "7058826fc50f56c94dc9bcd6ea804cd07aa7a5fafa8bb3d53e74c4f04e3e4741",
408
- "size_bytes": 6671
409
- },
410
- {
411
- "path": "src/cli/run-cli.core.boot.test.ts",
412
- "sha256": "f86dfdb87526b481530f67240d530491b42a00fca8e7eab79a6c462b2ce0d8e5",
413
- "size_bytes": 2433
414
- },
415
- {
416
- "path": "src/cli/run-cli.core.branch-meta.test.ts",
417
- "sha256": "c9bd645f25135a1782c7c7b13d7f3846253882553106eabf77a3eb9a36197e89",
418
- "size_bytes": 34401
419
- },
420
- {
421
- "path": "src/cli/run-cli.core.docs-cli.test.ts",
422
- "sha256": "058cd6546d3230de9442b40d2463b10f3bcafa2375760fadc153e0dcf7bf5301",
423
- "size_bytes": 1864
424
- },
425
- {
426
- "path": "src/cli/run-cli.core.guard.test.ts",
427
- "sha256": "6f1d517e49521c99c65961d05284645ac8c10cf77654c59998dc0bc0eabeadd0",
428
- "size_bytes": 36060
429
- },
430
- {
431
- "path": "src/cli/run-cli.core.help-contract.test.ts",
432
- "sha256": "eeadb43a7b3559866776f669c868057e8c818fcf30c2ca14ff6336995155a0ff",
433
- "size_bytes": 2831
434
- },
435
- {
436
- "path": "src/cli/run-cli.core.help-snap.test.ts",
437
- "sha256": "e14a14e42b6504a8f132fec17f171052a295e881fc4b76193558768a9371c127",
438
- "size_bytes": 1577
296
+ "path": "src/cli/run-cli.core.pr-flow.test-helpers.ts",
297
+ "sha256": "ca7a43c081af7ba5bec40751ff50bff53b168489dcbbd697117d9ae4f1753fb7",
298
+ "size_bytes": 758
439
299
  },
440
300
  {
441
- "path": "src/cli/run-cli.core.hooks.test.ts",
442
- "sha256": "d69ab76145b4f341e7463b365956cdd03760638e1fcdb79d99031aa825b5324c",
443
- "size_bytes": 20124
301
+ "path": "src/cli/run-cli.core.tasks.test-helpers.ts",
302
+ "sha256": "98e6e5e8881bee70eccd6f4b8008d98e2bcda9aff3a29b90e2dc72b7b506ad21",
303
+ "size_bytes": 234
444
304
  },
445
305
  {
446
- "path": "src/cli/run-cli.core.init-upgrade-backend.test.ts",
447
- "sha256": "6602a67b7837dcf1e4de7c554df9f27f26ee5a5bfe567862cdb6c5897d7e93fb",
448
- "size_bytes": 67521
449
- },
450
- {
451
- "path": "src/cli/run-cli.core.lifecycle.test.ts",
452
- "sha256": "9b55d8f60df26526dfc7863d3316a576843539e2950d4a781b3d2160d7a58407",
453
- "size_bytes": 67729
454
- },
455
- {
456
- "path": "src/cli/run-cli.core.misc.test.ts",
457
- "sha256": "9c223c2d2501a4f76810cf35a5cd48d65a4d62814bcc3c3609d7ffea3904e34c",
458
- "size_bytes": 9141
459
- },
460
- {
461
- "path": "src/cli/run-cli.core.pr-flow.test.ts",
462
- "sha256": "6678dc3494b585329edaa241ad9cd098d87e2c3b1c1a4217f95a44181bd9626c",
463
- "size_bytes": 75742
464
- },
465
- {
466
- "path": "src/cli/run-cli.core.tasks.test.ts",
467
- "sha256": "409ca8844e6439bd731f0573b49664ff49a7937f1635f7dfb0bbe783db1e42e3",
468
- "size_bytes": 75281
469
- },
470
- {
471
- "path": "src/cli/run-cli.core.test.ts",
472
- "sha256": "96e5529dc42205865c2c79308a54383c22b5622c70a873e8ed30c65a9ef53ecd",
473
- "size_bytes": 26256
474
- },
475
- {
476
- "path": "src/cli/run-cli.critical.exit-codes.test.ts",
477
- "sha256": "5cf7124cd93f3a8ebf115146a0cac979015aec29be577562666f15227c6b0041",
478
- "size_bytes": 837
479
- },
480
- {
481
- "path": "src/cli/run-cli.critical.git-edge.test.ts",
482
- "sha256": "aba0498103aecb39b67362347070021cc1134c39c10ad191a7f2d1c26b37b086",
483
- "size_bytes": 1718
484
- },
485
- {
486
- "path": "src/cli/run-cli.critical.protected-paths.test.ts",
487
- "sha256": "8dbec96fb3f9106240394eb4ee1cf330756e9095edd6dd80292f656624a8b7d0",
488
- "size_bytes": 2496
306
+ "path": "src/cli/run-cli.test-helpers.ts",
307
+ "sha256": "5c2416734e23e817861782aed638ec696fa17e8e2c63774d79d1d14298083218",
308
+ "size_bytes": 25660
489
309
  },
490
310
  {
491
- "path": "src/cli/run-cli.critical.scope-leak.test.ts",
492
- "sha256": "6d2efbac86133402598e620dc18f5ef9fe277ab3a0b03bf364f16e8423d9091c",
493
- "size_bytes": 4141
311
+ "path": "src/cli/run-cli.ts",
312
+ "sha256": "1b1e902d163227c2208e4738f3db5d68aae58ebd1f06cf95667de69f261ce3a7",
313
+ "size_bytes": 10035
494
314
  },
495
315
  {
496
- "path": "src/cli/run-cli.critical.symlink-root.test.ts",
497
- "sha256": "eff894c92f9acb6ba62fa81687b69e840d043f1258e1257c614f79a04f6a25cd",
498
- "size_bytes": 2862
316
+ "path": "src/cli/run-cli/catalog.ts",
317
+ "sha256": "3acaf91f4b983af2e41f941bf798146760dcc9802d31159b48824f46009e8cd7",
318
+ "size_bytes": 652
499
319
  },
500
320
  {
501
- "path": "src/cli/run-cli.recipes.test.ts",
502
- "sha256": "6370d6c7caccb337031680a509c50223cec4c9c4213f91ad083f8366fe00f2f3",
503
- "size_bytes": 24194
321
+ "path": "src/cli/run-cli/command-catalog.ts",
322
+ "sha256": "69d1aee4db502f70257d1f34a73b6aeb61a719c048cab7f648dd1a7c11b188eb",
323
+ "size_bytes": 554
504
324
  },
505
325
  {
506
- "path": "src/cli/run-cli.scenario.test.ts",
507
- "sha256": "966334462a6f3ff3b1580c494261d2d93bccda04cf023c51ce5e4859a9ee45b8",
508
- "size_bytes": 9210
326
+ "path": "src/cli/run-cli/command-catalog/core.ts",
327
+ "sha256": "2d92ba3f5689b9f141e2ea7a2bd68aa89093da529a9253a082fc62ce155b4330",
328
+ "size_bytes": 6338
509
329
  },
510
330
  {
511
- "path": "src/cli/run-cli.test-helpers.ts",
512
- "sha256": "69df304517ce5fb51b9db9e732b98fecab6006e8eabc304fda043f8b3ad83619",
513
- "size_bytes": 21774
331
+ "path": "src/cli/run-cli/command-catalog/lifecycle.ts",
332
+ "sha256": "98a9776ecd2bcbb15e95e8942a5d3605461892897c7812040ba386bbf25117e9",
333
+ "size_bytes": 3962
514
334
  },
515
335
  {
516
- "path": "src/cli/run-cli.ts",
517
- "sha256": "1b1e902d163227c2208e4738f3db5d68aae58ebd1f06cf95667de69f261ce3a7",
518
- "size_bytes": 10035
336
+ "path": "src/cli/run-cli/command-catalog/project.ts",
337
+ "sha256": "16274628be26d0dcccb3592a56bf5046d8042799c06e31de79354c0afcb504cd",
338
+ "size_bytes": 6978
519
339
  },
520
340
  {
521
- "path": "src/cli/run-cli/catalog.ts",
522
- "sha256": "3acaf91f4b983af2e41f941bf798146760dcc9802d31159b48824f46009e8cd7",
523
- "size_bytes": 652
341
+ "path": "src/cli/run-cli/command-catalog/shared.ts",
342
+ "sha256": "433a059a1c6366c72b041d168d69ce99cd4e12739a8318c8f062e2fda767eefb",
343
+ "size_bytes": 1322
524
344
  },
525
345
  {
526
- "path": "src/cli/run-cli/command-catalog.ts",
527
- "sha256": "7cfeb72ef59bff39bfc80a565d5fecd2a9dc2bfcad4652458dbb2e0ed377fed8",
528
- "size_bytes": 24656
346
+ "path": "src/cli/run-cli/command-catalog/task.ts",
347
+ "sha256": "19fd5389610fadaae41abc0ecc9a6b71c7ee49440366cf8bfb5a455003cf4dc2",
348
+ "size_bytes": 8162
529
349
  },
530
350
  {
531
351
  "path": "src/cli/run-cli/commands/config.ts",
@@ -537,15 +357,10 @@
537
357
  "sha256": "4c2625cef5df4cdc3e88fecee11c6a9bacdec82c3692fdf5f599bbc8504a92ec",
538
358
  "size_bytes": 25497
539
359
  },
540
- {
541
- "path": "src/cli/run-cli/commands/core.unit.test.ts",
542
- "sha256": "900f25dfbfefa579e1cc16ca9f54a41d99fb9de63d03eda0f3a8485b53cfb181",
543
- "size_bytes": 9873
544
- },
545
360
  {
546
361
  "path": "src/cli/run-cli/commands/ide.ts",
547
- "sha256": "e7c264d46921d810bf0bcc8ec8bcb2ff4a58ab4b2832bc89d018d8817cc53a20",
548
- "size_bytes": 3054
362
+ "sha256": "1b7d48b3f112cf98d643e35da809f8ac92a4e2ce019e0939f75e325dbacced30",
363
+ "size_bytes": 5618
549
364
  },
550
365
  {
551
366
  "path": "src/cli/run-cli/commands/init.ts",
@@ -577,15 +392,10 @@
577
392
  "sha256": "c8aff4e128413ad0454d8aa86d0cc8048b517ecd6e1da2b2294d76a54a6b204b",
578
393
  "size_bytes": 1161
579
394
  },
580
- {
581
- "path": "src/cli/run-cli/commands/init/ui.test.ts",
582
- "sha256": "4c63af245bc7bffb6289f42b665f4d6697887d89820888f18ae2a442425d6ef6",
583
- "size_bytes": 1462
584
- },
585
395
  {
586
396
  "path": "src/cli/run-cli/commands/init/ui.ts",
587
- "sha256": "c4bde4079ece6e0fc0b14423165476d8c3ba01168054b4115cabf7fd56312bf2",
588
- "size_bytes": 1733
397
+ "sha256": "e34afadc8e0433459c604bb8a9208f41521368dc5e59304687ffdc31732d2107",
398
+ "size_bytes": 2755
589
399
  },
590
400
  {
591
401
  "path": "src/cli/run-cli/commands/init/write-agents.ts",
@@ -599,8 +409,8 @@
599
409
  },
600
410
  {
601
411
  "path": "src/cli/run-cli/commands/init/write-env.ts",
602
- "sha256": "118a63238c7569874eb44af58246385102a56d4dc52d746b68f27cdd4207bf91",
603
- "size_bytes": 3262
412
+ "sha256": "d6d53b0ee3c53e1c1cf836eb31bc62f388d36de7da8de71718782b602b929bc0",
413
+ "size_bytes": 3642
604
414
  },
605
415
  {
606
416
  "path": "src/cli/run-cli/commands/init/write-gitignore.ts",
@@ -637,21 +447,6 @@
637
447
  "sha256": "20aadc388c613080c517f05cab0b634ead187283841efc6d4d08c6370bb51d21",
638
448
  "size_bytes": 2895
639
449
  },
640
- {
641
- "path": "src/cli/runtime-context.test.ts",
642
- "sha256": "235468b2c97fba66bd6cd71568386d5f30a7bf312585af7ed41f7a5057f51081",
643
- "size_bytes": 3083
644
- },
645
- {
646
- "path": "src/cli/runtime-watch.test.ts",
647
- "sha256": "513ce61840231d57deab294e517e160d049de7d515a07819bb26639c1738b18a",
648
- "size_bytes": 5276
649
- },
650
- {
651
- "path": "src/cli/shared/ansi.test.ts",
652
- "sha256": "3efd0708a35893ec31a93f1ad9d422801b52849e77879fa734880f8ee98c1df6",
653
- "size_bytes": 405
654
- },
655
450
  {
656
451
  "path": "src/cli/shared/ansi.ts",
657
452
  "sha256": "ae69224ee6e09423542c9549cb3e046d948cc9803c8a1e8549dce14ed28b9084",
@@ -667,11 +462,6 @@
667
462
  "sha256": "9589adebe299aa602d1eab951ae4114dce8697873f5842f33396c80d01152f86",
668
463
  "size_bytes": 895
669
464
  },
670
- {
671
- "path": "src/cli/spec/help-render.test.ts",
672
- "sha256": "6264467d857e991e40a27ebfa8af738a00c1301dc1d717dce6b1fd4515c65b16",
673
- "size_bytes": 1729
674
- },
675
465
  {
676
466
  "path": "src/cli/spec/help-render.ts",
677
467
  "sha256": "e2b6617e5fa7ff2bc75170ae6e7e6394e553dc620efebdb8f267163c65dd7c85",
@@ -687,21 +477,11 @@
687
477
  "sha256": "35c3ef414eddae97f9fe16a176ac932120aa5f7dc9754054d2df451407eefff6",
688
478
  "size_bytes": 1112
689
479
  },
690
- {
691
- "path": "src/cli/spec/parse.test.ts",
692
- "sha256": "ba0f5114949a7081febf6b971bb27af4d4d8101694888bdc9e068ffa6a552dec",
693
- "size_bytes": 2909
694
- },
695
480
  {
696
481
  "path": "src/cli/spec/parse.ts",
697
482
  "sha256": "56ccb69983f8f346ab082dbd927ea465574bd94e3e772fd85d5fcc05aebae876",
698
483
  "size_bytes": 6520
699
484
  },
700
- {
701
- "path": "src/cli/spec/registry.test.ts",
702
- "sha256": "8b0e46ebdd10b89183791f17ada29f0b3412a15e58e978799830d990a7c9c512",
703
- "size_bytes": 594
704
- },
705
485
  {
706
486
  "path": "src/cli/spec/registry.ts",
707
487
  "sha256": "39ddf83d006d24afd061e298d5340c99cc22a3c6507195f0a92c8507f51c018f",
@@ -712,55 +492,25 @@
712
492
  "sha256": "ffcb501005d855424d8f892c789bf0cbb435b38bb655f9615ee4b9b77c673b0b",
713
493
  "size_bytes": 2892
714
494
  },
715
- {
716
- "path": "src/cli/spec/suggest.test.ts",
717
- "sha256": "b926565a42e9393363c6aeda6413c99bdd19e349260a527ac3d8e68d848744bf",
718
- "size_bytes": 370
719
- },
720
495
  {
721
496
  "path": "src/cli/spec/suggest.ts",
722
497
  "sha256": "671e2584c12a1d6c8f783a1332b6deb82a5ed0b66b5954c54307bd90551f07b8",
723
498
  "size_bytes": 1319
724
499
  },
725
- {
726
- "path": "src/cli/stale-dist-policy.test.ts",
727
- "sha256": "a595a764ef0be2899ed126a018eef236007d2e36ab52b84093389edb15182f82",
728
- "size_bytes": 1813
729
- },
730
- {
731
- "path": "src/cli/stale-dist-readonly.test.ts",
732
- "sha256": "7b13d5cb1661e727204b60a8311185eec833b45ecfe1c94d57a29a10f001c305",
733
- "size_bytes": 5850
734
- },
735
- {
736
- "path": "src/cli/update-check.test.ts",
737
- "sha256": "07381eba86b23e958e4549756647b878fa6e5b062d4c7dec188dcfd75844bbdf",
738
- "size_bytes": 4510
739
- },
740
500
  {
741
501
  "path": "src/cli/update-check.ts",
742
502
  "sha256": "8776e69c83749aeda562d1faeeeb3b48d89680459edaef4520197b9599399caa",
743
503
  "size_bytes": 3897
744
504
  },
745
- {
746
- "path": "src/cli/verify-global-install-script.test.ts",
747
- "sha256": "91ab04d160944bdfc8a9476e7e9c092acc95aa541f79cc1d70b53d7d255a83de",
748
- "size_bytes": 4916
749
- },
750
- {
751
- "path": "src/commands/backend.test.ts",
752
- "sha256": "bc1cbaeaf459b0fd5367872bb69d77ce3b80343b84ac361de9d6fd50b99fb4c3",
753
- "size_bytes": 743
754
- },
755
505
  {
756
506
  "path": "src/commands/backend.ts",
757
- "sha256": "91c11a316c83e1c7705d7cb93f6146883cfd87c3330a40c1562da0163f4bdc93",
758
- "size_bytes": 3608
507
+ "sha256": "d5dc43558098e98f1c9462ac2f5a7213427ebb0c2cb6961d0101ed4da0a9f7e8",
508
+ "size_bytes": 8702
759
509
  },
760
510
  {
761
511
  "path": "src/commands/backend/sync.command.ts",
762
- "sha256": "10a1a7c12227b40354f895aef87c810833707e37e18acec272cd58db52d62a4b",
763
- "size_bytes": 3364
512
+ "sha256": "22c34d2c836a224f96326ddba44498890ff8d8039df312b205a295ef196c4b80",
513
+ "size_bytes": 6190
764
514
  },
765
515
  {
766
516
  "path": "src/commands/block.command.ts",
@@ -849,29 +599,19 @@
849
599
  },
850
600
  {
851
601
  "path": "src/commands/commit.spec.ts",
852
- "sha256": "d7d99c592fbe8db1e8e68456953b21008afdb6686baefd930da1bd870dd9b5c3",
853
- "size_bytes": 6262
602
+ "sha256": "87b615dbe1aeb83f24eb874fa5b64fb49bcdd861e63fe296972008b21a1b62e9",
603
+ "size_bytes": 7242
854
604
  },
855
605
  {
856
606
  "path": "src/commands/docs/cli.command.ts",
857
607
  "sha256": "25df50b9ad7136fc2dc18e81437c9430e4b1dfc041d117919febbd93b5553072",
858
608
  "size_bytes": 1954
859
609
  },
860
- {
861
- "path": "src/commands/doctor.command.test.ts",
862
- "sha256": "5bebb82be6d8529d0c383a6e336582a33d691bf050ff316ab71c77ee2ea85e44",
863
- "size_bytes": 33600
864
- },
865
610
  {
866
611
  "path": "src/commands/doctor.command.ts",
867
612
  "sha256": "c65899427cf7574822b076a009dd83dce8467779d442ca2e74c36a8bc7ff4fbb",
868
613
  "size_bytes": 111
869
614
  },
870
- {
871
- "path": "src/commands/doctor.fast.test.ts",
872
- "sha256": "c6e5967b6e06f63d8023c2da5b0ef7035edc7898ba1f4f6b4803351f79bf3ae7",
873
- "size_bytes": 7285
874
- },
875
615
  {
876
616
  "path": "src/commands/doctor.run.ts",
877
617
  "sha256": "5ab07ce809fca591d882ae1259d9ee484469b2fba8f4358e62c2db990259654b",
@@ -899,8 +639,8 @@
899
639
  },
900
640
  {
901
641
  "path": "src/commands/doctor/runtime.ts",
902
- "sha256": "63c556d872b315f2f3c6062f79ea8015e38f3285d658706d06e94007317dad2a",
903
- "size_bytes": 2880
642
+ "sha256": "a9d21e0d10b4ff090cdea8d2376b910ba2fca5dc139e2707c69565ef1a217b77",
643
+ "size_bytes": 2776
904
644
  },
905
645
  {
906
646
  "path": "src/commands/doctor/workflow.ts",
@@ -909,8 +649,8 @@
909
649
  },
910
650
  {
911
651
  "path": "src/commands/doctor/workspace.ts",
912
- "sha256": "d7d33a2f6906bbf731197261af8fc15b1d0d1a25cdf113b002c7667a75460b3e",
913
- "size_bytes": 9961
652
+ "sha256": "dd23e3d99cc0f33a583b625a6584841b4c8229dabbeed3611deee1bbec6cdaa1",
653
+ "size_bytes": 15142
914
654
  },
915
655
  {
916
656
  "path": "src/commands/finish.command.ts",
@@ -934,28 +674,18 @@
934
674
  },
935
675
  {
936
676
  "path": "src/commands/guard/commit.command.ts",
937
- "sha256": "3142c533bd57eb597f97d6328630f6875ebe5f6f1993b713c2d08f3d593d047f",
938
- "size_bytes": 5492
677
+ "sha256": "4c62b611525aa148a5a08f9696567b78da07a5df4d8018659dded133beaf96bb",
678
+ "size_bytes": 6462
939
679
  },
940
680
  {
941
681
  "path": "src/commands/guard/guard.command.ts",
942
682
  "sha256": "41f2045e7f16dc9f8ac44db1ccf9bd470031a623494002ec0327bdb31d74cf03",
943
683
  "size_bytes": 851
944
684
  },
945
- {
946
- "path": "src/commands/guard/impl/allow.test.ts",
947
- "sha256": "f932a1a147bcf4388ed1f98da0efabfb52e859e2c8d8ce87be67091273cf34a6",
948
- "size_bytes": 5738
949
- },
950
685
  {
951
686
  "path": "src/commands/guard/impl/allow.ts",
952
- "sha256": "7a6f65ad73ba18c39550d744576c0652016f422d66a7f4df401913938871083f",
953
- "size_bytes": 4376
954
- },
955
- {
956
- "path": "src/commands/guard/impl/close-message.test.ts",
957
- "sha256": "35280112303149ae5c546d03cd956c64a1e2403478016247fc5a06e8bf404fa8",
958
- "size_bytes": 8449
687
+ "sha256": "b811aae4f7200aeb2da808d0469dfd00317853dda23e691b26d6f34b1b2b88f3",
688
+ "size_bytes": 5411
959
689
  },
960
690
  {
961
691
  "path": "src/commands/guard/impl/close-message.ts",
@@ -964,44 +694,24 @@
964
694
  },
965
695
  {
966
696
  "path": "src/commands/guard/impl/commands.ts",
967
- "sha256": "85172114d3c4e352465000f8f0377ee2cd8a02fbc778ac71eb1b3d64eac78de2",
968
- "size_bytes": 11167
969
- },
970
- {
971
- "path": "src/commands/guard/impl/commands.unit.test.ts",
972
- "sha256": "7253534cd610d0b8c625134d2f5f44d10eb5ea38e66f6d62848dba65c66464cc",
973
- "size_bytes": 10590
974
- },
975
- {
976
- "path": "src/commands/guard/impl/comment-commit.test.ts",
977
- "sha256": "777650857699cc3314ce349546a5aae5427e5bd7c801b2708bca02f046bcad35",
978
- "size_bytes": 13654
697
+ "sha256": "5e135bd3f44efc5406747aa5c6b7bb3e1befbc597b13a907e74ba94b581b50a4",
698
+ "size_bytes": 16748
979
699
  },
980
700
  {
981
701
  "path": "src/commands/guard/impl/comment-commit.ts",
982
- "sha256": "c59320aea1465571c47034dca07bb7ab3cac9f25a5a0e58cd7f81b450750a53c",
983
- "size_bytes": 5216
702
+ "sha256": "08b371069e8ee0c07726727fedd806413416807a28cc3dd736b72d669f119ada",
703
+ "size_bytes": 5290
984
704
  },
985
705
  {
986
706
  "path": "src/commands/guard/impl/env.ts",
987
707
  "sha256": "a9fd2ea52c31c150c50a882ff91db2def6ea95bd7d729e4a42bdc143f300dfb3",
988
708
  "size_bytes": 817
989
709
  },
990
- {
991
- "path": "src/commands/guard/impl/policy.test.ts",
992
- "sha256": "e972fc468841427e40f3e7d2be089b502ce1f28767b0ee0b911a1ddf6df16e6f",
993
- "size_bytes": 3879
994
- },
995
710
  {
996
711
  "path": "src/commands/guard/impl/policy.ts",
997
712
  "sha256": "dfedeae6569100ac9c546b424f0290bd1519687b00639e501f7e6587b05fb03f",
998
713
  "size_bytes": 2037
999
714
  },
1000
- {
1001
- "path": "src/commands/guard/index.test.ts",
1002
- "sha256": "eaaf012cc07bf63652b9c5f72bdcb4260d9c639f4fa1ac18b9985b8d2a00bd6e",
1003
- "size_bytes": 810
1004
- },
1005
715
  {
1006
716
  "path": "src/commands/guard/index.ts",
1007
717
  "sha256": "ab0532a72d79cdbd6056c14f315cb2ae3030542eec2a7275382c3441d1495b16",
@@ -1019,8 +729,8 @@
1019
729
  },
1020
730
  {
1021
731
  "path": "src/commands/hooks/index.ts",
1022
- "sha256": "6c401d71f68e931b8e6e4731434a2f45e2958f8b4d2bcaaaaa76e7e2edc689b9",
1023
- "size_bytes": 11476
732
+ "sha256": "ca9ebbbf8990723c35cba1396daa1605959ee40eee31a3bdfc681e14f49db6b5",
733
+ "size_bytes": 10283
1024
734
  },
1025
735
  {
1026
736
  "path": "src/commands/hooks/install.command.ts",
@@ -1052,11 +762,6 @@
1052
762
  "sha256": "ee1d5e2b60a23896a61a2da7c4fdeba09cc3738e8ddfc00da67be76d5d02e462",
1053
763
  "size_bytes": 209
1054
764
  },
1055
- {
1056
- "path": "src/commands/pr/input-validation.test.ts",
1057
- "sha256": "7f48ab7255bf14d2b47682087a68ca6feddfbc9c81ce759bbf8b76a13b9ff458",
1058
- "size_bytes": 1211
1059
- },
1060
765
  {
1061
766
  "path": "src/commands/pr/integrate.ts",
1062
767
  "sha256": "f2ac65dbfb4652efa32713bbaee113c7d3861235ce636a74858ff264bd2a35c0",
@@ -1072,41 +777,21 @@
1072
777
  "sha256": "255ffaa264028ea70e44bb8665a9cf21013269ae6479d9333f6e422b85964f3c",
1073
778
  "size_bytes": 5476
1074
779
  },
1075
- {
1076
- "path": "src/commands/pr/integrate/internal/finalize.test.ts",
1077
- "sha256": "e4378dfe4cc686eb9f0a8466009141932cd72a5392ff435c942026ddc5d733d4",
1078
- "size_bytes": 4032
1079
- },
1080
780
  {
1081
781
  "path": "src/commands/pr/integrate/internal/finalize.ts",
1082
782
  "sha256": "764cc295cb54a484af073c4c9884eaaa4dfea50afc58a329e3d445f411ca5b1e",
1083
783
  "size_bytes": 3882
1084
784
  },
1085
- {
1086
- "path": "src/commands/pr/integrate/internal/merge.test.ts",
1087
- "sha256": "9bfdd3815df0f905e3af69cf4d91e4ae99b7d48fa364caef130d62c98cccf4bd",
1088
- "size_bytes": 3220
1089
- },
1090
785
  {
1091
786
  "path": "src/commands/pr/integrate/internal/merge.ts",
1092
787
  "sha256": "5fdc5f8e957379f514fef74baf1d7a819a7941eccb0ccc66b1341bf3896c4e1d",
1093
788
  "size_bytes": 6094
1094
789
  },
1095
- {
1096
- "path": "src/commands/pr/integrate/internal/prepare.test.ts",
1097
- "sha256": "8e0bff3ba782de06f332b192d73414352d6d43383c95dcecf802859611be8b1f",
1098
- "size_bytes": 6224
1099
- },
1100
790
  {
1101
791
  "path": "src/commands/pr/integrate/internal/prepare.ts",
1102
792
  "sha256": "b4091c42b18cf0330efa2d62f7743c8f43e8b77f7ce11a0ad05adbdb9b6ba649",
1103
793
  "size_bytes": 6178
1104
794
  },
1105
- {
1106
- "path": "src/commands/pr/integrate/internal/worktree.test.ts",
1107
- "sha256": "1947373f89f0b2584bf2a9836c8ed4018577bc700873d639ac14639f5e86d5dc",
1108
- "size_bytes": 4147
1109
- },
1110
795
  {
1111
796
  "path": "src/commands/pr/integrate/internal/worktree.ts",
1112
797
  "sha256": "38e235a81e9d1f53ac87b87814f7cff87da0b22a96d98f394c9b32ec130446d6",
@@ -1117,11 +802,6 @@
1117
802
  "sha256": "d4c199d1ac1991b2c7d495fc13b553ae69cec3a7387399df210b9029b756fe35",
1118
803
  "size_bytes": 2802
1119
804
  },
1120
- {
1121
- "path": "src/commands/pr/internal/pr-paths.test.ts",
1122
- "sha256": "5ed14f9d9b0334dba75c105c2de6db9c9ff6e2c3d35acc0a29862564ca534d26",
1123
- "size_bytes": 3391
1124
- },
1125
805
  {
1126
806
  "path": "src/commands/pr/internal/pr-paths.ts",
1127
807
  "sha256": "2ba4a678e6804deb0095e2031ca38dcac2fe44229e7a97b7cce2daeeab0bd9bb",
@@ -1158,14 +838,14 @@
1158
838
  "size_bytes": 1042
1159
839
  },
1160
840
  {
1161
- "path": "src/commands/recipes.test.ts",
1162
- "sha256": "2918ef19c0fbf8a0953f5793d496fcda80c38e718bec0898a32ffcd543f382f6",
1163
- "size_bytes": 47026
841
+ "path": "src/commands/recipes.test-helpers.ts",
842
+ "sha256": "f988a1f84209a4137b5281797b0c1bb62e24182a193d50a41906a6379762c2e9",
843
+ "size_bytes": 12478
1164
844
  },
1165
845
  {
1166
846
  "path": "src/commands/recipes.ts",
1167
- "sha256": "d8c72ef0a8233348dc04375c377323ad1c13ae6ae6261c86a4ac733cb80d8a33",
1168
- "size_bytes": 943
847
+ "sha256": "11d46cc63e46f671344e06fe0920f5607e8aeab14e4d2bf873bcd10fcfd3ae6d",
848
+ "size_bytes": 1686
1169
849
  },
1170
850
  {
1171
851
  "path": "src/commands/recipes/cache-prune.command.ts",
@@ -1184,8 +864,8 @@
1184
864
  },
1185
865
  {
1186
866
  "path": "src/commands/recipes/impl/apply.ts",
1187
- "sha256": "a3d4a8c4a0afe216359bd8c81c358d9dbe0b727a64681b87dce767bf60943b01",
1188
- "size_bytes": 4414
867
+ "sha256": "23cd6bd142c2b6cc82db8ec5ec50f0f89cce1816c0cb4c75089da2d8894da4dc",
868
+ "size_bytes": 6043
1189
869
  },
1190
870
  {
1191
871
  "path": "src/commands/recipes/impl/archive.ts",
@@ -1204,18 +884,18 @@
1204
884
  },
1205
885
  {
1206
886
  "path": "src/commands/recipes/impl/commands/explain.ts",
1207
- "sha256": "3d392a855792e9928cb269196b950a79238b60c8e1140cc9ff603fbb76041303",
1208
- "size_bytes": 3728
887
+ "sha256": "fe8e14b3e90609cd4dde14c09dda2dfd80af5a1a1f696c4753ce75f9cb308eb9",
888
+ "size_bytes": 6336
1209
889
  },
1210
890
  {
1211
891
  "path": "src/commands/recipes/impl/commands/info.ts",
1212
- "sha256": "e8eab974b2cd2b41e7f301f6b412053a2122ed1671923a323316fd54af43c4a0",
1213
- "size_bytes": 2407
892
+ "sha256": "453e362b1f1c7d59d28bd4c0a8119cdb9482f75eb8252d213f717887c3792d09",
893
+ "size_bytes": 2801
1214
894
  },
1215
895
  {
1216
896
  "path": "src/commands/recipes/impl/commands/install.ts",
1217
- "sha256": "bd694948d25e49544156ff91c8ab40e3c26909c2e58c26ed40012923b7537cde",
1218
- "size_bytes": 10603
897
+ "sha256": "a9de57950518378c81d4c2e66689ad4f898a7fe161b69945bc1051f163406f52",
898
+ "size_bytes": 10660
1219
899
  },
1220
900
  {
1221
901
  "path": "src/commands/recipes/impl/commands/list-remote.ts",
@@ -1224,18 +904,18 @@
1224
904
  },
1225
905
  {
1226
906
  "path": "src/commands/recipes/impl/commands/list.ts",
1227
- "sha256": "704b41438fabd4107f22c849bbf52acaa85a4a7d1fdc4593fa96f0bd291637dd",
1228
- "size_bytes": 1832
907
+ "sha256": "0d4a6553df2a63dd05fd61ac97e588f26eb87da842f0933af58daefdf8b06f8c",
908
+ "size_bytes": 1910
1229
909
  },
1230
910
  {
1231
911
  "path": "src/commands/recipes/impl/commands/remove.ts",
1232
- "sha256": "1b240f8f83d785130d2f5efe26dbb39f9d2ef212de023f2671831e1855cf6cc1",
1233
- "size_bytes": 1602
912
+ "sha256": "99ba3ed7931817b53962e3c82376c7242df080e88b238d22346f77ad8b2daf7f",
913
+ "size_bytes": 1474
1234
914
  },
1235
915
  {
1236
916
  "path": "src/commands/recipes/impl/constants.ts",
1237
- "sha256": "1194cdb0c70d3bcbb68f1cdc1b2d12f6089de413688f616a00aa470958896bad",
1238
- "size_bytes": 934
917
+ "sha256": "687f3c35891b94f8a30d1dad2e0ddef9b96eff8eb042ed58ffe1b3aa8e23c3e3",
918
+ "size_bytes": 1035
1239
919
  },
1240
920
  {
1241
921
  "path": "src/commands/recipes/impl/format.ts",
@@ -1254,33 +934,43 @@
1254
934
  },
1255
935
  {
1256
936
  "path": "src/commands/recipes/impl/manifest.ts",
1257
- "sha256": "7aef498a8323e9b1c06b16b1b977a135c04f274de557b076240ca1a6c8716ec5",
1258
- "size_bytes": 2031
937
+ "sha256": "f32ed22aeac18bb15bb83b8f218ebc5efd395066f4cbdd0d28271ca5b5c9fe9d",
938
+ "size_bytes": 13086
1259
939
  },
1260
940
  {
1261
941
  "path": "src/commands/recipes/impl/normalize.ts",
1262
- "sha256": "7f10531aeacf7178a6204e58c4182b24e31dfb31bc5ae883472b1ef976aed753",
1263
- "size_bytes": 1960
942
+ "sha256": "9b4f0772ba16a66158d6ad27f1f7ed004c451d2d23cb13dedf2e5cf21a43dd84",
943
+ "size_bytes": 2104
1264
944
  },
1265
945
  {
1266
946
  "path": "src/commands/recipes/impl/paths.ts",
1267
- "sha256": "cfa30fbedcdeec41699eaba09eea140254132cd5a0b054f8aabf2932b655e5f8",
1268
- "size_bytes": 1328
947
+ "sha256": "40ea52e99eba1425397eec87563eabc28cdbeb025b813525d38002ce311536ba",
948
+ "size_bytes": 1946
949
+ },
950
+ {
951
+ "path": "src/commands/recipes/impl/project-installed-recipes.ts",
952
+ "sha256": "83b9e6e8675e31b262981c71cbee14d772fcb33c4f59841fd9b1f594c851f596",
953
+ "size_bytes": 4701
1269
954
  },
1270
955
  {
1271
956
  "path": "src/commands/recipes/impl/project.ts",
1272
957
  "sha256": "b2c7685808eb250d07edf10d4f39abc710052cdafc760a6cf25971075171eaec",
1273
958
  "size_bytes": 786
1274
959
  },
960
+ {
961
+ "path": "src/commands/recipes/impl/resolver.ts",
962
+ "sha256": "b8b0d8b7dfb10efe7db91146c0adffd8c343e73dbe82bff43f8c1a5b6ffef024",
963
+ "size_bytes": 11202
964
+ },
1275
965
  {
1276
966
  "path": "src/commands/recipes/impl/scenario.ts",
1277
- "sha256": "f33f6141028bc3864b5a9d9b0dc26e94bb199d3975cf7c1879fae75bec28967a",
1278
- "size_bytes": 6672
967
+ "sha256": "92137a285641e23eb198d4895cfb84ee22081aa5a52388d4c0562051885d3adc",
968
+ "size_bytes": 7926
1279
969
  },
1280
970
  {
1281
971
  "path": "src/commands/recipes/impl/types.ts",
1282
- "sha256": "7595fb9716287e024e798acd896d546fad11ccb9cf1f1bb91e155b85d5a172f2",
1283
- "size_bytes": 2088
972
+ "sha256": "ef17569c7ceed06f6b4997ca6308be85912b5d8c9b60699446204d1d88222c50",
973
+ "size_bytes": 5600
1284
974
  },
1285
975
  {
1286
976
  "path": "src/commands/recipes/info.command.ts",
@@ -1299,8 +989,8 @@
1299
989
  },
1300
990
  {
1301
991
  "path": "src/commands/recipes/install.spec.ts",
1302
- "sha256": "2bc195d3f5576449d7b8a5ddd11c14a324213a146aa21e5c3587e433a28b4deb",
1303
- "size_bytes": 4638
992
+ "sha256": "b74e888e70dc3fa221d1032d27a30c829d56985732173aebf8023743af3a98eb",
993
+ "size_bytes": 4776
1304
994
  },
1305
995
  {
1306
996
  "path": "src/commands/recipes/list-remote.command.ts",
@@ -1342,51 +1032,21 @@
1342
1032
  "sha256": "5174dfc70c2fb1cc06e8d29910ec738f5985a726cb0b7d932fc3221ff18ec8d2",
1343
1033
  "size_bytes": 1121
1344
1034
  },
1345
- {
1346
- "path": "src/commands/release/apply.test.ts",
1347
- "sha256": "bfcb939cdefbc0e0bc30f4c38140736589ca9a1da40ba7d6b477474b601f7a93",
1348
- "size_bytes": 27438
1349
- },
1350
1035
  {
1351
1036
  "path": "src/commands/release/apply.types.ts",
1352
1037
  "sha256": "fc38cc16225c4a51a4011875517ba1137f219fb20e2aeeebfed761237d8c00fb",
1353
1038
  "size_bytes": 926
1354
1039
  },
1355
- {
1356
- "path": "src/commands/release/check-release-parity-script.test.ts",
1357
- "sha256": "060ce9e32055c003ecc7ede8c93f89d3673588161a488cfe69240d1070da608b",
1358
- "size_bytes": 2359
1359
- },
1360
- {
1361
- "path": "src/commands/release/check-release-version-script.test.ts",
1362
- "sha256": "1e89a216b0ffc8a0f1ad113cfd9cf03078c96328c5f65ab52fe4cd92f0c9ee7b",
1363
- "size_bytes": 2420
1364
- },
1365
1040
  {
1366
1041
  "path": "src/commands/release/plan.command.ts",
1367
1042
  "sha256": "9e334ee8d6f170a3ca60ca8c295206587bec252edbd79ae67eb57e3bfeccd467",
1368
1043
  "size_bytes": 10438
1369
1044
  },
1370
- {
1371
- "path": "src/commands/release/plan.test.ts",
1372
- "sha256": "7a597b0211035d2a4912b984b95d3592f1eaf3959dbbe1dd0100a5364e3904ea",
1373
- "size_bytes": 3405
1374
- },
1375
- {
1376
- "path": "src/commands/release/release-check-script.test.ts",
1377
- "sha256": "2cc55086d7dc772073f9b3811d733fbcff7c0a89a00218c23cb3b21a7ad33de2",
1378
- "size_bytes": 2927
1379
- },
1380
1045
  {
1381
1046
  "path": "src/commands/release/release.command.ts",
1382
1047
  "sha256": "3164bd5b6b66c8923cfeed0e82a16a968c57c89fb40b5e8fcba6369b18848dc2",
1383
1048
  "size_bytes": 846
1384
1049
  },
1385
- {
1386
- "path": "src/commands/runtime.command.test.ts",
1387
- "sha256": "fe012609e1fd20994838123e1be33577cb4112f3dc0b4970ed17a116948ef4f7",
1388
- "size_bytes": 8079
1389
- },
1390
1050
  {
1391
1051
  "path": "src/commands/runtime.command.ts",
1392
1052
  "sha256": "c6237396b6724faa6f5cedfc166eb5b6fec4e710998b34af91d975b628df0412",
@@ -1397,15 +1057,10 @@
1397
1057
  "sha256": "2433f38217f6143e9d3580244be0f7069214d7ac3d93554adc0a881e4e8c3017",
1398
1058
  "size_bytes": 121
1399
1059
  },
1400
- {
1401
- "path": "src/commands/scenario/impl/commands.test.ts",
1402
- "sha256": "6941c37f5f10ee29796a77ddfbe04b6838490a782553c021962323e7e8370f98",
1403
- "size_bytes": 1691
1404
- },
1405
1060
  {
1406
1061
  "path": "src/commands/scenario/impl/commands.ts",
1407
- "sha256": "e9581d2994202da575a4545a6743c1d6192214b1d3e31f41a441972feb878399",
1408
- "size_bytes": 18616
1062
+ "sha256": "60e0313a352c9acb5dd1e4343103bccbee9816cb246ab53a06d4759197b0885b",
1063
+ "size_bytes": 12638
1409
1064
  },
1410
1065
  {
1411
1066
  "path": "src/commands/scenario/impl/report.ts",
@@ -1414,39 +1069,29 @@
1414
1069
  },
1415
1070
  {
1416
1071
  "path": "src/commands/scenario/info.command.ts",
1417
- "sha256": "881e8fbfcd99f7b998a433ceb367f45a433aa5dd530c511b12f1e22f6b51eecf",
1418
- "size_bytes": 1214
1072
+ "sha256": "69f594f4bd53ab473564049bb6c6e0cc56400eafebd31393456d29cc9c744744",
1073
+ "size_bytes": 1292
1419
1074
  },
1420
1075
  {
1421
1076
  "path": "src/commands/scenario/list.command.ts",
1422
- "sha256": "0e5b8b688e4c3b780e06612676fe092870d59ddf34c0cfb2a56901ed072dab8e",
1423
- "size_bytes": 619
1077
+ "sha256": "31b7f02b4b529a884c57ab7fedf337fa837cd64fc37d397745c64854ac03bfd3",
1078
+ "size_bytes": 653
1424
1079
  },
1425
1080
  {
1426
1081
  "path": "src/commands/scenario/run.command.ts",
1427
- "sha256": "370b75b77b7276877b18d661a26043836d7744545e2ce94d5d5f4d40d34685c8",
1428
- "size_bytes": 1196
1082
+ "sha256": "bc8784b25de088647bead6a1fbd07016a1d8a916e46f9df11b346787943c249a",
1083
+ "size_bytes": 1276
1429
1084
  },
1430
1085
  {
1431
1086
  "path": "src/commands/scenario/scenario.command.ts",
1432
1087
  "sha256": "55f4cc35096127a7ba49c754964ddffe4b56980a838aa416525fa26ffecb4700",
1433
1088
  "size_bytes": 1514
1434
1089
  },
1435
- {
1436
- "path": "src/commands/shared/approval-requirements.test.ts",
1437
- "sha256": "04e6928a41e0be647ac625c9fc18ff7155dba828b3655c1e17ced2099871cc7c",
1438
- "size_bytes": 2092
1439
- },
1440
1090
  {
1441
1091
  "path": "src/commands/shared/approval-requirements.ts",
1442
1092
  "sha256": "36f28872c3c202d9632e266309019cf34d33ffe3a040c84767ba17be030de716",
1443
1093
  "size_bytes": 3337
1444
1094
  },
1445
- {
1446
- "path": "src/commands/shared/git-context.test.ts",
1447
- "sha256": "4dfafb9bdb4d57ad4671bf28553a69575427248de7bdc06b1a495647a4e81f8b",
1448
- "size_bytes": 3047
1449
- },
1450
1095
  {
1451
1096
  "path": "src/commands/shared/git-context.ts",
1452
1097
  "sha256": "25ba607fbb8fd17f9b61348a0edfc397c42786c54bad0411e7c75309b02baf1a",
@@ -1472,11 +1117,6 @@
1472
1117
  "sha256": "e91e79fe6292e0d1cbfb5c768d76d95cc568c60fdc99189ef67ae6405a5ff81d",
1473
1118
  "size_bytes": 508
1474
1119
  },
1475
- {
1476
- "path": "src/commands/shared/network-approval.test.ts",
1477
- "sha256": "c9b9bdde4d1eeefe7d8d052244d9c42eada52fa86a7eb898647155dd622a42c4",
1478
- "size_bytes": 1580
1479
- },
1480
1120
  {
1481
1121
  "path": "src/commands/shared/network-approval.ts",
1482
1122
  "sha256": "c004418becdd4178181c5784a258cff8adf8a66852cb8ce34aada1fb1be0345d",
@@ -1492,45 +1132,25 @@
1492
1132
  "sha256": "e28583db7819c49280e0a4abd5fd7c650e093557a895dfc160b9037871196581",
1493
1133
  "size_bytes": 519
1494
1134
  },
1495
- {
1496
- "path": "src/commands/shared/pr-meta.test.ts",
1497
- "sha256": "ad36d07cc19f2a19b423f2a394d76a49d0139a09c23219169013984d7b60430a",
1498
- "size_bytes": 2079
1499
- },
1500
1135
  {
1501
1136
  "path": "src/commands/shared/pr-meta.ts",
1502
1137
  "sha256": "3e2bbb0e8c901d52ff3e6b126b4870bc35e1563ca9896ad6d672a38868b06aeb",
1503
1138
  "size_bytes": 3502
1504
1139
  },
1505
- {
1506
- "path": "src/commands/shared/reconcile-check.test.ts",
1507
- "sha256": "1b6bf57df11c32e084cae8d64645c59dd4814cc8149e4016cc6b936e47dd2637",
1508
- "size_bytes": 4049
1509
- },
1510
1140
  {
1511
1141
  "path": "src/commands/shared/reconcile-check.ts",
1512
- "sha256": "e98734b7d155e9fdc6514745c50295a6eba2cc77af75811dd9822285c4be58cb",
1513
- "size_bytes": 2011
1514
- },
1515
- {
1516
- "path": "src/commands/shared/task-backend.test.ts",
1517
- "sha256": "d66bb236266c1bf7fbb7055addf2ab07a5f97398b6224075cbdb59b967823529",
1518
- "size_bytes": 2859
1142
+ "sha256": "8e6a9678aaab93059c4bab0712f9bdd2340f7ab803efe7e0b88dae73c58450e7",
1143
+ "size_bytes": 5393
1519
1144
  },
1520
1145
  {
1521
1146
  "path": "src/commands/shared/task-backend.ts",
1522
- "sha256": "7c9e1c1601a984c92e9c50e3a81078d5f27bdc92829eeae751d141e16decab09",
1523
- "size_bytes": 5624
1524
- },
1525
- {
1526
- "path": "src/commands/shared/task-store.test.ts",
1527
- "sha256": "19429c4104cf1cbdb467325cc2a790f67e5b1adf3b46d0779bbc7f71698d596e",
1528
- "size_bytes": 4807
1147
+ "sha256": "45a144769229a62141879cba0a26e399529e0f7c6466d6a2e3fd74e042766e33",
1148
+ "size_bytes": 5990
1529
1149
  },
1530
1150
  {
1531
1151
  "path": "src/commands/shared/task-store.ts",
1532
- "sha256": "28e88d191801359c5d0acdc5ff9768692665f4022801f9bc7ae33d2c7f31e910",
1533
- "size_bytes": 6416
1152
+ "sha256": "dc99fffbc7592359e60517b20ee6d6659d2c1819a1c391c41c485f51a1a6c5e1",
1153
+ "size_bytes": 22450
1534
1154
  },
1535
1155
  {
1536
1156
  "path": "src/commands/start.command.ts",
@@ -1564,8 +1184,8 @@
1564
1184
  },
1565
1185
  {
1566
1186
  "path": "src/commands/task/block.ts",
1567
- "sha256": "454be8a3dc9542f28d516d778da04ebad0909be90bd623168acc614f60d083b1",
1568
- "size_bytes": 5667
1187
+ "sha256": "c1d1c6a6556165dca91d265d0e740d48242ac26885c0d8e85bbbe85647ffabd5",
1188
+ "size_bytes": 7081
1569
1189
  },
1570
1190
  {
1571
1191
  "path": "src/commands/task/close-duplicate.command.ts",
@@ -1574,8 +1194,8 @@
1574
1194
  },
1575
1195
  {
1576
1196
  "path": "src/commands/task/close-duplicate.ts",
1577
- "sha256": "388ee50acec48eb824ad4c60455776f4154da488445da5b811c64d7013aeb9e1",
1578
- "size_bytes": 3733
1197
+ "sha256": "57029f8b560a13a4605d182ccda57e574ea5fc8423310114179eb065ad497fb6",
1198
+ "size_bytes": 2664
1579
1199
  },
1580
1200
  {
1581
1201
  "path": "src/commands/task/close-noop.command.ts",
@@ -1584,8 +1204,13 @@
1584
1204
  },
1585
1205
  {
1586
1206
  "path": "src/commands/task/close-noop.ts",
1587
- "sha256": "e4201adc03f9c3931d6cc01989abf95b05f47f265ffda043d45d44a3c58ab50d",
1588
- "size_bytes": 3098
1207
+ "sha256": "46c5466ade1740343c50dbf65762e37fa6ed909fb963829b79a464d2cb1e9cdd",
1208
+ "size_bytes": 2347
1209
+ },
1210
+ {
1211
+ "path": "src/commands/task/close-shared.ts",
1212
+ "sha256": "b1aafec2fd41b0ccb7bc4d18604f83e9a300655a9b22bbee4b06bc7a13cdaf82",
1213
+ "size_bytes": 3121
1589
1214
  },
1590
1215
  {
1591
1216
  "path": "src/commands/task/comment.command.ts",
@@ -1594,23 +1219,23 @@
1594
1219
  },
1595
1220
  {
1596
1221
  "path": "src/commands/task/comment.ts",
1597
- "sha256": "b5caadd0e9825d34c84d9fd77039c2a9e5abb61fcfdcc6696c67075559657159",
1598
- "size_bytes": 1977
1222
+ "sha256": "c0f3fbb5d042b9595c7a9bc7a220d1b0d33d9dfb8975ef8dab92e01301b83ddd",
1223
+ "size_bytes": 2437
1599
1224
  },
1600
1225
  {
1601
1226
  "path": "src/commands/task/derive.command.ts",
1602
- "sha256": "e8b8d7636f5dc28f34091d972bd8b0bc541d1d4528022f12ec3904e9d965b8c5",
1603
- "size_bytes": 3035
1227
+ "sha256": "fe9b5850ad73f9836397b20aba34b1b30c0cff5b86dd3ca8a9dcd0b67063796f",
1228
+ "size_bytes": 3603
1604
1229
  },
1605
1230
  {
1606
1231
  "path": "src/commands/task/derive.ts",
1607
- "sha256": "2f98e8260ce77ef3edc0e09005d4ee38b8c85dcc75bcbd5441d14a51ca2fb1e0",
1608
- "size_bytes": 3020
1232
+ "sha256": "70db78b716d5bdfa1b7c2db18eb1eb340c2d4ac53bac75ecffd62b291a85f72e",
1233
+ "size_bytes": 4757
1609
1234
  },
1610
1235
  {
1611
1236
  "path": "src/commands/task/doc-set.command.ts",
1612
- "sha256": "fcbf411ab0fef377cd58464232e1123c6388da11bfbd9c289269f2656a13a307",
1613
- "size_bytes": 2972
1237
+ "sha256": "644994971dab12ba3b743ead93064a948d6b16d518bb20ba91e6da2430903338",
1238
+ "size_bytes": 4427
1614
1239
  },
1615
1240
  {
1616
1241
  "path": "src/commands/task/doc-show.command.ts",
@@ -1619,18 +1244,18 @@
1619
1244
  },
1620
1245
  {
1621
1246
  "path": "src/commands/task/doc-template.ts",
1622
- "sha256": "d51114948976c1a6d3c474a8d49c71b42ba1223e2a55e00dd8d41b4a40c78857",
1623
- "size_bytes": 4637
1247
+ "sha256": "f7153403923ac0fbf0274bff7519cf0674de9018e7ad820446775b5f7cf0aad3",
1248
+ "size_bytes": 4370
1624
1249
  },
1625
1250
  {
1626
1251
  "path": "src/commands/task/doc.command.ts",
1627
- "sha256": "7631ff85e49db9c4175b0d996e135ce4c56e2c1f31278744ca5bcde4c88e4b8a",
1628
- "size_bytes": 1181
1252
+ "sha256": "ae99b08612276e18aa40ea3ed2931765ddbd99625cb28c06543c33cf2a15af26",
1253
+ "size_bytes": 1126
1629
1254
  },
1630
1255
  {
1631
1256
  "path": "src/commands/task/doc.ts",
1632
- "sha256": "17c7f63be07b3997e77451315e0c9d5d426aaeec4b9320b0e2c0317069afebf5",
1633
- "size_bytes": 8525
1257
+ "sha256": "0b39c9e7659d8e65db770917d61685554497d43c74449d95801f884a0edb52bd",
1258
+ "size_bytes": 10673
1634
1259
  },
1635
1260
  {
1636
1261
  "path": "src/commands/task/export.command.ts",
@@ -1642,20 +1267,10 @@
1642
1267
  "sha256": "1083c3a4b33b5b20a4e3cb3659fb036e5875f8cd0778cf1ef841e7efa79c7c3e",
1643
1268
  "size_bytes": 1229
1644
1269
  },
1645
- {
1646
- "path": "src/commands/task/export.unit.test.ts",
1647
- "sha256": "861656d40ace849513d5d4ee3f859edbf3ff2f049211c2453d3f3f0e590c3091",
1648
- "size_bytes": 2729
1649
- },
1650
1270
  {
1651
1271
  "path": "src/commands/task/finish.ts",
1652
- "sha256": "946d09b225659ce3b14321748a02fb6efe60263ee85a2ac1611778373aa4c587",
1653
- "size_bytes": 16076
1654
- },
1655
- {
1656
- "path": "src/commands/task/finish.unit.test.ts",
1657
- "sha256": "a09144e1e2ba31614203280ffc979e01be78af29f9ffbfc4d333217ac9616478",
1658
- "size_bytes": 30822
1272
+ "sha256": "a74b96808e9e0fffa2fa7b38f35ce2e1e5b9bf107c86cb4a55c1a5ae9f3d82f2",
1273
+ "size_bytes": 18702
1659
1274
  },
1660
1275
  {
1661
1276
  "path": "src/commands/task/index.ts",
@@ -1697,15 +1312,10 @@
1697
1312
  "sha256": "bd333d50b719bd53b1b87f3c5f8b95ab22ce09bf869263dcf510ae92d3ad9b1b",
1698
1313
  "size_bytes": 2595
1699
1314
  },
1700
- {
1701
- "path": "src/commands/task/migrate-doc.test.ts",
1702
- "sha256": "41cbc75077261ecb891c22bc8ad31b6d1dee7d039c4a1b32703c1bb766a0866c",
1703
- "size_bytes": 14614
1704
- },
1705
1315
  {
1706
1316
  "path": "src/commands/task/migrate-doc.ts",
1707
- "sha256": "74217cbbf2073bc4be293d3ddab2e1dc0f6a6c8998fd8f0805b568781bf0a00e",
1708
- "size_bytes": 12115
1317
+ "sha256": "6ceed2be7b2c41b141b04ede8f69d26fc983315b353a813e44ec07fb5480bc5c",
1318
+ "size_bytes": 15098
1709
1319
  },
1710
1320
  {
1711
1321
  "path": "src/commands/task/migrate.command.ts",
@@ -1729,8 +1339,8 @@
1729
1339
  },
1730
1340
  {
1731
1341
  "path": "src/commands/task/new.ts",
1732
- "sha256": "b11b88d4edc8b8bd7cbcbf91dd35b32d3c4e8b78ac474e879dd675cfb6dc8870",
1733
- "size_bytes": 5079
1342
+ "sha256": "9e5ab12a68fff39b9c7bbe1eba082e7c4214fa059cc494a6cd31dbbd52597c3f",
1343
+ "size_bytes": 5177
1734
1344
  },
1735
1345
  {
1736
1346
  "path": "src/commands/task/next.command.ts",
@@ -1774,18 +1384,18 @@
1774
1384
  },
1775
1385
  {
1776
1386
  "path": "src/commands/task/plan-set.command.ts",
1777
- "sha256": "99351c97cbfc05d0a4258538fc11bb0b06e6ad03b600c1831287a2928759f04b",
1778
- "size_bytes": 2769
1387
+ "sha256": "087dd132c19b38f76e9727d3a3139434ecd7f89b0cb62a88203639cffe13a7d3",
1388
+ "size_bytes": 2841
1779
1389
  },
1780
1390
  {
1781
- "path": "src/commands/task/plan.ts",
1782
- "sha256": "71ac84e49316b2a97bc8f4a20100bb89b3a4427e95b14330656fad2942ae6e65",
1783
- "size_bytes": 10120
1391
+ "path": "src/commands/task/plan.command.ts",
1392
+ "sha256": "72c5d5bdd88f88eb0aeda41d5fd3ed072f37a369d7d25b15604b142a619675b9",
1393
+ "size_bytes": 1667
1784
1394
  },
1785
1395
  {
1786
- "path": "src/commands/task/plan.unit.test.ts",
1787
- "sha256": "d167667cadb52dac073d11f645b2ffe3c7219ce600f6cd841b4baa47d019b32c",
1788
- "size_bytes": 10855
1396
+ "path": "src/commands/task/plan.ts",
1397
+ "sha256": "86ad7697a46dfc429ddbe66815dc6d814f104a14376d70dba552301eb40831e3",
1398
+ "size_bytes": 13487
1789
1399
  },
1790
1400
  {
1791
1401
  "path": "src/commands/task/ready.ts",
@@ -1839,38 +1449,28 @@
1839
1449
  },
1840
1450
  {
1841
1451
  "path": "src/commands/task/set-status.command.ts",
1842
- "sha256": "41fdfee18b889cf1ff2ea1775ecc5d6e42ac3832c7a8e1216d5b88b7415ee98b",
1843
- "size_bytes": 7449
1452
+ "sha256": "a6850c6de589393b52f43c622d43f05056c0ffd569a0d04183386dc042c8c276",
1453
+ "size_bytes": 7493
1844
1454
  },
1845
1455
  {
1846
1456
  "path": "src/commands/task/set-status.ts",
1847
- "sha256": "1c93a5000bd3bdbcdf3395463535610658bc3f36f52a3885b2873d7ed839ab7d",
1848
- "size_bytes": 6472
1457
+ "sha256": "c7605fc977664eeb6c00564ae28415cce9f02b9cfa002ba402c067cbcba6a74d",
1458
+ "size_bytes": 9805
1849
1459
  },
1850
1460
  {
1851
1461
  "path": "src/commands/task/shared.ts",
1852
- "sha256": "2d98ea88e454c63e5319cf747453a72446ea4bc2d55277c1cc5b11a2c0de1cff",
1853
- "size_bytes": 1472
1854
- },
1855
- {
1856
- "path": "src/commands/task/shared.unit.test.ts",
1857
- "sha256": "474c4a38098795a414f89085cb35142798c2c00183c32854d6f73591d2d55770",
1858
- "size_bytes": 16961
1859
- },
1860
- {
1861
- "path": "src/commands/task/shared.verify-steps.test.ts",
1862
- "sha256": "4212d5a8776bb9345a9eb5ed1825d8c42fae812bf37f2696a60572c9b9686b2a",
1863
- "size_bytes": 971
1462
+ "sha256": "f3530dcb9b9477d6e47f8cc5054e6af76d374c2d7d02d2a1c3677f9c0f306ab0",
1463
+ "size_bytes": 1569
1864
1464
  },
1865
1465
  {
1866
1466
  "path": "src/commands/task/shared/dependencies.ts",
1867
- "sha256": "2cb09271d6d081f337a035239063caae24378f7e8b2b48fa28b7c2d4ff943e6f",
1868
- "size_bytes": 5145
1467
+ "sha256": "53ecdb095a6da31c8767922d87d3bed5a255ab2fb3de5405fb8df2615c44f333",
1468
+ "size_bytes": 5481
1869
1469
  },
1870
1470
  {
1871
1471
  "path": "src/commands/task/shared/docs.ts",
1872
- "sha256": "308839199b4db5cd36c3ce598bf08579db5c54bb5d2de281d9878ba110cabe96",
1873
- "size_bytes": 4869
1472
+ "sha256": "e313df8a85e23e2376df69c642abc8812a6705f6927a801222c7fd35a388d1db",
1473
+ "size_bytes": 5198
1874
1474
  },
1875
1475
  {
1876
1476
  "path": "src/commands/task/shared/listing.ts",
@@ -1884,8 +1484,8 @@
1884
1484
  },
1885
1485
  {
1886
1486
  "path": "src/commands/task/shared/transitions.ts",
1887
- "sha256": "ea987d8bb1e1a8e479825f1435e8e6ccb49c697368b606649680942e2ba56c84",
1888
- "size_bytes": 7393
1487
+ "sha256": "7225829b9001a3f9ea6e934b03b369effe0dc1c33d1c442f417c63aec927b0fe",
1488
+ "size_bytes": 7617
1889
1489
  },
1890
1490
  {
1891
1491
  "path": "src/commands/task/show.command.ts",
@@ -1919,8 +1519,13 @@
1919
1519
  },
1920
1520
  {
1921
1521
  "path": "src/commands/task/start.ts",
1922
- "sha256": "9290317febcc31325cf70aa6f8dbefa245ecc3219fed7b2df58186255ad460ee",
1923
- "size_bytes": 8393
1522
+ "sha256": "3bc4ad8e79eff8eeaaaacc01ff82a2e4423ec0afcf389290cea3668cfc4bca53",
1523
+ "size_bytes": 9411
1524
+ },
1525
+ {
1526
+ "path": "src/commands/task/task.command.ts",
1527
+ "sha256": "29aa5f17f7834aa52ace8557970e82057a48a42a892d7fc0e8b6573a588f583e",
1528
+ "size_bytes": 2410
1924
1529
  },
1925
1530
  {
1926
1531
  "path": "src/commands/task/update.command.ts",
@@ -1933,24 +1538,24 @@
1933
1538
  "size_bytes": 3877
1934
1539
  },
1935
1540
  {
1936
- "path": "src/commands/task/verify-ok.command.ts",
1937
- "sha256": "e5fd75db7db2e02c4b5218a2cdba0963d6da804adeaf47ceaee51e684a0f59d9",
1938
- "size_bytes": 3061
1541
+ "path": "src/commands/task/verify-command-shared.ts",
1542
+ "sha256": "dd91fd96f0aa37913460927b1c6708c69e1d0af218ef95ca478d4a20db674966",
1543
+ "size_bytes": 2163
1939
1544
  },
1940
1545
  {
1941
- "path": "src/commands/task/verify-record.ts",
1942
- "sha256": "daf5f5f1480c3348aabcc175bc29f2f0b8e9ef2800e19797ff7301d66cfa0eff",
1943
- "size_bytes": 9757
1546
+ "path": "src/commands/task/verify-ok.command.ts",
1547
+ "sha256": "288a10e5103a1235360afb76806ceef21b38e81e99b1c11286dcc111cabea7b6",
1548
+ "size_bytes": 1803
1944
1549
  },
1945
1550
  {
1946
- "path": "src/commands/task/verify-record.unit.test.ts",
1947
- "sha256": "61f160bacb763afe184f5a2d24d7b12a70ac9bdbd58293a07a935145e85eceae",
1948
- "size_bytes": 12962
1551
+ "path": "src/commands/task/verify-record.ts",
1552
+ "sha256": "3b345b0d18c5472a97e44a0ae497952d777734f0bc162f67b5472aa4fb74e70c",
1553
+ "size_bytes": 10759
1949
1554
  },
1950
1555
  {
1951
1556
  "path": "src/commands/task/verify-rework.command.ts",
1952
- "sha256": "21361e8e0996e61c8583235117875e9886354257f12af5dcebf36951d26af43b",
1953
- "size_bytes": 3139
1557
+ "sha256": "ef41aa1c473f8f89ca1e41367b22c345b778b37cce8e8399991f61584fec5767",
1558
+ "size_bytes": 1881
1954
1559
  },
1955
1560
  {
1956
1561
  "path": "src/commands/task/verify-show.command.ts",
@@ -1962,70 +1567,20 @@
1962
1567
  "sha256": "2e602cf30c265dd7b40929d6d8ccbdc23dda12aaf4ce0d8b6d46f5d6fcc36d46",
1963
1568
  "size_bytes": 1085
1964
1569
  },
1965
- {
1966
- "path": "src/commands/task/warn-owner.unit.test.ts",
1967
- "sha256": "e1b2b539883978a5e035cbef56f2298f5d10447c8bafb9fa95b740b4f818a7f8",
1968
- "size_bytes": 3044
1969
- },
1970
- {
1971
- "path": "src/commands/upgrade.agent-mode.test.ts",
1972
- "sha256": "4ed7b71501ba6aa68c6676d172f9d9c9bc3ceade2a9ec9c3f877181d716e6751",
1973
- "size_bytes": 4699
1974
- },
1975
- {
1976
- "path": "src/commands/upgrade.cleanup.test.ts",
1977
- "sha256": "5fff66f62c49e8de85229c8565e173f945622c3ceac5b2fe8ad6c62becf2164b",
1978
- "size_bytes": 2640
1979
- },
1980
1570
  {
1981
1571
  "path": "src/commands/upgrade.command.ts",
1982
- "sha256": "d5808a2a39ddcde9ced4e835ab0c20280b6195a2db323cddd68de22d702c6c5b",
1983
- "size_bytes": 5762
1984
- },
1985
- {
1986
- "path": "src/commands/upgrade.json-merge.stability.test.ts",
1987
- "sha256": "f4cb3c324c862b83f2406efc15338dea14c1fca3888aadf9418a4b79445dad65",
1988
- "size_bytes": 2282
1989
- },
1990
- {
1991
- "path": "src/commands/upgrade.merge.test.ts",
1992
- "sha256": "98311dc99a5a191290b2334ff3112b73638b360ef1597905c435bbfddd92c8f6",
1993
- "size_bytes": 15739
1994
- },
1995
- {
1996
- "path": "src/commands/upgrade.release-assets.unit.test.ts",
1997
- "sha256": "7d4e7a3b26b872699327c034ce2d398f26635ebc06909b6f5e9cf33c30025ae6",
1998
- "size_bytes": 1354
1999
- },
2000
- {
2001
- "path": "src/commands/upgrade.safety.test.ts",
2002
- "sha256": "9d45b601e6a663eba4d1aefd7ba0c35a54b86210ac55ff3b8336a6789468dc1c",
2003
- "size_bytes": 8941
2004
- },
2005
- {
2006
- "path": "src/commands/upgrade.spec-parse.test.ts",
2007
- "sha256": "37df433d473d35b9f377b0ab57209abc0a09e79b5939d3be12a5caffc3fe2ff0",
2008
- "size_bytes": 2569
2009
- },
2010
- {
2011
- "path": "src/commands/upgrade.tarball-url.unit.test.ts",
2012
- "sha256": "925a18c5c0fed846b085cf2fce11c658f70ab4015448538b32e10aee08dccca9",
2013
- "size_bytes": 1214
1572
+ "sha256": "ea391847a92e69bf0cfa6022162285ecd933fda5de83425df7db02eefc615aab",
1573
+ "size_bytes": 6642
2014
1574
  },
2015
1575
  {
2016
1576
  "path": "src/commands/upgrade.ts",
2017
- "sha256": "322279fc7b791d8bd9aca1fbc350af5cb516f326e00f32d9e8547da42f2f0ecb",
2018
- "size_bytes": 28709
2019
- },
2020
- {
2021
- "path": "src/commands/upgrade.unit.test.ts",
2022
- "sha256": "f21d0d00b707a09c30f12185e809cd558918d845ef0203785c2324b20f3fb144",
2023
- "size_bytes": 952
1577
+ "sha256": "fbc539aa740dc13758ac2e7fbaea566b2410284e5535303ee0d727d62d67bc02",
1578
+ "size_bytes": 30275
2024
1579
  },
2025
1580
  {
2026
1581
  "path": "src/commands/upgrade/apply.ts",
2027
- "sha256": "59d85cd414e512745da15ef9a1b5c02ace194f8d1611dbfaf6363d2623050fe8",
2028
- "size_bytes": 8870
1582
+ "sha256": "1016786991b700e193b7792f9f6bf15a8447267bb26c1084c9c03f856df5c06b",
1583
+ "size_bytes": 9892
2029
1584
  },
2030
1585
  {
2031
1586
  "path": "src/commands/upgrade/report.ts",
@@ -2054,8 +1609,8 @@
2054
1609
  },
2055
1610
  {
2056
1611
  "path": "src/commands/verify.spec.ts",
2057
- "sha256": "8ba047e50704ce2d38b08eb6d157084160d58497d2f26d4a2b4f49c521ac2fbd",
2058
- "size_bytes": 3075
1612
+ "sha256": "b7f379e5b2c7e818e97c9a195542d6040ab9b3796485f86c36542dbb43d21b55",
1613
+ "size_bytes": 2848
2059
1614
  },
2060
1615
  {
2061
1616
  "path": "src/commands/workflow-build.command.ts",
@@ -2077,31 +1632,16 @@
2077
1632
  "sha256": "49cb076a793bfe1f688e3c275df63b38cd02bcc70fac5fea434b58bd4884b6c5",
2078
1633
  "size_bytes": 1467
2079
1634
  },
2080
- {
2081
- "path": "src/commands/workflow.test.ts",
2082
- "sha256": "2fb6ebcec12cf238cbb38c659b237b141503825d57f6cf5f56594a94c583cef7",
2083
- "size_bytes": 49380
2084
- },
2085
1635
  {
2086
1636
  "path": "src/commands/workflow.ts",
2087
1637
  "sha256": "2ca18edef6c48dddfd82cc586c00738db070efabea02ca79a97474d061c3b588",
2088
1638
  "size_bytes": 1145
2089
1639
  },
2090
- {
2091
- "path": "src/harness/dynamic-tool-contract.test.ts",
2092
- "sha256": "46d4bc4cddb95d9526a033e3766f632af75ee4b82de718de9d667bc111f2be1b",
2093
- "size_bytes": 1203
2094
- },
2095
1640
  {
2096
1641
  "path": "src/harness/dynamic-tool-contract.ts",
2097
1642
  "sha256": "13e182778153d45c86d5ee4de6b1061396e3a46f900d0493fd48837a43fc644d",
2098
1643
  "size_bytes": 3164
2099
1644
  },
2100
- {
2101
- "path": "src/harness/hooks-lifecycle.test.ts",
2102
- "sha256": "220bc0ce486be88f0e4ebddbc73887eb12342663bcb5d8dab09892a3c999d81b",
2103
- "size_bytes": 1508
2104
- },
2105
1645
  {
2106
1646
  "path": "src/harness/hooks-lifecycle.ts",
2107
1647
  "sha256": "4f6c77664ac78d012265ce5d62d86491c9725fd87556b5509f131eda3d0d41e2",
@@ -2112,71 +1652,36 @@
2112
1652
  "sha256": "41c333bf5842f91b25cf947b5a80ef341924ad7cf20c60fccbb6ebd4510c61e4",
2113
1653
  "size_bytes": 295
2114
1654
  },
2115
- {
2116
- "path": "src/harness/reconcile.test.ts",
2117
- "sha256": "5ff7d8ccd27476565750473d2263518f5fb4fb27169d0906292896c11f16ec3e",
2118
- "size_bytes": 1452
2119
- },
2120
1655
  {
2121
1656
  "path": "src/harness/reconcile.ts",
2122
1657
  "sha256": "ed0ceb439d7df7d9465726de112730841b30ae7cd94d02baeddb0245c99869e1",
2123
1658
  "size_bytes": 2652
2124
1659
  },
2125
- {
2126
- "path": "src/harness/retry-policy.test.ts",
2127
- "sha256": "39235b1b7c11d99de1cf36f0570c7cc9cdff35219a0a5f9abcdafc5893f662b7",
2128
- "size_bytes": 1322
2129
- },
2130
1660
  {
2131
1661
  "path": "src/harness/retry-policy.ts",
2132
1662
  "sha256": "d5d8454dfe2b65dc93c7a7478d46588264f94c472fa35a218760a6f6fb07fc0c",
2133
1663
  "size_bytes": 1981
2134
1664
  },
2135
- {
2136
- "path": "src/harness/scheduler.test.ts",
2137
- "sha256": "ff9e4c669248b75c03fdc1d42f4cf2318ff442ce7b69ef39a676299dff16a74b",
2138
- "size_bytes": 1144
2139
- },
2140
1665
  {
2141
1666
  "path": "src/harness/scheduler.ts",
2142
1667
  "sha256": "5a247018db5ffae86ea14902359f0677e3fe19c2fcd0fe929289af5fdc7e2390",
2143
1668
  "size_bytes": 2511
2144
1669
  },
2145
- {
2146
- "path": "src/harness/state-machine.test.ts",
2147
- "sha256": "49141462028423a4e314e772e8a6deab71679072ff315e738d4a639c99b04204",
2148
- "size_bytes": 630
2149
- },
2150
1670
  {
2151
1671
  "path": "src/harness/state-machine.ts",
2152
1672
  "sha256": "fd00cb3affb448cf4b661c035482c35ecd3fd8cfea3e8a7b03700e2732d91c68",
2153
1673
  "size_bytes": 2590
2154
1674
  },
2155
- {
2156
- "path": "src/harness/token-accounting.test.ts",
2157
- "sha256": "20614212c37057855aa4577e8330a65ebf344d5651348b728c523935f5df321c",
2158
- "size_bytes": 1386
2159
- },
2160
1675
  {
2161
1676
  "path": "src/harness/token-accounting.ts",
2162
1677
  "sha256": "d36e57c555e86b799d5c8cc8cdb42576b612fd5eb328e99543198d512ee0ec09",
2163
1678
  "size_bytes": 3090
2164
1679
  },
2165
- {
2166
- "path": "src/harness/workspace-safety.test.ts",
2167
- "sha256": "2f7a7f0d21d6ead2df089751d2c4d71485b8bbf6fe847efb95e2fd70b011474f",
2168
- "size_bytes": 1011
2169
- },
2170
1680
  {
2171
1681
  "path": "src/harness/workspace-safety.ts",
2172
1682
  "sha256": "60f31df9acc571aff85d46cf551597f690b60574efbd62b0148f6f6f7d5e00ad",
2173
1683
  "size_bytes": 2207
2174
1684
  },
2175
- {
2176
- "path": "src/meta/release.test.ts",
2177
- "sha256": "66eb91364b04585b74321f0a15c5ace5adc069c2779505ae3f207e0894a5f3d4",
2178
- "size_bytes": 2911
2179
- },
2180
1685
  {
2181
1686
  "path": "src/meta/release.ts",
2182
1687
  "sha256": "1a8f3ef8fa09873f316024d97f9fbed20d4eeb3b9856b87a4a5c88c1ae977a72",
@@ -2187,21 +1692,11 @@
2187
1692
  "sha256": "17d56dd9ea8c15cca8f8bb1b6ddcaff3dd7b075629b936ad211a75c6767ff2b7",
2188
1693
  "size_bytes": 546
2189
1694
  },
2190
- {
2191
- "path": "src/policy/engine.test.ts",
2192
- "sha256": "61f9a0c520d1cba752b10d19b3b49728b5aaffd4b6c6c5dc9a28d6a8edfc87c2",
2193
- "size_bytes": 894
2194
- },
2195
1695
  {
2196
1696
  "path": "src/policy/engine.ts",
2197
1697
  "sha256": "99e328687a792c0283b66449a90b27ec1f4a2c1b1947be2d7bbbfd518dc3c9e5",
2198
1698
  "size_bytes": 1791
2199
1699
  },
2200
- {
2201
- "path": "src/policy/evaluate.test.ts",
2202
- "sha256": "338085b8a8341d2c14fb8e4c1d342fd3e1c2b0bde2c3ed6a18694244b6b0093d",
2203
- "size_bytes": 2875
2204
- },
2205
1700
  {
2206
1701
  "path": "src/policy/evaluate.ts",
2207
1702
  "sha256": "64c1ff9750b4d68fa757da1cf9a4078b6ef95ac4f15a74d2271670d2e021728f",
@@ -2214,8 +1709,8 @@
2214
1709
  },
2215
1710
  {
2216
1711
  "path": "src/policy/rules/allowlist.ts",
2217
- "sha256": "cb507f8b790052274944eeda839d04de1ecc43d120cf5c14ae6d79e73d175358",
2218
- "size_bytes": 1510
1712
+ "sha256": "55a57008de6055af2e470b5c8008cb5f67dded167fc6de1d02d86f04454a60df",
1713
+ "size_bytes": 2096
2219
1714
  },
2220
1715
  {
2221
1716
  "path": "src/policy/rules/branch-pr-base.ts",
@@ -2234,8 +1729,8 @@
2234
1729
  },
2235
1730
  {
2236
1731
  "path": "src/policy/rules/protected-paths.ts",
2237
- "sha256": "f35367bae533168354678149f8595d014e4000daa02a3ddb162380e0c40e23f0",
2238
- "size_bytes": 2312
1732
+ "sha256": "ca1d0df920de78fe0d0caa3b4dcf14a6a60799d2cfd5b0a6bb6b5cd1869cd7cc",
1733
+ "size_bytes": 2405
2239
1734
  },
2240
1735
  {
2241
1736
  "path": "src/policy/types.ts",
@@ -2259,8 +1754,8 @@
2259
1754
  },
2260
1755
  {
2261
1756
  "path": "src/ports/task-backend-port.ts",
2262
- "sha256": "ab0830696cd8b97bc9daedbbd63650a668ee615597b8dc2628a69cd8feda7fd9",
2263
- "size_bytes": 283
1757
+ "sha256": "16fcc27c65f7e06cdc746a7937f5174b92a2a7d9d09d01d8f2ff8fdf255a1c4f",
1758
+ "size_bytes": 326
2264
1759
  },
2265
1760
  {
2266
1761
  "path": "src/recipes/bundled-recipes.ts",
@@ -2269,34 +1764,19 @@
2269
1764
  },
2270
1765
  {
2271
1766
  "path": "src/shared/agent-emoji.ts",
2272
- "sha256": "c9be88732c1cec2b9ce55c071c4c24a01bcfc007f54f62f24aa27b6bcf1ab47c",
2273
- "size_bytes": 1843
2274
- },
2275
- {
2276
- "path": "src/shared/agent-emoji.unit.test.ts",
2277
- "sha256": "21a5625ed71d6a717514ba1d813f9aa27d968e9d4b87449d89832bac942af300",
2278
- "size_bytes": 1243
1767
+ "sha256": "01ab59eec65554de5443813efb2b81e636b7e88f1f8fa09979970b67478a1058",
1768
+ "size_bytes": 1842
2279
1769
  },
2280
1770
  {
2281
1771
  "path": "src/shared/allow-prefix-policy.ts",
2282
1772
  "sha256": "a2dc47f81f710dfdaed924a94ae6dd91e0c541dbb185d23f6677514c8ac5a71d",
2283
1773
  "size_bytes": 438
2284
1774
  },
2285
- {
2286
- "path": "src/shared/comment-format.test.ts",
2287
- "sha256": "6938795c88f5bd8d26d2a1b52369f15c842c80bb5d17ede7e81dc3498eb8c8f1",
2288
- "size_bytes": 3840
2289
- },
2290
1775
  {
2291
1776
  "path": "src/shared/comment-format.ts",
2292
1777
  "sha256": "9531486df3a3d5b2aed8039502204e8f040bfecf444d222031ef8d3ad956413d",
2293
1778
  "size_bytes": 2894
2294
1779
  },
2295
- {
2296
- "path": "src/shared/diagnostics.test.ts",
2297
- "sha256": "17bc1b9becd998f8b750746d70e898b016b3e3e8e75eb596c89c92795fb042bc",
2298
- "size_bytes": 1899
2299
- },
2300
1780
  {
2301
1781
  "path": "src/shared/diagnostics.ts",
2302
1782
  "sha256": "726b9df7698686302bbeff00929ef232083287c7a60e639548c7462644bf4c70",
@@ -2312,21 +1792,11 @@
2312
1792
  "sha256": "c40eef3d5d3ce496f540ca990a2d44b8b849b278d9774bebf800cff947ee8a46",
2313
1793
  "size_bytes": 1455
2314
1794
  },
2315
- {
2316
- "path": "src/shared/errors.test.ts",
2317
- "sha256": "1566200da7fb7d161d77cd3aeae583bafa8495fda63872c389b776f7a5b425e3",
2318
- "size_bytes": 2599
2319
- },
2320
1795
  {
2321
1796
  "path": "src/shared/errors.ts",
2322
1797
  "sha256": "b7837d9f294b9ed363e75213db573c26545fb623a3eccad66fdf51a84f9272c2",
2323
1798
  "size_bytes": 1310
2324
1799
  },
2325
- {
2326
- "path": "src/shared/git-log.test.ts",
2327
- "sha256": "f73bcf710f3a61bb14ab11307f623d3a65c101bf938f29c7fe90b1f66cce2c6e",
2328
- "size_bytes": 616
2329
- },
2330
1800
  {
2331
1801
  "path": "src/shared/git-log.ts",
2332
1802
  "sha256": "dd6321a9ea88a319a902f4bb4b8cc09957f4713f3647865faf9b558e7aeac608",
@@ -2349,29 +1819,19 @@
2349
1819
  },
2350
1820
  {
2351
1821
  "path": "src/shared/protected-paths.ts",
2352
- "sha256": "a05f28aca542584326bc2e3edb38b4edc66214e0558bdfe21c5def390ff94317",
2353
- "size_bytes": 1986
2354
- },
2355
- {
2356
- "path": "src/shared/repo-cli-version.test.ts",
2357
- "sha256": "8141de04a7ab349704bf3a5e47cefd0b11f28acc04997c4abd2d53e74d2e3237",
2358
- "size_bytes": 3352
1822
+ "sha256": "6b2f27bf7910ba28865099a14382e7b0aaeb146151296061395d39eed5385200",
1823
+ "size_bytes": 4006
2359
1824
  },
2360
1825
  {
2361
1826
  "path": "src/shared/repo-cli-version.ts",
2362
- "sha256": "de0bf6b0d2452ea7b80c0006de6cce88e99bad32c22f63768f61d44a8fbb76a7",
2363
- "size_bytes": 2803
1827
+ "sha256": "90cab2bdd6de5780c413db8b71fd4c6ea0da0e71a65172376cad86fc3994afc5",
1828
+ "size_bytes": 3252
2364
1829
  },
2365
1830
  {
2366
1831
  "path": "src/shared/runtime-artifacts.ts",
2367
1832
  "sha256": "36ec5cbb157f3b1ec00467b77c351ee6727309ca6dd60feefbcc6b46d0805cd8",
2368
1833
  "size_bytes": 617
2369
1834
  },
2370
- {
2371
- "path": "src/shared/runtime-source.test.ts",
2372
- "sha256": "b0ed47970eadf435b05faaa6e899527ae7d5df494c35b49c82d999b91451a105",
2373
- "size_bytes": 4652
2374
- },
2375
1835
  {
2376
1836
  "path": "src/shared/runtime-source.ts",
2377
1837
  "sha256": "8fe0cd70148a835a17c44cc8cb6f8d4f2410c4f0edc7eb52f00b2b62142cfd41",
@@ -2392,11 +1852,6 @@
2392
1852
  "sha256": "3d61fb748def0a909cf933bc14d2c8e2b4c3365b92a032d6ddb4fbdf387e217d",
2393
1853
  "size_bytes": 3939
2394
1854
  },
2395
- {
2396
- "path": "src/shared/write-if-changed.test.ts",
2397
- "sha256": "a6673567b64c987c19fcf00497f0635ffdfb1dd22a951426e430a878a618b49a",
2398
- "size_bytes": 1880
2399
- },
2400
1855
  {
2401
1856
  "path": "src/shared/write-if-changed.ts",
2402
1857
  "sha256": "9e4191b19d885c1384f3d8644c13162836864c0391233ab06f54d845eff44ecd",
@@ -2417,31 +1872,16 @@
2417
1872
  "sha256": "9b702430d93d0532c6380381a384a3aa96648dc0d19c56663b8fbad76d222bab",
2418
1873
  "size_bytes": 814
2419
1874
  },
2420
- {
2421
- "path": "src/workflow-runtime/build.test.ts",
2422
- "sha256": "369debeea9358692efb0f15ec58fd1e873e11bc43d0787bed9292645aa9f5959",
2423
- "size_bytes": 2067
2424
- },
2425
1875
  {
2426
1876
  "path": "src/workflow-runtime/build.ts",
2427
1877
  "sha256": "8c945ff1f399d60c31cad7ba04ebe45fe3364bb4e5f6a7d8c3a1a3af23852d43",
2428
1878
  "size_bytes": 4720
2429
1879
  },
2430
- {
2431
- "path": "src/workflow-runtime/enforcement.test.ts",
2432
- "sha256": "b64925e1ab0c217abc6db20826de3b81ab6ee139e1c765c24b65458ae785ea5f",
2433
- "size_bytes": 884
2434
- },
2435
1880
  {
2436
1881
  "path": "src/workflow-runtime/enforcement.ts",
2437
1882
  "sha256": "6096333e9075b3a9dec92f0923bd3050853c46f8edb7db1fe67623f15978651b",
2438
1883
  "size_bytes": 456
2439
1884
  },
2440
- {
2441
- "path": "src/workflow-runtime/file-ops.test.ts",
2442
- "sha256": "723e037a60a2bb2bfc035c7fd9e19fc307eff9031786887466fa06179e9d089b",
2443
- "size_bytes": 3134
2444
- },
2445
1885
  {
2446
1886
  "path": "src/workflow-runtime/file-ops.ts",
2447
1887
  "sha256": "001dc8bb2354572286a37e2067f66c02cc7606b26a9191082066af84c92d0425",
@@ -2472,11 +1912,6 @@
2472
1912
  "sha256": "bf2536a2104c2aeb89a75d91cf22a4dca698bb7c0959ede0919c8444b0c9037d",
2473
1913
  "size_bytes": 480
2474
1914
  },
2475
- {
2476
- "path": "src/workflow-runtime/template.test.ts",
2477
- "sha256": "ca3cfd0ede366cfbd991642294fdccec51c317179e08d135c01b782080d7be6c",
2478
- "size_bytes": 1148
2479
- },
2480
1915
  {
2481
1916
  "path": "src/workflow-runtime/template.ts",
2482
1917
  "sha256": "91e1b3cd74aac6955a874b4e166432d7d44da97cc2f99d43d43c1c96a8947f3c",
@@ -2487,11 +1922,6 @@
2487
1922
  "sha256": "e7cd434c126519639f969262a124146835d8c9b53f6413a8815a2526eb0d5c10",
2488
1923
  "size_bytes": 2245
2489
1924
  },
2490
- {
2491
- "path": "src/workflow-runtime/validate.test.ts",
2492
- "sha256": "e15c80ef46278d334f8e331c4513b874a61d7c1165c3b358ed455e0ae0b4156d",
2493
- "size_bytes": 1807
2494
- },
2495
1925
  {
2496
1926
  "path": "src/workflow-runtime/validate.ts",
2497
1927
  "sha256": "9fbea4cd05bca02e3978fc2217676a4688ef0a73bfe4efdacc4fd05dda290201",