agentplane 0.3.11 → 0.3.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/AGENTS.md +2 -2
- package/assets/RUNNER.md +1 -1
- package/assets/agents/CODER.json +4 -0
- package/assets/agents/CREATOR.json +1 -0
- package/assets/agents/DOCS.json +2 -1
- package/assets/agents/INTEGRATOR.json +2 -1
- package/assets/agents/ORCHESTRATOR.json +3 -1
- package/assets/agents/PLANNER.json +3 -1
- package/assets/agents/REVIEWER.json +1 -0
- package/assets/agents/TESTER.json +2 -2
- package/assets/agents/UPDATER.json +1 -0
- package/assets/agents/UPGRADER.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 -19
- package/assets/policy/workflow.release.md +5 -2
- package/bin/agentplane.js +58 -3
- package/bin/stale-dist-policy.js +6 -1
- package/dist/.build-manifest.json +271 -161
- 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 +22 -1
- 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 +1 -0
- package/dist/cli/run-cli.test-helpers.d.ts.map +1 -1
- package/dist/cli/run-cli.test-helpers.js +36 -19
- package/dist/commands/branch/cleanup-merged.d.ts +1 -0
- package/dist/commands/branch/cleanup-merged.d.ts.map +1 -1
- package/dist/commands/branch/cleanup-merged.js +18 -9
- package/dist/commands/branch/work-start.d.ts.map +1 -1
- package/dist/commands/branch/work-start.js +82 -5
- 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/doctor/branch-pr.js +2 -2
- package/dist/commands/guard/impl/commands.d.ts +1 -0
- package/dist/commands/guard/impl/commands.d.ts.map +1 -1
- package/dist/commands/guard/impl/commands.js +78 -8
- package/dist/commands/hooks/index.d.ts +1 -1
- package/dist/commands/hooks/index.d.ts.map +1 -1
- package/dist/commands/hooks/index.js +48 -12
- package/dist/commands/pr/check.d.ts.map +1 -1
- package/dist/commands/pr/check.js +3 -0
- package/dist/commands/pr/integrate/cmd.d.ts.map +1 -1
- package/dist/commands/pr/integrate/cmd.js +103 -2
- package/dist/commands/pr/integrate/internal/cleanup.d.ts +1 -11
- package/dist/commands/pr/integrate/internal/cleanup.d.ts.map +1 -1
- package/dist/commands/pr/integrate/internal/cleanup.js +1 -46
- package/dist/commands/pr/integrate/internal/finalize.d.ts.map +1 -1
- package/dist/commands/pr/integrate/internal/finalize.js +3 -0
- package/dist/commands/pr/integrate/internal/github-protection.d.ts +5 -0
- package/dist/commands/pr/integrate/internal/github-protection.d.ts.map +1 -0
- package/dist/commands/pr/integrate/internal/github-protection.js +13 -0
- package/dist/commands/pr/integrate/internal/pre-integrate-bootstrap.d.ts +15 -0
- package/dist/commands/pr/integrate/internal/pre-integrate-bootstrap.d.ts.map +1 -0
- package/dist/commands/pr/integrate/internal/pre-integrate-bootstrap.js +35 -0
- package/dist/commands/pr/integrate/internal/prepare.d.ts +1 -0
- package/dist/commands/pr/integrate/internal/prepare.d.ts.map +1 -1
- package/dist/commands/pr/integrate/internal/prepare.js +46 -7
- package/dist/commands/pr/internal/auto-commit.d.ts +7 -0
- package/dist/commands/pr/internal/auto-commit.d.ts.map +1 -0
- package/dist/commands/pr/internal/auto-commit.js +69 -0
- package/dist/commands/pr/internal/freshness.d.ts +1 -0
- package/dist/commands/pr/internal/freshness.d.ts.map +1 -1
- package/dist/commands/pr/internal/freshness.js +2 -0
- package/dist/commands/pr/internal/sync.d.ts.map +1 -1
- package/dist/commands/pr/internal/sync.js +98 -27
- package/dist/commands/pr/open.d.ts.map +1 -1
- package/dist/commands/pr/open.js +52 -3
- package/dist/commands/pr/update.d.ts.map +1 -1
- package/dist/commands/pr/update.js +13 -2
- 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/release/apply.command.d.ts +3 -1
- package/dist/commands/release/apply.command.d.ts.map +1 -1
- package/dist/commands/release/apply.command.js +354 -18
- package/dist/commands/release/apply.mutation.d.ts.map +1 -1
- package/dist/commands/release/apply.mutation.js +1 -0
- package/dist/commands/release/apply.reporting.d.ts +1 -0
- package/dist/commands/release/apply.reporting.d.ts.map +1 -1
- package/dist/commands/release/apply.reporting.js +12 -8
- package/dist/commands/release/apply.types.d.ts +13 -0
- package/dist/commands/release/apply.types.d.ts.map +1 -1
- package/dist/commands/release/plan.command.d.ts.map +1 -1
- package/dist/commands/release/plan.command.js +48 -0
- 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/merged-branch-cleanup.d.ts +12 -0
- package/dist/commands/shared/merged-branch-cleanup.d.ts.map +1 -0
- package/dist/commands/shared/merged-branch-cleanup.js +46 -0
- package/dist/commands/shared/post-commit-pr-artifacts.d.ts.map +1 -1
- package/dist/commands/shared/post-commit-pr-artifacts.js +35 -0
- package/dist/commands/shared/task-backend.d.ts.map +1 -1
- package/dist/commands/shared/task-backend.js +37 -5
- 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/shared/task-local-freshness.d.ts +2 -0
- package/dist/commands/shared/task-local-freshness.d.ts.map +1 -1
- package/dist/commands/shared/task-local-freshness.js +7 -1
- package/dist/commands/task/finish-shared.d.ts +1 -0
- package/dist/commands/task/finish-shared.d.ts.map +1 -1
- package/dist/commands/task/finish-shared.js +1 -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/commands/task/hosted-close-pr.command.d.ts.map +1 -1
- package/dist/commands/task/hosted-close-pr.command.js +35 -0
- package/dist/commands/task/hosted-close.command.d.ts.map +1 -1
- package/dist/commands/task/hosted-close.command.js +185 -18
- package/dist/commands/task/hosted-merge-sync.d.ts +4 -1
- package/dist/commands/task/hosted-merge-sync.d.ts.map +1 -1
- package/dist/commands/task/hosted-merge-sync.js +52 -10
- package/dist/commands/task/start-ready.d.ts.map +1 -1
- package/dist/commands/task/start-ready.js +0 -86
- 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,12 +15,12 @@
|
|
|
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",
|
|
22
|
-
"sha256": "
|
|
23
|
-
"size_bytes":
|
|
22
|
+
"sha256": "78d16de8ea03c471f6fece3e11be86320430afb1431849ef81c50454632cb517",
|
|
23
|
+
"size_bytes": 12121
|
|
24
24
|
},
|
|
25
25
|
{
|
|
26
26
|
"path": "bin/dist-guard.js",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
},
|
|
35
35
|
{
|
|
36
36
|
"path": "bin/stale-dist-policy.js",
|
|
37
|
-
"sha256": "
|
|
38
|
-
"size_bytes":
|
|
37
|
+
"sha256": "0091a665862fead0ddf5057f3062a9fa9cff6260556e2431e0f380bd329f2c03",
|
|
38
|
+
"size_bytes": 2186
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
41
|
"path": "src/adapters/clock/system-clock-adapter.ts",
|
|
@@ -294,8 +294,8 @@
|
|
|
294
294
|
},
|
|
295
295
|
{
|
|
296
296
|
"path": "src/cli/exit-codes.ts",
|
|
297
|
-
"sha256": "
|
|
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",
|
|
@@ -584,8 +584,8 @@
|
|
|
584
584
|
},
|
|
585
585
|
{
|
|
586
586
|
"path": "src/commands/branch/cleanup-merged.ts",
|
|
587
|
-
"sha256": "
|
|
588
|
-
"size_bytes":
|
|
587
|
+
"sha256": "91a340c381defb56180c0224064abb9f17330a3162e09b396b7bbf64116866dd",
|
|
588
|
+
"size_bytes": 10393
|
|
589
589
|
},
|
|
590
590
|
{
|
|
591
591
|
"path": "src/commands/branch/index.ts",
|
|
@@ -629,14 +629,19 @@
|
|
|
629
629
|
},
|
|
630
630
|
{
|
|
631
631
|
"path": "src/commands/branch/work-start.ts",
|
|
632
|
-
"sha256": "
|
|
633
|
-
"size_bytes":
|
|
632
|
+
"sha256": "3a233c600af99fc7a886ec1450dc98dbd03506ebbb150929503c30ad4fff7d25",
|
|
633
|
+
"size_bytes": 15911
|
|
634
634
|
},
|
|
635
635
|
{
|
|
636
636
|
"path": "src/commands/cleanup/merged.command.ts",
|
|
637
637
|
"sha256": "a669d7a96dbe8e05ef832945f40fdcba844d7b97bd4e6781a10174b089e48e63",
|
|
638
638
|
"size_bytes": 3898
|
|
639
639
|
},
|
|
640
|
+
{
|
|
641
|
+
"path": "src/commands/codex/plugin-install.ts",
|
|
642
|
+
"sha256": "94c15f2e3e10444816538d734320bd0f135b0728e03b6cc36b27e66a199e5e50",
|
|
643
|
+
"size_bytes": 8301
|
|
644
|
+
},
|
|
640
645
|
{
|
|
641
646
|
"path": "src/commands/commit.command.ts",
|
|
642
647
|
"sha256": "93886fa1f52f58645c10b0cf8935381563cb79dffeff877530c80f5df0fbf7c9",
|
|
@@ -669,8 +674,8 @@
|
|
|
669
674
|
},
|
|
670
675
|
{
|
|
671
676
|
"path": "src/commands/doctor/branch-pr.ts",
|
|
672
|
-
"sha256": "
|
|
673
|
-
"size_bytes":
|
|
677
|
+
"sha256": "3d3504826f979acd8ef0593eb56a4e6bafebbfa968beb291dcb237d0efbd2e3a",
|
|
678
|
+
"size_bytes": 4032
|
|
674
679
|
},
|
|
675
680
|
{
|
|
676
681
|
"path": "src/commands/doctor/fixes.ts",
|
|
@@ -734,8 +739,8 @@
|
|
|
734
739
|
},
|
|
735
740
|
{
|
|
736
741
|
"path": "src/commands/guard/impl/commands.ts",
|
|
737
|
-
"sha256": "
|
|
738
|
-
"size_bytes":
|
|
742
|
+
"sha256": "3d4f0b5764fb3b8006551a21adf78026bbb31e279a367880a0a461dd8b9e9d6b",
|
|
743
|
+
"size_bytes": 22329
|
|
739
744
|
},
|
|
740
745
|
{
|
|
741
746
|
"path": "src/commands/guard/impl/comment-commit.ts",
|
|
@@ -769,8 +774,8 @@
|
|
|
769
774
|
},
|
|
770
775
|
{
|
|
771
776
|
"path": "src/commands/hooks/index.ts",
|
|
772
|
-
"sha256": "
|
|
773
|
-
"size_bytes":
|
|
777
|
+
"sha256": "3a1723efa9477ec3e37ff71dce0dc6e430df6d447f4a21138cdf135fc6d22169",
|
|
778
|
+
"size_bytes": 15121
|
|
774
779
|
},
|
|
775
780
|
{
|
|
776
781
|
"path": "src/commands/hooks/install.command.ts",
|
|
@@ -814,8 +819,8 @@
|
|
|
814
819
|
},
|
|
815
820
|
{
|
|
816
821
|
"path": "src/commands/pr/check.ts",
|
|
817
|
-
"sha256": "
|
|
818
|
-
"size_bytes":
|
|
822
|
+
"sha256": "0dccc90df33dc52b8f284fd9879bf514795b2ebc63b491c3ed6ebc5e0f1867f9",
|
|
823
|
+
"size_bytes": 13861
|
|
819
824
|
},
|
|
820
825
|
{
|
|
821
826
|
"path": "src/commands/pr/close-superseded.ts",
|
|
@@ -844,8 +849,8 @@
|
|
|
844
849
|
},
|
|
845
850
|
{
|
|
846
851
|
"path": "src/commands/pr/integrate/cmd.ts",
|
|
847
|
-
"sha256": "
|
|
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",
|
|
@@ -854,13 +859,18 @@
|
|
|
854
859
|
},
|
|
855
860
|
{
|
|
856
861
|
"path": "src/commands/pr/integrate/internal/cleanup.ts",
|
|
857
|
-
"sha256": "
|
|
858
|
-
"size_bytes":
|
|
862
|
+
"sha256": "0248a5d500f720fea765dfd3acc2a28486d8e9daa884faba72cf24931292ac3d",
|
|
863
|
+
"size_bytes": 175
|
|
859
864
|
},
|
|
860
865
|
{
|
|
861
866
|
"path": "src/commands/pr/integrate/internal/finalize.ts",
|
|
862
|
-
"sha256": "
|
|
863
|
-
"size_bytes":
|
|
867
|
+
"sha256": "ded54dc72968dfa3d379359881a382e6a61b4f4e8b6c09b19d7e72bd7c1baea8",
|
|
868
|
+
"size_bytes": 5142
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
"path": "src/commands/pr/integrate/internal/github-protection.ts",
|
|
872
|
+
"sha256": "ecd6b88c5a5451e751e9ce22a72c801c511cd6eceacce1de82b281f3c704ac6b",
|
|
873
|
+
"size_bytes": 612
|
|
864
874
|
},
|
|
865
875
|
{
|
|
866
876
|
"path": "src/commands/pr/integrate/internal/merge.ts",
|
|
@@ -872,10 +882,15 @@
|
|
|
872
882
|
"sha256": "e403c173338975c20d2aba962a1c1ad3626ce127a028d238d8a712f948f2b837",
|
|
873
883
|
"size_bytes": 983
|
|
874
884
|
},
|
|
885
|
+
{
|
|
886
|
+
"path": "src/commands/pr/integrate/internal/pre-integrate-bootstrap.ts",
|
|
887
|
+
"sha256": "f06e4a879c1ffbba856970b27adbc09bfa41e750599f955b2912cfd6dc5a48d7",
|
|
888
|
+
"size_bytes": 1445
|
|
889
|
+
},
|
|
875
890
|
{
|
|
876
891
|
"path": "src/commands/pr/integrate/internal/prepare.ts",
|
|
877
|
-
"sha256": "
|
|
878
|
-
"size_bytes":
|
|
892
|
+
"sha256": "7a1c4e68f308baef6aae5d2a4f0eb9f29916e85f74eaee8c37c6fae05e463d77",
|
|
893
|
+
"size_bytes": 11484
|
|
879
894
|
},
|
|
880
895
|
{
|
|
881
896
|
"path": "src/commands/pr/integrate/internal/worktree.ts",
|
|
@@ -887,10 +902,15 @@
|
|
|
887
902
|
"sha256": "c5bb38b7a2e06e50dc75c0ed79f3f2e9c4c0acccffb23768ac4b59c92a742e7c",
|
|
888
903
|
"size_bytes": 2799
|
|
889
904
|
},
|
|
905
|
+
{
|
|
906
|
+
"path": "src/commands/pr/internal/auto-commit.ts",
|
|
907
|
+
"sha256": "7829f5fb844007dade38edcf29cd47992c46c8e7b779aba34aee644454dfbad8",
|
|
908
|
+
"size_bytes": 2869
|
|
909
|
+
},
|
|
890
910
|
{
|
|
891
911
|
"path": "src/commands/pr/internal/freshness.ts",
|
|
892
|
-
"sha256": "
|
|
893
|
-
"size_bytes":
|
|
912
|
+
"sha256": "bc13b4b120fb4722e47aaa1eaa51c251ed7b86f429282886b34bad116976c850",
|
|
913
|
+
"size_bytes": 2467
|
|
894
914
|
},
|
|
895
915
|
{
|
|
896
916
|
"path": "src/commands/pr/internal/gh-api.ts",
|
|
@@ -914,8 +934,8 @@
|
|
|
914
934
|
},
|
|
915
935
|
{
|
|
916
936
|
"path": "src/commands/pr/internal/sync.ts",
|
|
917
|
-
"sha256": "
|
|
918
|
-
"size_bytes":
|
|
937
|
+
"sha256": "5064297a36de98de644cf444ec6b30c842eda36a5fb6c81e41416b947a27f787",
|
|
938
|
+
"size_bytes": 25940
|
|
919
939
|
},
|
|
920
940
|
{
|
|
921
941
|
"path": "src/commands/pr/note.ts",
|
|
@@ -924,8 +944,8 @@
|
|
|
924
944
|
},
|
|
925
945
|
{
|
|
926
946
|
"path": "src/commands/pr/open.ts",
|
|
927
|
-
"sha256": "
|
|
928
|
-
"size_bytes":
|
|
947
|
+
"sha256": "7ababfc18c080a69dc37af52994855adce2628290f4dac5a35fb964c705789fc",
|
|
948
|
+
"size_bytes": 3759
|
|
929
949
|
},
|
|
930
950
|
{
|
|
931
951
|
"path": "src/commands/pr/pr.command.ts",
|
|
@@ -934,8 +954,8 @@
|
|
|
934
954
|
},
|
|
935
955
|
{
|
|
936
956
|
"path": "src/commands/pr/update.ts",
|
|
937
|
-
"sha256": "
|
|
938
|
-
"size_bytes":
|
|
957
|
+
"sha256": "20c322173302a945bebaa52e8375a934cde33b06aed58a1e4cc1242fb5ddf66f",
|
|
958
|
+
"size_bytes": 3892
|
|
939
959
|
},
|
|
940
960
|
{
|
|
941
961
|
"path": "src/commands/ready.command.ts",
|
|
@@ -944,13 +964,23 @@
|
|
|
944
964
|
},
|
|
945
965
|
{
|
|
946
966
|
"path": "src/commands/recipes.test-helpers.ts",
|
|
947
|
-
"sha256": "
|
|
948
|
-
"size_bytes":
|
|
967
|
+
"sha256": "db30218e3c74e861a8b1f3bf7308b44ac79f5741325a8fcb60b1f784e3012606",
|
|
968
|
+
"size_bytes": 19459
|
|
949
969
|
},
|
|
950
970
|
{
|
|
951
971
|
"path": "src/commands/recipes.ts",
|
|
952
|
-
"sha256": "
|
|
953
|
-
"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
|
|
954
984
|
},
|
|
955
985
|
{
|
|
956
986
|
"path": "src/commands/recipes/cache-prune.command.ts",
|
|
@@ -962,15 +992,35 @@
|
|
|
962
992
|
"sha256": "9c8e29a89078ae059cb021bf8412fba37aab68583494e8df10a6eed906d26af4",
|
|
963
993
|
"size_bytes": 1034
|
|
964
994
|
},
|
|
995
|
+
{
|
|
996
|
+
"path": "src/commands/recipes/detach.command.ts",
|
|
997
|
+
"sha256": "6435ae216325c7af4f76de008224a61b41a1d436d9c7d1be37b617a13e014010",
|
|
998
|
+
"size_bytes": 860
|
|
999
|
+
},
|
|
1000
|
+
{
|
|
1001
|
+
"path": "src/commands/recipes/disable.command.ts",
|
|
1002
|
+
"sha256": "9521d898c3e0829a75d8ea6cd437ac023d108093b022c0e29ed0d852701e91e9",
|
|
1003
|
+
"size_bytes": 780
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
"path": "src/commands/recipes/enable.command.ts",
|
|
1007
|
+
"sha256": "88cc3243f605ffb158577879905a257c8e4a42c56c7ce7337f9c55dd70676a66",
|
|
1008
|
+
"size_bytes": 781
|
|
1009
|
+
},
|
|
1010
|
+
{
|
|
1011
|
+
"path": "src/commands/recipes/explain-active.command.ts",
|
|
1012
|
+
"sha256": "77e988e82c67d13cd4b230b48547c427d20e3d510362ec747402c920b3068511",
|
|
1013
|
+
"size_bytes": 715
|
|
1014
|
+
},
|
|
965
1015
|
{
|
|
966
1016
|
"path": "src/commands/recipes/explain.command.ts",
|
|
967
|
-
"sha256": "
|
|
968
|
-
"size_bytes":
|
|
1017
|
+
"sha256": "f9e5be58b94b2eeafe76fadfefea98ac146b12e07f777c6e942ca3b8898cdd9a",
|
|
1018
|
+
"size_bytes": 768
|
|
969
1019
|
},
|
|
970
1020
|
{
|
|
971
1021
|
"path": "src/commands/recipes/impl/apply.ts",
|
|
972
|
-
"sha256": "
|
|
973
|
-
"size_bytes":
|
|
1022
|
+
"sha256": "92e2191619444aef0487c59d0b7c6e3e9f02e65690ccca948bb89ad2a8d65e72",
|
|
1023
|
+
"size_bytes": 6922
|
|
974
1024
|
},
|
|
975
1025
|
{
|
|
976
1026
|
"path": "src/commands/recipes/impl/archive.ts",
|
|
@@ -979,28 +1029,58 @@
|
|
|
979
1029
|
},
|
|
980
1030
|
{
|
|
981
1031
|
"path": "src/commands/recipes/impl/commands.ts",
|
|
982
|
-
"sha256": "
|
|
983
|
-
"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
|
|
984
1044
|
},
|
|
985
1045
|
{
|
|
986
1046
|
"path": "src/commands/recipes/impl/commands/cache-prune.ts",
|
|
987
1047
|
"sha256": "a9866b5fcefe980c5719e6c6df90b7f60ecf5b289c6f6cb04fbdc5580c47c632",
|
|
988
1048
|
"size_bytes": 4748
|
|
989
1049
|
},
|
|
1050
|
+
{
|
|
1051
|
+
"path": "src/commands/recipes/impl/commands/detach.ts",
|
|
1052
|
+
"sha256": "773054f3bc1e6f1b853ad653f9ac7bac53937de97804181c17ac02b5b740e0d1",
|
|
1053
|
+
"size_bytes": 4041
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
"path": "src/commands/recipes/impl/commands/disable.ts",
|
|
1057
|
+
"sha256": "ee65f192b762c8e65171f4e5fca58b71f0c3adc9d4fbdeed8d5e1cdb7bcb1c37",
|
|
1058
|
+
"size_bytes": 932
|
|
1059
|
+
},
|
|
1060
|
+
{
|
|
1061
|
+
"path": "src/commands/recipes/impl/commands/enable.ts",
|
|
1062
|
+
"sha256": "8d56daf3844d9e6bd47592a2525d2f4a133a91ceb8298125af8f179228f31d19",
|
|
1063
|
+
"size_bytes": 1606
|
|
1064
|
+
},
|
|
1065
|
+
{
|
|
1066
|
+
"path": "src/commands/recipes/impl/commands/explain-active.ts",
|
|
1067
|
+
"sha256": "7b8c2e93d5a28fd9101224a178c72b1523f74608aee10a618f962d692e5e46aa",
|
|
1068
|
+
"size_bytes": 806
|
|
1069
|
+
},
|
|
990
1070
|
{
|
|
991
1071
|
"path": "src/commands/recipes/impl/commands/explain.ts",
|
|
992
|
-
"sha256": "
|
|
993
|
-
"size_bytes":
|
|
1072
|
+
"sha256": "5b4b8073ad561175867ab2554897473dd2723884c219f1d053ed47c131747497",
|
|
1073
|
+
"size_bytes": 8324
|
|
994
1074
|
},
|
|
995
1075
|
{
|
|
996
1076
|
"path": "src/commands/recipes/impl/commands/info.ts",
|
|
997
|
-
"sha256": "
|
|
998
|
-
"size_bytes":
|
|
1077
|
+
"sha256": "883072a3bc4004e9d389634e45230183b09ccbd50f6bdc121fdcc925df0f94d1",
|
|
1078
|
+
"size_bytes": 3476
|
|
999
1079
|
},
|
|
1000
1080
|
{
|
|
1001
1081
|
"path": "src/commands/recipes/impl/commands/install.ts",
|
|
1002
|
-
"sha256": "
|
|
1003
|
-
"size_bytes":
|
|
1082
|
+
"sha256": "1e58ecbe4221e21525a1ca1c15c91a2d77ee2781396fcf3962e2c2f3eb1a0dac",
|
|
1083
|
+
"size_bytes": 10548
|
|
1004
1084
|
},
|
|
1005
1085
|
{
|
|
1006
1086
|
"path": "src/commands/recipes/impl/commands/list-remote.ts",
|
|
@@ -1009,18 +1089,23 @@
|
|
|
1009
1089
|
},
|
|
1010
1090
|
{
|
|
1011
1091
|
"path": "src/commands/recipes/impl/commands/list.ts",
|
|
1012
|
-
"sha256": "
|
|
1013
|
-
"size_bytes":
|
|
1092
|
+
"sha256": "67e3cfe976b29a4348366a364f407569eeae2c2e469445d6f68a384739127aaf",
|
|
1093
|
+
"size_bytes": 1867
|
|
1014
1094
|
},
|
|
1015
1095
|
{
|
|
1016
1096
|
"path": "src/commands/recipes/impl/commands/remove.ts",
|
|
1017
|
-
"sha256": "
|
|
1018
|
-
"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
|
|
1019
1104
|
},
|
|
1020
1105
|
{
|
|
1021
1106
|
"path": "src/commands/recipes/impl/constants.ts",
|
|
1022
|
-
"sha256": "
|
|
1023
|
-
"size_bytes":
|
|
1107
|
+
"sha256": "c979671da44723edf9d298898567133a3fdbb8d7be245cff35b751a4d5d701bd",
|
|
1108
|
+
"size_bytes": 481
|
|
1024
1109
|
},
|
|
1025
1110
|
{
|
|
1026
1111
|
"path": "src/commands/recipes/impl/format.ts",
|
|
@@ -1039,23 +1124,38 @@
|
|
|
1039
1124
|
},
|
|
1040
1125
|
{
|
|
1041
1126
|
"path": "src/commands/recipes/impl/manifest.ts",
|
|
1042
|
-
"sha256": "
|
|
1043
|
-
"size_bytes":
|
|
1127
|
+
"sha256": "d415d5903159f2d5e2190996a91cc3f9c1bd3a53f144a8779c4f058dee4aa89e",
|
|
1128
|
+
"size_bytes": 425
|
|
1044
1129
|
},
|
|
1045
1130
|
{
|
|
1046
1131
|
"path": "src/commands/recipes/impl/normalize.ts",
|
|
1047
1132
|
"sha256": "9b4f0772ba16a66158d6ad27f1f7ed004c451d2d23cb13dedf2e5cf21a43dd84",
|
|
1048
1133
|
"size_bytes": 2104
|
|
1049
1134
|
},
|
|
1135
|
+
{
|
|
1136
|
+
"path": "src/commands/recipes/impl/overlay-project.ts",
|
|
1137
|
+
"sha256": "a8b75dbfe6a78e93799eea15d9d4a7443ef4e40661fe2e9ad421706f7c016e38",
|
|
1138
|
+
"size_bytes": 11618
|
|
1139
|
+
},
|
|
1050
1140
|
{
|
|
1051
1141
|
"path": "src/commands/recipes/impl/paths.ts",
|
|
1052
|
-
"sha256": "
|
|
1053
|
-
"size_bytes":
|
|
1142
|
+
"sha256": "7c0e611dc49faef93458e30e2e7e77b0ec4635e60e6ddd3bc0954f92415b2037",
|
|
1143
|
+
"size_bytes": 2998
|
|
1054
1144
|
},
|
|
1055
1145
|
{
|
|
1056
1146
|
"path": "src/commands/recipes/impl/project-installed-recipes.ts",
|
|
1057
|
-
"sha256": "
|
|
1058
|
-
"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
|
|
1059
1159
|
},
|
|
1060
1160
|
{
|
|
1061
1161
|
"path": "src/commands/recipes/impl/project.ts",
|
|
@@ -1064,8 +1164,8 @@
|
|
|
1064
1164
|
},
|
|
1065
1165
|
{
|
|
1066
1166
|
"path": "src/commands/recipes/impl/resolver.ts",
|
|
1067
|
-
"sha256": "
|
|
1068
|
-
"size_bytes":
|
|
1167
|
+
"sha256": "b068757162ecbd2d3eb4df415bce2d3b0834b7f2d057e9ec749ff579c3c3c3c2",
|
|
1168
|
+
"size_bytes": 11853
|
|
1069
1169
|
},
|
|
1070
1170
|
{
|
|
1071
1171
|
"path": "src/commands/recipes/impl/scenario.ts",
|
|
@@ -1074,13 +1174,13 @@
|
|
|
1074
1174
|
},
|
|
1075
1175
|
{
|
|
1076
1176
|
"path": "src/commands/recipes/impl/types.ts",
|
|
1077
|
-
"sha256": "
|
|
1078
|
-
"size_bytes":
|
|
1177
|
+
"sha256": "d1ed407a7cd6eb165c496602bdf60fb2efbcf7b758d27710ad84415d6087dcd8",
|
|
1178
|
+
"size_bytes": 1443
|
|
1079
1179
|
},
|
|
1080
1180
|
{
|
|
1081
1181
|
"path": "src/commands/recipes/info.command.ts",
|
|
1082
|
-
"sha256": "
|
|
1083
|
-
"size_bytes":
|
|
1182
|
+
"sha256": "ddefcdd3c6cfc42a67accd5755828a343da51701679c505f1dfb4926b0595925",
|
|
1183
|
+
"size_bytes": 707
|
|
1084
1184
|
},
|
|
1085
1185
|
{
|
|
1086
1186
|
"path": "src/commands/recipes/install.run.ts",
|
|
@@ -1089,8 +1189,8 @@
|
|
|
1089
1189
|
},
|
|
1090
1190
|
{
|
|
1091
1191
|
"path": "src/commands/recipes/install.spec.ts",
|
|
1092
|
-
"sha256": "
|
|
1093
|
-
"size_bytes":
|
|
1192
|
+
"sha256": "a77582d2b892323fddf711aca98654fd737917a5192492af4e97efdc4097724e",
|
|
1193
|
+
"size_bytes": 4792
|
|
1094
1194
|
},
|
|
1095
1195
|
{
|
|
1096
1196
|
"path": "src/commands/recipes/list-remote.command.ts",
|
|
@@ -1099,8 +1199,8 @@
|
|
|
1099
1199
|
},
|
|
1100
1200
|
{
|
|
1101
1201
|
"path": "src/commands/recipes/list.command.ts",
|
|
1102
|
-
"sha256": "
|
|
1103
|
-
"size_bytes":
|
|
1202
|
+
"sha256": "e70fa0175d1e4bec42044174fd19e85d50578efe7dd86235c95d0a0ce431fb6b",
|
|
1203
|
+
"size_bytes": 1508
|
|
1104
1204
|
},
|
|
1105
1205
|
{
|
|
1106
1206
|
"path": "src/commands/recipes/recipes.command.ts",
|
|
@@ -1109,8 +1209,13 @@
|
|
|
1109
1209
|
},
|
|
1110
1210
|
{
|
|
1111
1211
|
"path": "src/commands/recipes/remove.command.ts",
|
|
1112
|
-
"sha256": "
|
|
1113
|
-
"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
|
|
1114
1219
|
},
|
|
1115
1220
|
{
|
|
1116
1221
|
"path": "src/commands/release.test-helpers.ts",
|
|
@@ -1119,13 +1224,13 @@
|
|
|
1119
1224
|
},
|
|
1120
1225
|
{
|
|
1121
1226
|
"path": "src/commands/release/apply.command.ts",
|
|
1122
|
-
"sha256": "
|
|
1123
|
-
"size_bytes":
|
|
1227
|
+
"sha256": "fc41fafc65e35b110a8f22c05a137c0ad4df65e71a2d6badb2b8f0dedad3ecbc",
|
|
1228
|
+
"size_bytes": 29873
|
|
1124
1229
|
},
|
|
1125
1230
|
{
|
|
1126
1231
|
"path": "src/commands/release/apply.mutation.ts",
|
|
1127
|
-
"sha256": "
|
|
1128
|
-
"size_bytes":
|
|
1232
|
+
"sha256": "a103b80ae5d4c8bc8e2ffadbb4af044a52addfdd11805d2a1e7493ce8212f17c",
|
|
1233
|
+
"size_bytes": 4470
|
|
1129
1234
|
},
|
|
1130
1235
|
{
|
|
1131
1236
|
"path": "src/commands/release/apply.preflight.ts",
|
|
@@ -1134,18 +1239,18 @@
|
|
|
1134
1239
|
},
|
|
1135
1240
|
{
|
|
1136
1241
|
"path": "src/commands/release/apply.reporting.ts",
|
|
1137
|
-
"sha256": "
|
|
1138
|
-
"size_bytes":
|
|
1242
|
+
"sha256": "9beb497c4aec3e0ad8456e0fae35f7c711e2394dad5c023f883b212856151b9f",
|
|
1243
|
+
"size_bytes": 1406
|
|
1139
1244
|
},
|
|
1140
1245
|
{
|
|
1141
1246
|
"path": "src/commands/release/apply.types.ts",
|
|
1142
|
-
"sha256": "
|
|
1143
|
-
"size_bytes":
|
|
1247
|
+
"sha256": "fd3d3fcd0e21fc1110db54d6dc8a25c284537305ab147c3ac8b12b9120a22533",
|
|
1248
|
+
"size_bytes": 1213
|
|
1144
1249
|
},
|
|
1145
1250
|
{
|
|
1146
1251
|
"path": "src/commands/release/plan.command.ts",
|
|
1147
|
-
"sha256": "
|
|
1148
|
-
"size_bytes":
|
|
1252
|
+
"sha256": "3538a8159233866e4b26c733f51b822a389926fcd72c1a221c2d0e37c89080d8",
|
|
1253
|
+
"size_bytes": 12458
|
|
1149
1254
|
},
|
|
1150
1255
|
{
|
|
1151
1256
|
"path": "src/commands/release/release.command.ts",
|
|
@@ -1164,13 +1269,13 @@
|
|
|
1164
1269
|
},
|
|
1165
1270
|
{
|
|
1166
1271
|
"path": "src/commands/scenario/execute.command.ts",
|
|
1167
|
-
"sha256": "
|
|
1168
|
-
"size_bytes":
|
|
1272
|
+
"sha256": "f89df359b2f26c3e01a4c28845411951afca3a9b0c4c35ed4b22a8858dc21a74",
|
|
1273
|
+
"size_bytes": 5017
|
|
1169
1274
|
},
|
|
1170
1275
|
{
|
|
1171
1276
|
"path": "src/commands/scenario/impl/commands.ts",
|
|
1172
|
-
"sha256": "
|
|
1173
|
-
"size_bytes":
|
|
1277
|
+
"sha256": "c8d8578508ea2824a27d7e87de2f2057d1fc6baafadac89d9c3f81530a261dac",
|
|
1278
|
+
"size_bytes": 13007
|
|
1174
1279
|
},
|
|
1175
1280
|
{
|
|
1176
1281
|
"path": "src/commands/scenario/impl/report.ts",
|
|
@@ -1179,23 +1284,23 @@
|
|
|
1179
1284
|
},
|
|
1180
1285
|
{
|
|
1181
1286
|
"path": "src/commands/scenario/info.command.ts",
|
|
1182
|
-
"sha256": "
|
|
1183
|
-
"size_bytes":
|
|
1287
|
+
"sha256": "01812137897e6c68d6f93d3c71ded9a4eb7b8b21d5ce5b8f285ce9f9c0851fde",
|
|
1288
|
+
"size_bytes": 1318
|
|
1184
1289
|
},
|
|
1185
1290
|
{
|
|
1186
1291
|
"path": "src/commands/scenario/list.command.ts",
|
|
1187
|
-
"sha256": "
|
|
1188
|
-
"size_bytes":
|
|
1292
|
+
"sha256": "b57a464b2ba5f35cf2242309b1be033c5d087eb090717225a67740405d4b79da",
|
|
1293
|
+
"size_bytes": 671
|
|
1189
1294
|
},
|
|
1190
1295
|
{
|
|
1191
1296
|
"path": "src/commands/scenario/run.command.ts",
|
|
1192
|
-
"sha256": "
|
|
1193
|
-
"size_bytes":
|
|
1297
|
+
"sha256": "4cb5907f8c67b4923b670411f39615d48a8db307fea3ae3a6d0abb054a9b624e",
|
|
1298
|
+
"size_bytes": 1344
|
|
1194
1299
|
},
|
|
1195
1300
|
{
|
|
1196
1301
|
"path": "src/commands/scenario/scenario.command.ts",
|
|
1197
|
-
"sha256": "
|
|
1198
|
-
"size_bytes":
|
|
1302
|
+
"sha256": "373b87cda2a75fbdc4b067d04ecba5581d09717416a3f2776c9b09acd4a10d17",
|
|
1303
|
+
"size_bytes": 1068
|
|
1199
1304
|
},
|
|
1200
1305
|
{
|
|
1201
1306
|
"path": "src/commands/shared/approval-requirements.ts",
|
|
@@ -1232,6 +1337,11 @@
|
|
|
1232
1337
|
"sha256": "e91e79fe6292e0d1cbfb5c768d76d95cc568c60fdc99189ef67ae6405a5ff81d",
|
|
1233
1338
|
"size_bytes": 508
|
|
1234
1339
|
},
|
|
1340
|
+
{
|
|
1341
|
+
"path": "src/commands/shared/merged-branch-cleanup.ts",
|
|
1342
|
+
"sha256": "3521be214ca86b2f99cd79bc43819e265668c1f7eb0780e421a49dc2cd649941",
|
|
1343
|
+
"size_bytes": 1818
|
|
1344
|
+
},
|
|
1235
1345
|
{
|
|
1236
1346
|
"path": "src/commands/shared/network-approval.ts",
|
|
1237
1347
|
"sha256": "c56aa2b1b65211fd043a4a5ccda7d4cae53d43758b1945ec6c40c9cf57e9d843",
|
|
@@ -1254,8 +1364,8 @@
|
|
|
1254
1364
|
},
|
|
1255
1365
|
{
|
|
1256
1366
|
"path": "src/commands/shared/post-commit-pr-artifacts.ts",
|
|
1257
|
-
"sha256": "
|
|
1258
|
-
"size_bytes":
|
|
1367
|
+
"sha256": "88e6625502e8d0fe8b23fa074dd4dd2c40d2db4537a75d1b93fe9524a8777ade",
|
|
1368
|
+
"size_bytes": 2233
|
|
1259
1369
|
},
|
|
1260
1370
|
{
|
|
1261
1371
|
"path": "src/commands/shared/pr-meta.ts",
|
|
@@ -1269,18 +1379,18 @@
|
|
|
1269
1379
|
},
|
|
1270
1380
|
{
|
|
1271
1381
|
"path": "src/commands/shared/task-backend.ts",
|
|
1272
|
-
"sha256": "
|
|
1273
|
-
"size_bytes":
|
|
1382
|
+
"sha256": "81ee7a5bc74476bb67dda073f0ea62b12e43edd2d7cc87d822ee187db9365833",
|
|
1383
|
+
"size_bytes": 11019
|
|
1274
1384
|
},
|
|
1275
1385
|
{
|
|
1276
1386
|
"path": "src/commands/shared/task-handoff.ts",
|
|
1277
|
-
"sha256": "
|
|
1278
|
-
"size_bytes":
|
|
1387
|
+
"sha256": "71daeba5f527657c8b890c36b43a1d4d2db0693b32fa1862b930e4f6cbfafa5c",
|
|
1388
|
+
"size_bytes": 7343
|
|
1279
1389
|
},
|
|
1280
1390
|
{
|
|
1281
1391
|
"path": "src/commands/shared/task-local-freshness.ts",
|
|
1282
|
-
"sha256": "
|
|
1283
|
-
"size_bytes":
|
|
1392
|
+
"sha256": "85f794e7653c9a5f8a9eef42008eee830ac0d729871b1f60fba3f47684ac46bf",
|
|
1393
|
+
"size_bytes": 1303
|
|
1284
1394
|
},
|
|
1285
1395
|
{
|
|
1286
1396
|
"path": "src/commands/shared/task-mutation.ts",
|
|
@@ -1424,8 +1534,8 @@
|
|
|
1424
1534
|
},
|
|
1425
1535
|
{
|
|
1426
1536
|
"path": "src/commands/task/finish-shared.ts",
|
|
1427
|
-
"sha256": "
|
|
1428
|
-
"size_bytes":
|
|
1537
|
+
"sha256": "c62a645e073973e8136005cf4c5072319af53982c3d5b8f60e6f7c69264754f9",
|
|
1538
|
+
"size_bytes": 10190
|
|
1429
1539
|
},
|
|
1430
1540
|
{
|
|
1431
1541
|
"path": "src/commands/task/finish.ts",
|
|
@@ -1439,8 +1549,8 @@
|
|
|
1439
1549
|
},
|
|
1440
1550
|
{
|
|
1441
1551
|
"path": "src/commands/task/handoff-show.command.ts",
|
|
1442
|
-
"sha256": "
|
|
1443
|
-
"size_bytes":
|
|
1552
|
+
"sha256": "3155747642271d70ac9acf28e57653a2a93b7667c1892ad2caaaa84611ab775e",
|
|
1553
|
+
"size_bytes": 4160
|
|
1444
1554
|
},
|
|
1445
1555
|
{
|
|
1446
1556
|
"path": "src/commands/task/handoff.command.ts",
|
|
@@ -1454,18 +1564,18 @@
|
|
|
1454
1564
|
},
|
|
1455
1565
|
{
|
|
1456
1566
|
"path": "src/commands/task/hosted-close-pr.command.ts",
|
|
1457
|
-
"sha256": "
|
|
1458
|
-
"size_bytes":
|
|
1567
|
+
"sha256": "fcda2a63c9976ede02e773abc7624bdf4b2729a25a7f2bebb90a7eddb7239e67",
|
|
1568
|
+
"size_bytes": 18459
|
|
1459
1569
|
},
|
|
1460
1570
|
{
|
|
1461
1571
|
"path": "src/commands/task/hosted-close.command.ts",
|
|
1462
|
-
"sha256": "
|
|
1463
|
-
"size_bytes":
|
|
1572
|
+
"sha256": "df15bfa1206c504896f02049ab36e13d8920df488c9f952a7cac04210939a396",
|
|
1573
|
+
"size_bytes": 15405
|
|
1464
1574
|
},
|
|
1465
1575
|
{
|
|
1466
1576
|
"path": "src/commands/task/hosted-merge-sync.ts",
|
|
1467
|
-
"sha256": "
|
|
1468
|
-
"size_bytes":
|
|
1577
|
+
"sha256": "ee4ce3455cb36024bc5108862e989fda14ff5041afcabf3df33cd16a1c3ebc44",
|
|
1578
|
+
"size_bytes": 22106
|
|
1469
1579
|
},
|
|
1470
1580
|
{
|
|
1471
1581
|
"path": "src/commands/task/index.ts",
|
|
@@ -1779,8 +1889,8 @@
|
|
|
1779
1889
|
},
|
|
1780
1890
|
{
|
|
1781
1891
|
"path": "src/commands/task/start-ready.ts",
|
|
1782
|
-
"sha256": "
|
|
1783
|
-
"size_bytes":
|
|
1892
|
+
"sha256": "f3b1e852d0d8052586b2f33bf2123d5456bf4ce90ef34fca1ba91fa7a020ea3b",
|
|
1893
|
+
"size_bytes": 1867
|
|
1784
1894
|
},
|
|
1785
1895
|
{
|
|
1786
1896
|
"path": "src/commands/task/start.ts",
|
|
@@ -2089,13 +2199,13 @@
|
|
|
2089
2199
|
},
|
|
2090
2200
|
{
|
|
2091
2201
|
"path": "src/runner/context/base-prompts.ts",
|
|
2092
|
-
"sha256": "
|
|
2093
|
-
"size_bytes":
|
|
2202
|
+
"sha256": "e0cfae8c4ad9a4db2365a6cf3bd0ee3cd776228154e270a9ec9ebfdefb34f011",
|
|
2203
|
+
"size_bytes": 20299
|
|
2094
2204
|
},
|
|
2095
2205
|
{
|
|
2096
2206
|
"path": "src/runner/context/recipe-context.ts",
|
|
2097
|
-
"sha256": "
|
|
2098
|
-
"size_bytes":
|
|
2207
|
+
"sha256": "3f02f7db152f01f68d86fab7af09f604f8fd20a95918bd811b80399c0395fe21",
|
|
2208
|
+
"size_bytes": 4434
|
|
2099
2209
|
},
|
|
2100
2210
|
{
|
|
2101
2211
|
"path": "src/runner/context/task-context.ts",
|
|
@@ -2169,8 +2279,8 @@
|
|
|
2169
2279
|
},
|
|
2170
2280
|
{
|
|
2171
2281
|
"path": "src/runner/types.ts",
|
|
2172
|
-
"sha256": "
|
|
2173
|
-
"size_bytes":
|
|
2282
|
+
"sha256": "34b80d25e9fc6e15b1a82dca58bcb913786bb4e12407e40cc629b65de94b35b7",
|
|
2283
|
+
"size_bytes": 10419
|
|
2174
2284
|
},
|
|
2175
2285
|
{
|
|
2176
2286
|
"path": "src/runner/usecases/scenario-materialize-task.ts",
|
|
@@ -2204,8 +2314,8 @@
|
|
|
2204
2314
|
},
|
|
2205
2315
|
{
|
|
2206
2316
|
"path": "src/runner/usecases/task-run.ts",
|
|
2207
|
-
"sha256": "
|
|
2208
|
-
"size_bytes":
|
|
2317
|
+
"sha256": "34c09afb9afce433cac212b8fe49ec77509118009e8f6d96ae7f7d2178132fec",
|
|
2318
|
+
"size_bytes": 14223
|
|
2209
2319
|
},
|
|
2210
2320
|
{
|
|
2211
2321
|
"path": "src/runtime/approvals/index.ts",
|
|
@@ -2229,13 +2339,13 @@
|
|
|
2229
2339
|
},
|
|
2230
2340
|
{
|
|
2231
2341
|
"path": "src/runtime/behavior/resolve.ts",
|
|
2232
|
-
"sha256": "
|
|
2233
|
-
"size_bytes":
|
|
2342
|
+
"sha256": "efb29fadf88c71d008993beff2bfa6098c7558a5ad05353a4315b632fbe8d18d",
|
|
2343
|
+
"size_bytes": 3686
|
|
2234
2344
|
},
|
|
2235
2345
|
{
|
|
2236
2346
|
"path": "src/runtime/behavior/types.ts",
|
|
2237
|
-
"sha256": "
|
|
2238
|
-
"size_bytes":
|
|
2347
|
+
"sha256": "253f723069cea44d2b0b0beafd7feb290faade5daa4f96e647bd87972a4aeb0d",
|
|
2348
|
+
"size_bytes": 891
|
|
2239
2349
|
},
|
|
2240
2350
|
{
|
|
2241
2351
|
"path": "src/runtime/capabilities/backend.ts",
|
|
@@ -2249,8 +2359,8 @@
|
|
|
2249
2359
|
},
|
|
2250
2360
|
{
|
|
2251
2361
|
"path": "src/runtime/capabilities/recipe.ts",
|
|
2252
|
-
"sha256": "
|
|
2253
|
-
"size_bytes":
|
|
2362
|
+
"sha256": "a784daa190534d26e050dfafd4f9671a79e56325f4a08822c43766b3585652e3",
|
|
2363
|
+
"size_bytes": 6476
|
|
2254
2364
|
},
|
|
2255
2365
|
{
|
|
2256
2366
|
"path": "src/runtime/capabilities/registry.ts",
|
|
@@ -2394,8 +2504,8 @@
|
|
|
2394
2504
|
},
|
|
2395
2505
|
{
|
|
2396
2506
|
"path": "src/shared/errors.ts",
|
|
2397
|
-
"sha256": "
|
|
2398
|
-
"size_bytes":
|
|
2507
|
+
"sha256": "9a0899d580559d819f080df0518686e374f252befef6087aebb59b07f6a8c933",
|
|
2508
|
+
"size_bytes": 1342
|
|
2399
2509
|
},
|
|
2400
2510
|
{
|
|
2401
2511
|
"path": "src/shared/git-log.ts",
|
|
@@ -2434,8 +2544,8 @@
|
|
|
2434
2544
|
},
|
|
2435
2545
|
{
|
|
2436
2546
|
"path": "src/shared/runtime-source.ts",
|
|
2437
|
-
"sha256": "
|
|
2438
|
-
"size_bytes":
|
|
2547
|
+
"sha256": "e14449747e472158a645ed6ddeaa2af28234e5d2d0784e2d93a3a554ed438759",
|
|
2548
|
+
"size_bytes": 7305
|
|
2439
2549
|
},
|
|
2440
2550
|
{
|
|
2441
2551
|
"path": "src/shared/strings.ts",
|