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.
- package/assets/RUNNER.md +1 -1
- package/assets/agents/ORCHESTRATOR.json +1 -1
- package/assets/codex-plugin/assets/header.png +0 -0
- package/assets/codex-plugin/assets/icon.svg +1 -0
- package/assets/codex-plugin/assets/logo.svg +1 -0
- package/assets/codex-plugin/skills/agentplane/SKILL.md +35 -0
- package/assets/policy/governance.md +4 -2
- package/assets/policy/incidents.md +3 -20
- package/assets/policy/workflow.release.md +5 -2
- package/dist/.build-manifest.json +203 -113
- package/dist/cli/exit-codes.d.ts.map +1 -1
- package/dist/cli/exit-codes.js +1 -0
- package/dist/cli/reason-codes.d.ts +1 -1
- package/dist/cli/reason-codes.d.ts.map +1 -1
- package/dist/cli/reason-codes.js +12 -0
- package/dist/cli/run-cli/command-catalog/core.d.ts +1 -1
- package/dist/cli/run-cli/command-catalog/core.d.ts.map +1 -1
- package/dist/cli/run-cli/command-catalog/core.js +16 -0
- package/dist/cli/run-cli/command-catalog/project.d.ts +1 -1
- package/dist/cli/run-cli/command-catalog/project.d.ts.map +1 -1
- package/dist/cli/run-cli/command-catalog/project.js +21 -3
- package/dist/cli/run-cli/command-catalog.d.ts +1 -1
- package/dist/cli/run-cli/command-catalog.d.ts.map +1 -1
- package/dist/cli/run-cli/commands/codex.d.ts +14 -0
- package/dist/cli/run-cli/commands/codex.d.ts.map +1 -0
- package/dist/cli/run-cli/commands/codex.js +100 -0
- package/dist/cli/run-cli/commands/core.d.ts +1 -0
- package/dist/cli/run-cli/commands/core.d.ts.map +1 -1
- package/dist/cli/run-cli/commands/core.js +1 -0
- package/dist/cli/run-cli/commands/init/recipes.d.ts +9 -1
- package/dist/cli/run-cli/commands/init/recipes.d.ts.map +1 -1
- package/dist/cli/run-cli/commands/init/recipes.js +32 -22
- package/dist/cli/run-cli/commands/init.d.ts.map +1 -1
- package/dist/cli/run-cli/commands/init.js +26 -21
- package/dist/cli/run-cli/error-guidance.js +20 -0
- package/dist/cli/run-cli.test-helpers.d.ts.map +1 -1
- package/dist/cli/run-cli.test-helpers.js +22 -19
- package/dist/commands/codex/plugin-install.d.ts +26 -0
- package/dist/commands/codex/plugin-install.d.ts.map +1 -0
- package/dist/commands/codex/plugin-install.js +209 -0
- package/dist/commands/pr/integrate/cmd.d.ts.map +1 -1
- package/dist/commands/pr/integrate/cmd.js +81 -5
- package/dist/commands/pr/integrate/internal/prepare.d.ts.map +1 -1
- package/dist/commands/pr/integrate/internal/prepare.js +38 -7
- package/dist/commands/pr/internal/auto-commit.d.ts.map +1 -1
- package/dist/commands/pr/internal/auto-commit.js +11 -6
- package/dist/commands/pr/internal/sync.d.ts.map +1 -1
- package/dist/commands/pr/internal/sync.js +5 -1
- package/dist/commands/pr/open.d.ts.map +1 -1
- package/dist/commands/pr/open.js +46 -8
- package/dist/commands/recipes/active.command.d.ts +7 -0
- package/dist/commands/recipes/active.command.d.ts.map +1 -0
- package/dist/commands/recipes/active.command.js +12 -0
- package/dist/commands/recipes/add.command.d.ts +8 -0
- package/dist/commands/recipes/add.command.d.ts.map +1 -0
- package/dist/commands/recipes/add.command.js +33 -0
- package/dist/commands/recipes/detach.command.d.ts +7 -0
- package/dist/commands/recipes/detach.command.d.ts.map +1 -0
- package/dist/commands/recipes/detach.command.js +19 -0
- package/dist/commands/recipes/disable.command.d.ts +7 -0
- package/dist/commands/recipes/disable.command.d.ts.map +1 -0
- package/dist/commands/recipes/disable.command.js +10 -0
- package/dist/commands/recipes/enable.command.d.ts +7 -0
- package/dist/commands/recipes/enable.command.d.ts.map +1 -0
- package/dist/commands/recipes/enable.command.js +10 -0
- package/dist/commands/recipes/explain-active.command.d.ts +5 -0
- package/dist/commands/recipes/explain-active.command.d.ts.map +1 -0
- package/dist/commands/recipes/explain-active.command.js +11 -0
- package/dist/commands/recipes/explain.command.d.ts.map +1 -1
- package/dist/commands/recipes/explain.command.js +4 -2
- package/dist/commands/recipes/impl/apply.d.ts.map +1 -1
- package/dist/commands/recipes/impl/apply.js +33 -14
- package/dist/commands/recipes/impl/commands/active.d.ts +6 -0
- package/dist/commands/recipes/impl/commands/active.d.ts.map +1 -0
- package/dist/commands/recipes/impl/commands/active.js +46 -0
- package/dist/commands/recipes/impl/commands/add.d.ts +7 -0
- package/dist/commands/recipes/impl/commands/add.d.ts.map +1 -0
- package/dist/commands/recipes/impl/commands/add.js +100 -0
- package/dist/commands/recipes/impl/commands/detach.d.ts +6 -0
- package/dist/commands/recipes/impl/commands/detach.d.ts.map +1 -0
- package/dist/commands/recipes/impl/commands/detach.js +85 -0
- package/dist/commands/recipes/impl/commands/disable.d.ts +6 -0
- package/dist/commands/recipes/impl/commands/disable.d.ts.map +1 -0
- package/dist/commands/recipes/impl/commands/disable.js +21 -0
- package/dist/commands/recipes/impl/commands/enable.d.ts +6 -0
- package/dist/commands/recipes/impl/commands/enable.d.ts.map +1 -0
- package/dist/commands/recipes/impl/commands/enable.js +39 -0
- package/dist/commands/recipes/impl/commands/explain-active.d.ts +5 -0
- package/dist/commands/recipes/impl/commands/explain-active.d.ts.map +1 -0
- package/dist/commands/recipes/impl/commands/explain-active.js +20 -0
- package/dist/commands/recipes/impl/commands/explain.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/explain.js +40 -3
- package/dist/commands/recipes/impl/commands/info.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/info.js +21 -8
- package/dist/commands/recipes/impl/commands/install.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/install.js +32 -29
- package/dist/commands/recipes/impl/commands/list.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/list.js +11 -11
- package/dist/commands/recipes/impl/commands/remove.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/remove.js +5 -0
- package/dist/commands/recipes/impl/commands/update.d.ts +7 -0
- package/dist/commands/recipes/impl/commands/update.d.ts.map +1 -0
- package/dist/commands/recipes/impl/commands/update.js +93 -0
- package/dist/commands/recipes/impl/commands.d.ts +7 -0
- package/dist/commands/recipes/impl/commands.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands.js +7 -0
- package/dist/commands/recipes/impl/constants.d.ts +1 -14
- package/dist/commands/recipes/impl/constants.d.ts.map +1 -1
- package/dist/commands/recipes/impl/constants.js +1 -18
- package/dist/commands/recipes/impl/manifest.d.ts +2 -2
- package/dist/commands/recipes/impl/manifest.d.ts.map +1 -1
- package/dist/commands/recipes/impl/manifest.js +4 -226
- package/dist/commands/recipes/impl/overlay-project.d.ts +32 -0
- package/dist/commands/recipes/impl/overlay-project.d.ts.map +1 -0
- package/dist/commands/recipes/impl/overlay-project.js +282 -0
- package/dist/commands/recipes/impl/paths.d.ts +20 -2
- package/dist/commands/recipes/impl/paths.d.ts.map +1 -1
- package/dist/commands/recipes/impl/paths.js +23 -5
- package/dist/commands/recipes/impl/project-installed-recipes.d.ts +2 -4
- package/dist/commands/recipes/impl/project-installed-recipes.d.ts.map +1 -1
- package/dist/commands/recipes/impl/project-installed-recipes.js +30 -74
- package/dist/commands/recipes/impl/project-recipe-state.d.ts +18 -0
- package/dist/commands/recipes/impl/project-recipe-state.d.ts.map +1 -0
- package/dist/commands/recipes/impl/project-recipe-state.js +94 -0
- package/dist/commands/recipes/impl/project-registry.d.ts +20 -0
- package/dist/commands/recipes/impl/project-registry.d.ts.map +1 -0
- package/dist/commands/recipes/impl/project-registry.js +104 -0
- package/dist/commands/recipes/impl/resolver.d.ts.map +1 -1
- package/dist/commands/recipes/impl/resolver.js +5 -3
- package/dist/commands/recipes/impl/types.d.ts +1 -240
- package/dist/commands/recipes/impl/types.d.ts.map +1 -1
- package/dist/commands/recipes/info.command.js +2 -2
- package/dist/commands/recipes/install.spec.js +4 -4
- package/dist/commands/recipes/list.command.js +4 -4
- package/dist/commands/recipes/remove.command.js +2 -2
- package/dist/commands/recipes/update.command.d.ts +8 -0
- package/dist/commands/recipes/update.command.d.ts.map +1 -0
- package/dist/commands/recipes/update.command.js +35 -0
- package/dist/commands/recipes.d.ts +7 -4
- package/dist/commands/recipes.d.ts.map +1 -1
- package/dist/commands/recipes.js +6 -3
- package/dist/commands/recipes.test-helpers.d.ts +3 -3
- package/dist/commands/recipes.test-helpers.d.ts.map +1 -1
- package/dist/commands/recipes.test-helpers.js +105 -15
- package/dist/commands/scenario/execute.command.js +4 -4
- package/dist/commands/scenario/impl/commands.js +4 -4
- package/dist/commands/scenario/info.command.js +4 -4
- package/dist/commands/scenario/list.command.js +3 -3
- package/dist/commands/scenario/run.command.js +5 -5
- package/dist/commands/scenario/scenario.command.js +7 -7
- package/dist/commands/shared/task-handoff.d.ts +2 -1
- package/dist/commands/shared/task-handoff.d.ts.map +1 -1
- package/dist/commands/shared/task-handoff.js +15 -0
- package/dist/commands/task/handoff-show.command.d.ts.map +1 -1
- package/dist/commands/task/handoff-show.command.js +24 -0
- package/dist/runner/context/base-prompts.d.ts +2 -1
- package/dist/runner/context/base-prompts.d.ts.map +1 -1
- package/dist/runner/context/base-prompts.js +109 -13
- package/dist/runner/context/recipe-context.d.ts.map +1 -1
- package/dist/runner/context/recipe-context.js +40 -8
- package/dist/runner/types.d.ts +4 -0
- package/dist/runner/types.d.ts.map +1 -1
- package/dist/runner/usecases/task-run.d.ts.map +1 -1
- package/dist/runner/usecases/task-run.js +2 -1
- package/dist/runtime/behavior/resolve.d.ts +2 -1
- package/dist/runtime/behavior/resolve.d.ts.map +1 -1
- package/dist/runtime/behavior/resolve.js +25 -5
- package/dist/runtime/behavior/types.d.ts +1 -0
- package/dist/runtime/behavior/types.d.ts.map +1 -1
- package/dist/runtime/capabilities/recipe.d.ts +2 -1
- package/dist/runtime/capabilities/recipe.d.ts.map +1 -1
- package/dist/runtime/capabilities/recipe.js +88 -28
- package/dist/shared/errors.d.ts +1 -1
- package/dist/shared/errors.d.ts.map +1 -1
- package/dist/shared/runtime-source.d.ts.map +1 -1
- package/dist/shared/runtime-source.js +8 -3
- package/package.json +3 -2
- package/dist/cli/recipes-bundled.d.ts +0 -10
- package/dist/cli/recipes-bundled.d.ts.map +0 -1
- 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-
|
|
5
|
-
"git_head": "
|
|
6
|
-
"src_cli_mtime_ms":
|
|
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":
|
|
8
|
+
"dist_cli_mtime_ms": 1776424478147.3413,
|
|
9
9
|
"dist_index_mtime_ms": null,
|
|
10
|
-
"tsbuildinfo_mtime_ms":
|
|
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": "
|
|
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": "
|
|
298
|
-
"size_bytes":
|
|
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": "
|
|
328
|
-
"size_bytes":
|
|
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": "
|
|
338
|
-
"size_bytes":
|
|
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": "
|
|
353
|
-
"size_bytes":
|
|
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": "
|
|
363
|
-
"size_bytes":
|
|
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": "
|
|
383
|
-
"size_bytes":
|
|
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": "
|
|
418
|
-
"size_bytes":
|
|
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": "
|
|
443
|
-
"size_bytes":
|
|
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": "
|
|
483
|
-
"size_bytes":
|
|
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": "
|
|
848
|
-
"size_bytes":
|
|
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": "
|
|
888
|
-
"size_bytes":
|
|
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": "
|
|
903
|
-
"size_bytes":
|
|
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": "
|
|
933
|
-
"size_bytes":
|
|
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": "
|
|
943
|
-
"size_bytes":
|
|
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": "
|
|
963
|
-
"size_bytes":
|
|
967
|
+
"sha256": "db30218e3c74e861a8b1f3bf7308b44ac79f5741325a8fcb60b1f784e3012606",
|
|
968
|
+
"size_bytes": 19459
|
|
964
969
|
},
|
|
965
970
|
{
|
|
966
971
|
"path": "src/commands/recipes.ts",
|
|
967
|
-
"sha256": "
|
|
968
|
-
"size_bytes":
|
|
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": "
|
|
983
|
-
"size_bytes":
|
|
1017
|
+
"sha256": "f9e5be58b94b2eeafe76fadfefea98ac146b12e07f777c6e942ca3b8898cdd9a",
|
|
1018
|
+
"size_bytes": 768
|
|
984
1019
|
},
|
|
985
1020
|
{
|
|
986
1021
|
"path": "src/commands/recipes/impl/apply.ts",
|
|
987
|
-
"sha256": "
|
|
988
|
-
"size_bytes":
|
|
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": "
|
|
998
|
-
"size_bytes":
|
|
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": "
|
|
1008
|
-
"size_bytes":
|
|
1072
|
+
"sha256": "5b4b8073ad561175867ab2554897473dd2723884c219f1d053ed47c131747497",
|
|
1073
|
+
"size_bytes": 8324
|
|
1009
1074
|
},
|
|
1010
1075
|
{
|
|
1011
1076
|
"path": "src/commands/recipes/impl/commands/info.ts",
|
|
1012
|
-
"sha256": "
|
|
1013
|
-
"size_bytes":
|
|
1077
|
+
"sha256": "883072a3bc4004e9d389634e45230183b09ccbd50f6bdc121fdcc925df0f94d1",
|
|
1078
|
+
"size_bytes": 3476
|
|
1014
1079
|
},
|
|
1015
1080
|
{
|
|
1016
1081
|
"path": "src/commands/recipes/impl/commands/install.ts",
|
|
1017
|
-
"sha256": "
|
|
1018
|
-
"size_bytes":
|
|
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": "
|
|
1028
|
-
"size_bytes":
|
|
1092
|
+
"sha256": "67e3cfe976b29a4348366a364f407569eeae2c2e469445d6f68a384739127aaf",
|
|
1093
|
+
"size_bytes": 1867
|
|
1029
1094
|
},
|
|
1030
1095
|
{
|
|
1031
1096
|
"path": "src/commands/recipes/impl/commands/remove.ts",
|
|
1032
|
-
"sha256": "
|
|
1033
|
-
"size_bytes":
|
|
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": "
|
|
1038
|
-
"size_bytes":
|
|
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": "
|
|
1058
|
-
"size_bytes":
|
|
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": "
|
|
1068
|
-
"size_bytes":
|
|
1142
|
+
"sha256": "7c0e611dc49faef93458e30e2e7e77b0ec4635e60e6ddd3bc0954f92415b2037",
|
|
1143
|
+
"size_bytes": 2998
|
|
1069
1144
|
},
|
|
1070
1145
|
{
|
|
1071
1146
|
"path": "src/commands/recipes/impl/project-installed-recipes.ts",
|
|
1072
|
-
"sha256": "
|
|
1073
|
-
"size_bytes":
|
|
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": "
|
|
1083
|
-
"size_bytes":
|
|
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": "
|
|
1093
|
-
"size_bytes":
|
|
1177
|
+
"sha256": "d1ed407a7cd6eb165c496602bdf60fb2efbcf7b758d27710ad84415d6087dcd8",
|
|
1178
|
+
"size_bytes": 1443
|
|
1094
1179
|
},
|
|
1095
1180
|
{
|
|
1096
1181
|
"path": "src/commands/recipes/info.command.ts",
|
|
1097
|
-
"sha256": "
|
|
1098
|
-
"size_bytes":
|
|
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": "
|
|
1108
|
-
"size_bytes":
|
|
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": "
|
|
1118
|
-
"size_bytes":
|
|
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": "
|
|
1128
|
-
"size_bytes":
|
|
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": "
|
|
1183
|
-
"size_bytes":
|
|
1272
|
+
"sha256": "f89df359b2f26c3e01a4c28845411951afca3a9b0c4c35ed4b22a8858dc21a74",
|
|
1273
|
+
"size_bytes": 5017
|
|
1184
1274
|
},
|
|
1185
1275
|
{
|
|
1186
1276
|
"path": "src/commands/scenario/impl/commands.ts",
|
|
1187
|
-
"sha256": "
|
|
1188
|
-
"size_bytes":
|
|
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": "
|
|
1198
|
-
"size_bytes":
|
|
1287
|
+
"sha256": "01812137897e6c68d6f93d3c71ded9a4eb7b8b21d5ce5b8f285ce9f9c0851fde",
|
|
1288
|
+
"size_bytes": 1318
|
|
1199
1289
|
},
|
|
1200
1290
|
{
|
|
1201
1291
|
"path": "src/commands/scenario/list.command.ts",
|
|
1202
|
-
"sha256": "
|
|
1203
|
-
"size_bytes":
|
|
1292
|
+
"sha256": "b57a464b2ba5f35cf2242309b1be033c5d087eb090717225a67740405d4b79da",
|
|
1293
|
+
"size_bytes": 671
|
|
1204
1294
|
},
|
|
1205
1295
|
{
|
|
1206
1296
|
"path": "src/commands/scenario/run.command.ts",
|
|
1207
|
-
"sha256": "
|
|
1208
|
-
"size_bytes":
|
|
1297
|
+
"sha256": "4cb5907f8c67b4923b670411f39615d48a8db307fea3ae3a6d0abb054a9b624e",
|
|
1298
|
+
"size_bytes": 1344
|
|
1209
1299
|
},
|
|
1210
1300
|
{
|
|
1211
1301
|
"path": "src/commands/scenario/scenario.command.ts",
|
|
1212
|
-
"sha256": "
|
|
1213
|
-
"size_bytes":
|
|
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": "
|
|
1298
|
-
"size_bytes":
|
|
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": "
|
|
1463
|
-
"size_bytes":
|
|
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": "
|
|
2113
|
-
"size_bytes":
|
|
2202
|
+
"sha256": "e0cfae8c4ad9a4db2365a6cf3bd0ee3cd776228154e270a9ec9ebfdefb34f011",
|
|
2203
|
+
"size_bytes": 20299
|
|
2114
2204
|
},
|
|
2115
2205
|
{
|
|
2116
2206
|
"path": "src/runner/context/recipe-context.ts",
|
|
2117
|
-
"sha256": "
|
|
2118
|
-
"size_bytes":
|
|
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": "
|
|
2193
|
-
"size_bytes":
|
|
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": "
|
|
2228
|
-
"size_bytes":
|
|
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": "
|
|
2253
|
-
"size_bytes":
|
|
2342
|
+
"sha256": "efb29fadf88c71d008993beff2bfa6098c7558a5ad05353a4315b632fbe8d18d",
|
|
2343
|
+
"size_bytes": 3686
|
|
2254
2344
|
},
|
|
2255
2345
|
{
|
|
2256
2346
|
"path": "src/runtime/behavior/types.ts",
|
|
2257
|
-
"sha256": "
|
|
2258
|
-
"size_bytes":
|
|
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": "
|
|
2273
|
-
"size_bytes":
|
|
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": "
|
|
2418
|
-
"size_bytes":
|
|
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": "
|
|
2458
|
-
"size_bytes":
|
|
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;
|
|
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"}
|
package/dist/cli/exit-codes.js
CHANGED
|
@@ -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;
|
|
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"}
|