agentplane 0.3.13 → 0.3.14
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/agents/SKILL_EXTRACTOR.json +31 -0
- package/assets/framework.manifest.json +7 -0
- package/assets/policy/incidents.md +5 -3
- package/assets/policy/workflow.branch_pr.md +10 -5
- package/dist/.build-manifest.json +278 -178
- package/dist/cli/output.d.ts +29 -0
- package/dist/cli/output.d.ts.map +1 -1
- package/dist/cli/output.js +33 -0
- package/dist/cli/run-cli/command-catalog/core.d.ts.map +1 -1
- package/dist/cli/run-cli/command-catalog/core.js +29 -87
- package/dist/cli/run-cli/command-catalog/lifecycle.d.ts.map +1 -1
- package/dist/cli/run-cli/command-catalog/lifecycle.js +4 -12
- 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 +16 -38
- package/dist/cli/run-cli/command-catalog/shared.d.ts +9 -6
- package/dist/cli/run-cli/command-catalog/shared.d.ts.map +1 -1
- package/dist/cli/run-cli/command-catalog/shared.js +23 -6
- package/dist/cli/run-cli/command-catalog/task.d.ts.map +1 -1
- package/dist/cli/run-cli/command-catalog/task.js +6 -18
- 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/init/recipes.d.ts.map +1 -1
- package/dist/cli/run-cli/commands/init/recipes.js +1 -0
- package/dist/cli/run-cli.js +1 -1
- package/dist/cli/run-cli.test-helpers.d.ts +1 -74
- package/dist/cli/run-cli.test-helpers.d.ts.map +1 -1
- package/dist/cli/run-cli.test-helpers.js +1 -769
- package/dist/commands/branch/cleanup-merged.d.ts.map +1 -1
- package/dist/commands/branch/cleanup-merged.js +5 -9
- package/dist/commands/branch/work-start.command.d.ts.map +1 -1
- package/dist/commands/branch/work-start.command.js +1 -0
- package/dist/commands/commit.spec.d.ts.map +1 -1
- package/dist/commands/commit.spec.js +2 -0
- package/dist/commands/doctor/branch-pr.d.ts +1 -1
- package/dist/commands/doctor/branch-pr.d.ts.map +1 -1
- package/dist/commands/doctor/branch-pr.js +5 -2
- package/dist/commands/guard/impl/commands.d.ts.map +1 -1
- package/dist/commands/guard/impl/commands.js +4 -1
- package/dist/commands/guard/impl/comment-commit.d.ts.map +1 -1
- package/dist/commands/guard/impl/comment-commit.js +2 -1
- package/dist/commands/guard/impl/env.d.ts +6 -0
- package/dist/commands/guard/impl/env.d.ts.map +1 -1
- package/dist/commands/guard/impl/env.js +41 -0
- package/dist/commands/pr/internal/auto-commit.d.ts.map +1 -1
- package/dist/commands/pr/internal/auto-commit.js +2 -1
- package/dist/commands/pr/internal/sync-branch.d.ts +36 -0
- package/dist/commands/pr/internal/sync-branch.d.ts.map +1 -0
- package/dist/commands/pr/internal/sync-branch.js +113 -0
- package/dist/commands/pr/internal/sync-github.d.ts +28 -0
- package/dist/commands/pr/internal/sync-github.d.ts.map +1 -0
- package/dist/commands/pr/internal/sync-github.js +178 -0
- package/dist/commands/pr/internal/sync-model.d.ts +36 -0
- package/dist/commands/pr/internal/sync-model.d.ts.map +1 -0
- package/dist/commands/pr/internal/sync-model.js +1 -0
- package/dist/commands/pr/internal/sync-open-step.d.ts +10 -0
- package/dist/commands/pr/internal/sync-open-step.d.ts.map +1 -0
- package/dist/commands/pr/internal/sync-open-step.js +128 -0
- package/dist/commands/pr/internal/sync-support.d.ts +7 -0
- package/dist/commands/pr/internal/sync-support.d.ts.map +1 -0
- package/dist/commands/pr/internal/sync-support.js +29 -0
- package/dist/commands/pr/internal/sync-update-step.d.ts +6 -0
- package/dist/commands/pr/internal/sync-update-step.d.ts.map +1 -0
- package/dist/commands/pr/internal/sync-update-step.js +68 -0
- package/dist/commands/pr/internal/sync.d.ts +2 -6
- package/dist/commands/pr/internal/sync.d.ts.map +1 -1
- package/dist/commands/pr/internal/sync.js +83 -529
- package/dist/commands/pr/open.d.ts.map +1 -1
- package/dist/commands/pr/open.js +25 -8
- package/dist/commands/pr/pr.command.d.ts.map +1 -1
- package/dist/commands/pr/pr.command.js +7 -2
- package/dist/commands/recipes/impl/apply.d.ts +1 -1
- package/dist/commands/recipes/impl/apply.d.ts.map +1 -1
- package/dist/commands/recipes/impl/apply.js +1 -2
- package/dist/commands/recipes/impl/commands/active.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/active.js +6 -5
- package/dist/commands/recipes/impl/commands/add.d.ts +1 -0
- package/dist/commands/recipes/impl/commands/add.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/add.js +32 -27
- package/dist/commands/recipes/impl/commands/detach.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/detach.js +35 -21
- package/dist/commands/recipes/impl/commands/disable.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/disable.js +5 -3
- package/dist/commands/recipes/impl/commands/enable.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/enable.js +5 -3
- package/dist/commands/recipes/impl/commands/explain.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/explain.js +57 -47
- package/dist/commands/recipes/impl/commands/info.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/info.js +25 -21
- package/dist/commands/recipes/impl/commands/install.d.ts +1 -1
- package/dist/commands/recipes/impl/commands/install.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/install.js +3 -13
- package/dist/commands/recipes/impl/commands/list-remote.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/list-remote.js +2 -3
- package/dist/commands/recipes/impl/commands/list.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/list.js +7 -6
- package/dist/commands/recipes/impl/commands/remove.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/remove.js +12 -7
- package/dist/commands/recipes/impl/commands/update.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/update.js +38 -24
- package/dist/commands/recipes/impl/index.d.ts +1 -1
- package/dist/commands/recipes/impl/index.d.ts.map +1 -1
- package/dist/commands/recipes/impl/installed-recipes.d.ts +1 -1
- package/dist/commands/recipes/impl/installed-recipes.d.ts.map +1 -1
- package/dist/commands/recipes/impl/installed-recipes.js +1 -2
- package/dist/commands/recipes/impl/mutation-transaction.d.ts +7 -0
- package/dist/commands/recipes/impl/mutation-transaction.d.ts.map +1 -0
- package/dist/commands/recipes/impl/mutation-transaction.js +47 -0
- package/dist/commands/recipes/impl/overlay-project.d.ts +19 -3
- package/dist/commands/recipes/impl/overlay-project.d.ts.map +1 -1
- package/dist/commands/recipes/impl/overlay-project.js +76 -38
- package/dist/commands/recipes/impl/paths.d.ts +0 -3
- package/dist/commands/recipes/impl/paths.d.ts.map +1 -1
- package/dist/commands/recipes/impl/paths.js +0 -3
- package/dist/commands/recipes/impl/project-installed-recipes.d.ts +4 -1
- package/dist/commands/recipes/impl/project-installed-recipes.d.ts.map +1 -1
- package/dist/commands/recipes/impl/project-installed-recipes.js +6 -4
- package/dist/commands/recipes/impl/project-recipe-state.d.ts +1 -1
- package/dist/commands/recipes/impl/project-recipe-state.d.ts.map +1 -1
- package/dist/commands/recipes/impl/project-registry.d.ts +5 -1
- package/dist/commands/recipes/impl/project-registry.d.ts.map +1 -1
- package/dist/commands/recipes/impl/project-registry.js +34 -14
- package/dist/commands/recipes/impl/resolver.d.ts +1 -1
- package/dist/commands/recipes/impl/resolver.d.ts.map +1 -1
- package/dist/commands/recipes/impl/resolver.js +1 -1
- package/dist/commands/recipes/impl/types.d.ts +1 -1
- package/dist/commands/recipes/impl/types.d.ts.map +1 -1
- package/dist/commands/recipes/impl/version.d.ts +5 -0
- package/dist/commands/recipes/impl/version.d.ts.map +1 -0
- package/dist/commands/recipes/impl/version.js +9 -0
- package/dist/commands/recipes.d.ts +5 -4
- package/dist/commands/recipes.d.ts.map +1 -1
- package/dist/commands/recipes.js +3 -3
- package/dist/commands/release/apply.command.d.ts +1 -1
- package/dist/commands/release/apply.command.d.ts.map +1 -1
- package/dist/commands/release/apply.command.js +15 -379
- package/dist/commands/release/apply.mutation.d.ts +1 -0
- package/dist/commands/release/apply.mutation.d.ts.map +1 -1
- package/dist/commands/release/apply.mutation.js +24 -1
- package/dist/commands/release/apply.pipeline.d.ts +22 -0
- package/dist/commands/release/apply.pipeline.d.ts.map +1 -0
- package/dist/commands/release/apply.pipeline.js +371 -0
- package/dist/commands/release/apply.preflight.d.ts +2 -0
- package/dist/commands/release/apply.preflight.d.ts.map +1 -1
- package/dist/commands/release/apply.preflight.js +13 -4
- package/dist/commands/release/apply.types.d.ts +27 -0
- package/dist/commands/release/apply.types.d.ts.map +1 -1
- package/dist/commands/release.test-helpers.d.ts +4 -0
- package/dist/commands/release.test-helpers.d.ts.map +1 -1
- package/dist/commands/release.test-helpers.js +7 -0
- package/dist/commands/shared/reconcile-check.d.ts.map +1 -1
- package/dist/commands/shared/reconcile-check.js +2 -2
- package/dist/commands/shared/task-backend.d.ts +6 -1
- package/dist/commands/shared/task-backend.d.ts.map +1 -1
- package/dist/commands/shared/task-backend.js +34 -2
- package/dist/commands/shared/task-mutation.d.ts.map +1 -1
- package/dist/commands/shared/task-mutation.js +4 -4
- package/dist/commands/shared/task-store/intents.d.ts +34 -0
- package/dist/commands/shared/task-store/intents.d.ts.map +1 -0
- package/dist/commands/shared/task-store/intents.js +265 -0
- package/dist/commands/shared/task-store/readme.d.ts +28 -0
- package/dist/commands/shared/task-store/readme.d.ts.map +1 -0
- package/dist/commands/shared/task-store/readme.js +125 -0
- package/dist/commands/shared/task-store/store.d.ts +26 -0
- package/dist/commands/shared/task-store/store.d.ts.map +1 -0
- package/dist/commands/shared/task-store/store.js +105 -0
- package/dist/commands/shared/task-store/types.d.ts +94 -0
- package/dist/commands/shared/task-store/types.d.ts.map +1 -0
- package/dist/commands/shared/task-store/types.js +1 -0
- package/dist/commands/shared/task-store.d.ts +3 -109
- package/dist/commands/shared/task-store.d.ts.map +1 -1
- package/dist/commands/shared/task-store.js +2 -493
- package/dist/commands/task/block.d.ts.map +1 -1
- package/dist/commands/task/block.js +7 -2
- package/dist/commands/task/comment.d.ts.map +1 -1
- package/dist/commands/task/comment.js +7 -2
- package/dist/commands/task/finish-shared.d.ts.map +1 -1
- package/dist/commands/task/finish-shared.js +3 -3
- package/dist/commands/task/finish.d.ts.map +1 -1
- package/dist/commands/task/finish.js +102 -15
- package/dist/commands/task/hosted-merge-sync.d.ts.map +1 -1
- package/dist/commands/task/hosted-merge-sync.js +9 -4
- package/dist/commands/task/list.run.d.ts.map +1 -1
- package/dist/commands/task/list.run.js +14 -4
- package/dist/commands/task/new.command.d.ts.map +1 -1
- package/dist/commands/task/new.command.js +16 -2
- package/dist/commands/task/new.js +2 -2
- package/dist/commands/task/show.d.ts.map +1 -1
- package/dist/commands/task/show.js +3 -3
- package/dist/commands/task/update.d.ts.map +1 -1
- package/dist/commands/task/update.js +11 -3
- package/dist/runner/adapters/codex.d.ts.map +1 -1
- package/dist/runner/adapters/codex.js +3 -33
- package/dist/runner/adapters/custom.d.ts.map +1 -1
- package/dist/runner/adapters/custom.js +3 -30
- package/dist/runner/adapters/runtime-shared.d.ts +14 -0
- package/dist/runner/adapters/runtime-shared.d.ts.map +1 -0
- package/dist/runner/adapters/runtime-shared.js +36 -0
- package/dist/runner/context/base-prompt-sources.d.ts +30 -0
- package/dist/runner/context/base-prompt-sources.d.ts.map +1 -0
- package/dist/runner/context/base-prompt-sources.js +144 -0
- package/dist/runner/context/base-prompts.d.ts +3 -22
- package/dist/runner/context/base-prompts.d.ts.map +1 -1
- package/dist/runner/context/base-prompts.js +6 -450
- package/dist/runner/context/overlay-prompt-blocks.d.ts +7 -0
- package/dist/runner/context/overlay-prompt-blocks.d.ts.map +1 -0
- package/dist/runner/context/overlay-prompt-blocks.js +72 -0
- package/dist/runner/context/prompt-block-shared.d.ts +54 -0
- package/dist/runner/context/prompt-block-shared.d.ts.map +1 -0
- package/dist/runner/context/prompt-block-shared.js +106 -0
- package/dist/runner/context/recipe-context.d.ts +2 -1
- package/dist/runner/context/recipe-context.d.ts.map +1 -1
- package/dist/runner/context/recipe-context.js +2 -1
- package/dist/runner/context/recipe-prompt-blocks.d.ts +6 -0
- package/dist/runner/context/recipe-prompt-blocks.d.ts.map +1 -0
- package/dist/runner/context/recipe-prompt-blocks.js +143 -0
- package/dist/runner/usecases/scenario-materialize-task.js +2 -2
- package/dist/runner/usecases/task-run-inspect.js +2 -2
- package/dist/runner/usecases/task-run-lifecycle-shared.js +2 -2
- package/dist/runner/usecases/task-run.d.ts.map +1 -1
- package/dist/runner/usecases/task-run.js +4 -2
- package/dist/runtime/capabilities/recipe.d.ts +1 -1
- package/dist/runtime/capabilities/recipe.d.ts.map +1 -1
- package/dist/runtime/execution-context.d.ts +63 -0
- package/dist/runtime/execution-context.d.ts.map +1 -0
- package/dist/{usecases/context/resolve-context.js → runtime/execution-context.js} +23 -26
- package/dist/runtime/incidents/advice-strategy.d.ts +15 -0
- package/dist/runtime/incidents/advice-strategy.d.ts.map +1 -0
- package/dist/runtime/incidents/advice-strategy.js +54 -0
- package/dist/runtime/incidents/plan-strategy.d.ts +9 -0
- package/dist/runtime/incidents/plan-strategy.d.ts.map +1 -0
- package/dist/runtime/incidents/plan-strategy.js +205 -0
- package/dist/runtime/incidents/registry-strategy.d.ts +6 -0
- package/dist/runtime/incidents/registry-strategy.d.ts.map +1 -0
- package/dist/runtime/incidents/registry-strategy.js +280 -0
- package/dist/runtime/incidents/resolve.d.ts +3 -25
- package/dist/runtime/incidents/resolve.d.ts.map +1 -1
- package/dist/runtime/incidents/resolve.js +3 -683
- package/dist/runtime/incidents/shared.d.ts +34 -0
- package/dist/runtime/incidents/shared.d.ts.map +1 -0
- package/dist/runtime/incidents/shared.js +171 -0
- package/dist/testing/cli-harness/recipe-archives.d.ts +28 -0
- package/dist/testing/cli-harness/recipe-archives.d.ts.map +1 -0
- package/dist/testing/cli-harness/recipe-archives.js +374 -0
- package/dist/testing/cli-harness/stdio.d.ts +26 -0
- package/dist/testing/cli-harness/stdio.d.ts.map +1 -0
- package/dist/testing/cli-harness/stdio.js +84 -0
- package/dist/testing/cli-harness.d.ts +25 -0
- package/dist/testing/cli-harness.d.ts.map +1 -0
- package/dist/testing/cli-harness.js +313 -0
- package/dist/testing/index.d.ts +2 -0
- package/dist/testing/index.d.ts.map +1 -0
- package/dist/testing/index.js +1 -0
- package/package.json +7 -4
- package/dist/commands/recipes/impl/manifest.d.ts +0 -4
- package/dist/commands/recipes/impl/manifest.d.ts.map +0 -1
- package/dist/commands/recipes/impl/manifest.js +0 -7
- package/dist/commands/recipes/impl/normalize.d.ts +0 -8
- package/dist/commands/recipes/impl/normalize.d.ts.map +0 -1
- package/dist/commands/recipes/impl/normalize.js +0 -54
- package/dist/commands/recipes/impl/scenario.d.ts +0 -16
- package/dist/commands/recipes/impl/scenario.d.ts.map +0 -1
- package/dist/commands/recipes/impl/scenario.js +0 -262
- package/dist/recipes/bundled-recipes.d.ts +0 -17
- package/dist/recipes/bundled-recipes.d.ts.map +0 -1
- package/dist/recipes/bundled-recipes.js +0 -15
- package/dist/usecases/context/resolve-context.d.ts +0 -68
- package/dist/usecases/context/resolve-context.d.ts.map +0 -1
- package/dist/usecases/task/task-list-usecase.d.ts +0 -9
- package/dist/usecases/task/task-list-usecase.d.ts.map +0 -1
- package/dist/usecases/task/task-list-usecase.js +0 -17
- package/dist/usecases/task/task-new-usecase.d.ts +0 -9
- package/dist/usecases/task/task-new-usecase.d.ts.map +0 -1
- package/dist/usecases/task/task-new-usecase.js +0 -17
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema_version": 1,
|
|
3
3
|
"package_dir": "/home/runner/work/agentplane/agentplane/packages/agentplane",
|
|
4
|
-
"generated_at": "2026-04-
|
|
5
|
-
"git_head": "
|
|
6
|
-
"src_cli_mtime_ms":
|
|
4
|
+
"generated_at": "2026-04-18T17:41:22.416Z",
|
|
5
|
+
"git_head": "2568c8cffc5363f691985c954f3850e6949696ce",
|
|
6
|
+
"src_cli_mtime_ms": 1776534022828.2769,
|
|
7
7
|
"src_index_mtime_ms": null,
|
|
8
|
-
"dist_cli_mtime_ms":
|
|
8
|
+
"dist_cli_mtime_ms": 1776534081691.345,
|
|
9
9
|
"dist_index_mtime_ms": null,
|
|
10
|
-
"tsbuildinfo_mtime_ms":
|
|
10
|
+
"tsbuildinfo_mtime_ms": 1776534081770.3457,
|
|
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": "a7088fb638df2cd3028887db6544d5ce43835e35771963cff9740da4ab4fa568",
|
|
19
19
|
"watched_runtime_files": [
|
|
20
20
|
{
|
|
21
21
|
"path": "bin/agentplane.js",
|
|
@@ -314,8 +314,8 @@
|
|
|
314
314
|
},
|
|
315
315
|
{
|
|
316
316
|
"path": "src/cli/output.ts",
|
|
317
|
-
"sha256": "
|
|
318
|
-
"size_bytes":
|
|
317
|
+
"sha256": "e8d452c975c0ef2e804fe0e21942f217ea67dade7036722659889a6b20718652",
|
|
318
|
+
"size_bytes": 7982
|
|
319
319
|
},
|
|
320
320
|
{
|
|
321
321
|
"path": "src/cli/prompts.ts",
|
|
@@ -329,13 +329,13 @@
|
|
|
329
329
|
},
|
|
330
330
|
{
|
|
331
331
|
"path": "src/cli/run-cli.test-helpers.ts",
|
|
332
|
-
"sha256": "
|
|
333
|
-
"size_bytes":
|
|
332
|
+
"sha256": "b01835ff30531ed8135253a19f47d8779c3913345d4024c2d94a851ff7b7e84a",
|
|
333
|
+
"size_bytes": 37
|
|
334
334
|
},
|
|
335
335
|
{
|
|
336
336
|
"path": "src/cli/run-cli.ts",
|
|
337
|
-
"sha256": "
|
|
338
|
-
"size_bytes":
|
|
337
|
+
"sha256": "95f7ed37b529ad5d4ecdbe5fac47ccf8c59dd22634e2b74399d0d9c19ac1003b",
|
|
338
|
+
"size_bytes": 11518
|
|
339
339
|
},
|
|
340
340
|
{
|
|
341
341
|
"path": "src/cli/run-cli/command-catalog.ts",
|
|
@@ -344,28 +344,28 @@
|
|
|
344
344
|
},
|
|
345
345
|
{
|
|
346
346
|
"path": "src/cli/run-cli/command-catalog/core.ts",
|
|
347
|
-
"sha256": "
|
|
348
|
-
"size_bytes":
|
|
347
|
+
"sha256": "2a4cfe21fe8261dd49862ad7358bc512c2bf8eedf6f838f3abf625faf15b2cf3",
|
|
348
|
+
"size_bytes": 7025
|
|
349
349
|
},
|
|
350
350
|
{
|
|
351
351
|
"path": "src/cli/run-cli/command-catalog/lifecycle.ts",
|
|
352
|
-
"sha256": "
|
|
353
|
-
"size_bytes":
|
|
352
|
+
"sha256": "d43ac9add06180f0f5983769f13cc78e3a7e6bd2401723938b0673981ba6cb09",
|
|
353
|
+
"size_bytes": 3959
|
|
354
354
|
},
|
|
355
355
|
{
|
|
356
356
|
"path": "src/cli/run-cli/command-catalog/project.ts",
|
|
357
|
-
"sha256": "
|
|
358
|
-
"size_bytes":
|
|
357
|
+
"sha256": "f54c781f17aac4f99239ba9353a633348b6afecc81054a41224b8285cefa295b",
|
|
358
|
+
"size_bytes": 7721
|
|
359
359
|
},
|
|
360
360
|
{
|
|
361
361
|
"path": "src/cli/run-cli/command-catalog/shared.ts",
|
|
362
|
-
"sha256": "
|
|
363
|
-
"size_bytes":
|
|
362
|
+
"sha256": "365dc01b61d4e9cdc9eaa573f65ddb223d1377cd29b0ee4ad45e3321f3460314",
|
|
363
|
+
"size_bytes": 2224
|
|
364
364
|
},
|
|
365
365
|
{
|
|
366
366
|
"path": "src/cli/run-cli/command-catalog/task.ts",
|
|
367
|
-
"sha256": "
|
|
368
|
-
"size_bytes":
|
|
367
|
+
"sha256": "e9b0ea249fff738ac37cde3207db7016529cc96457c7932af537c8f5352710a0",
|
|
368
|
+
"size_bytes": 12257
|
|
369
369
|
},
|
|
370
370
|
{
|
|
371
371
|
"path": "src/cli/run-cli/commands/codex.ts",
|
|
@@ -439,8 +439,8 @@
|
|
|
439
439
|
},
|
|
440
440
|
{
|
|
441
441
|
"path": "src/cli/run-cli/commands/init/recipes.ts",
|
|
442
|
-
"sha256": "
|
|
443
|
-
"size_bytes":
|
|
442
|
+
"sha256": "d8a401dd8fff5c86b5a54bca8e98ffcbd74104eb1b8647436ec604e84beb68b3",
|
|
443
|
+
"size_bytes": 1754
|
|
444
444
|
},
|
|
445
445
|
{
|
|
446
446
|
"path": "src/cli/run-cli/commands/init/ui.ts",
|
|
@@ -584,8 +584,8 @@
|
|
|
584
584
|
},
|
|
585
585
|
{
|
|
586
586
|
"path": "src/commands/branch/cleanup-merged.ts",
|
|
587
|
-
"sha256": "
|
|
588
|
-
"size_bytes":
|
|
587
|
+
"sha256": "612617e040f1d94599ba351f2e11d74ce7f61d353fbbe3a635dbcb628e1fb083",
|
|
588
|
+
"size_bytes": 10305
|
|
589
589
|
},
|
|
590
590
|
{
|
|
591
591
|
"path": "src/commands/branch/index.ts",
|
|
@@ -624,8 +624,8 @@
|
|
|
624
624
|
},
|
|
625
625
|
{
|
|
626
626
|
"path": "src/commands/branch/work-start.command.ts",
|
|
627
|
-
"sha256": "
|
|
628
|
-
"size_bytes":
|
|
627
|
+
"sha256": "0200fa8dc9920565d081d2b716432142ce0aec4cbedc979ebcc07348733b94d4",
|
|
628
|
+
"size_bytes": 3227
|
|
629
629
|
},
|
|
630
630
|
{
|
|
631
631
|
"path": "src/commands/branch/work-start.ts",
|
|
@@ -649,8 +649,8 @@
|
|
|
649
649
|
},
|
|
650
650
|
{
|
|
651
651
|
"path": "src/commands/commit.spec.ts",
|
|
652
|
-
"sha256": "
|
|
653
|
-
"size_bytes":
|
|
652
|
+
"sha256": "85b782275c366aa26632f6b4952f65eedea8490ccf1ef73f9ecebc8930e2eda3",
|
|
653
|
+
"size_bytes": 7562
|
|
654
654
|
},
|
|
655
655
|
{
|
|
656
656
|
"path": "src/commands/docs/cli.command.ts",
|
|
@@ -674,8 +674,8 @@
|
|
|
674
674
|
},
|
|
675
675
|
{
|
|
676
676
|
"path": "src/commands/doctor/branch-pr.ts",
|
|
677
|
-
"sha256": "
|
|
678
|
-
"size_bytes":
|
|
677
|
+
"sha256": "921ecaa266ab1f05dc745992bba7023b2a4d405d4a34667efc07b2cd6ad2f458",
|
|
678
|
+
"size_bytes": 4105
|
|
679
679
|
},
|
|
680
680
|
{
|
|
681
681
|
"path": "src/commands/doctor/fixes.ts",
|
|
@@ -739,18 +739,18 @@
|
|
|
739
739
|
},
|
|
740
740
|
{
|
|
741
741
|
"path": "src/commands/guard/impl/commands.ts",
|
|
742
|
-
"sha256": "
|
|
743
|
-
"size_bytes":
|
|
742
|
+
"sha256": "c7ca58f958a448ac4f64501c10a84b487c1df68545d8a85e2d631daaa53d97dd",
|
|
743
|
+
"size_bytes": 22526
|
|
744
744
|
},
|
|
745
745
|
{
|
|
746
746
|
"path": "src/commands/guard/impl/comment-commit.ts",
|
|
747
|
-
"sha256": "
|
|
748
|
-
"size_bytes":
|
|
747
|
+
"sha256": "b580567e1c16c06907699a0d2c3e92515a9e50143f2e8fcaca713b56a9ab97ae",
|
|
748
|
+
"size_bytes": 5373
|
|
749
749
|
},
|
|
750
750
|
{
|
|
751
751
|
"path": "src/commands/guard/impl/env.ts",
|
|
752
|
-
"sha256": "
|
|
753
|
-
"size_bytes":
|
|
752
|
+
"sha256": "a7793f583b513c1e7fdf9228168e87fd4b5d09d8234e536106a841cbc788dad5",
|
|
753
|
+
"size_bytes": 2498
|
|
754
754
|
},
|
|
755
755
|
{
|
|
756
756
|
"path": "src/commands/guard/impl/policy.ts",
|
|
@@ -904,8 +904,8 @@
|
|
|
904
904
|
},
|
|
905
905
|
{
|
|
906
906
|
"path": "src/commands/pr/internal/auto-commit.ts",
|
|
907
|
-
"sha256": "
|
|
908
|
-
"size_bytes":
|
|
907
|
+
"sha256": "c167e47703cf9d85a1dad09427065cdf622fcc26b12c97760cf03d4320ef0c03",
|
|
908
|
+
"size_bytes": 2954
|
|
909
909
|
},
|
|
910
910
|
{
|
|
911
911
|
"path": "src/commands/pr/internal/freshness.ts",
|
|
@@ -932,10 +932,40 @@
|
|
|
932
932
|
"sha256": "93a98a192f280dba109f85c4b17ed7efd67d03c40896738102729bff16902af2",
|
|
933
933
|
"size_bytes": 9018
|
|
934
934
|
},
|
|
935
|
+
{
|
|
936
|
+
"path": "src/commands/pr/internal/sync-branch.ts",
|
|
937
|
+
"sha256": "b6c1dd6cd7beebe0afc01ff57393b70a980bff932742d08160e6d1e4c4f72d33",
|
|
938
|
+
"size_bytes": 4478
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
"path": "src/commands/pr/internal/sync-github.ts",
|
|
942
|
+
"sha256": "7cbb2918a1829976cb92e59c1a3ebc1ceb21567bb2328c58ce2e6df663f7eaac",
|
|
943
|
+
"size_bytes": 7048
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
"path": "src/commands/pr/internal/sync-model.ts",
|
|
947
|
+
"sha256": "0300f1469ec0c4ce45781b11eceb51e7b6c3eeaf34eb009ab18b2a7bd5cdc4ab",
|
|
948
|
+
"size_bytes": 1009
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
"path": "src/commands/pr/internal/sync-open-step.ts",
|
|
952
|
+
"sha256": "cbcc14b50b5a465e70935bfb13c0a24cd4d62aceab905c47da63b911d14d9dc8",
|
|
953
|
+
"size_bytes": 5036
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
"path": "src/commands/pr/internal/sync-support.ts",
|
|
957
|
+
"sha256": "1f5fad11ad90de1983bebba6a224b244672de3d3595b44c76db854acc15a034c",
|
|
958
|
+
"size_bytes": 1039
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
"path": "src/commands/pr/internal/sync-update-step.ts",
|
|
962
|
+
"sha256": "787b1afc9c1704ac3e1b54e048a945f911e1a7ffd0c97e959486dab51574d0f2",
|
|
963
|
+
"size_bytes": 2826
|
|
964
|
+
},
|
|
935
965
|
{
|
|
936
966
|
"path": "src/commands/pr/internal/sync.ts",
|
|
937
|
-
"sha256": "
|
|
938
|
-
"size_bytes":
|
|
967
|
+
"sha256": "5098844e2fadaf0daa6aa6ee2e133d9f9e964d5e113e4c4272bce53aae12ecca",
|
|
968
|
+
"size_bytes": 9345
|
|
939
969
|
},
|
|
940
970
|
{
|
|
941
971
|
"path": "src/commands/pr/note.ts",
|
|
@@ -944,13 +974,13 @@
|
|
|
944
974
|
},
|
|
945
975
|
{
|
|
946
976
|
"path": "src/commands/pr/open.ts",
|
|
947
|
-
"sha256": "
|
|
948
|
-
"size_bytes":
|
|
977
|
+
"sha256": "6a0ab4b15a4a4d5253ff9c05671d159cd04f2d45a62d9dabc5d5bd39e1ab920b",
|
|
978
|
+
"size_bytes": 4212
|
|
949
979
|
},
|
|
950
980
|
{
|
|
951
981
|
"path": "src/commands/pr/pr.command.ts",
|
|
952
|
-
"sha256": "
|
|
953
|
-
"size_bytes":
|
|
982
|
+
"sha256": "c3d3b01b318818ac8acf4d8407587674d96923ae8b4449a8734fb4456edf70c5",
|
|
983
|
+
"size_bytes": 11311
|
|
954
984
|
},
|
|
955
985
|
{
|
|
956
986
|
"path": "src/commands/pr/update.ts",
|
|
@@ -969,8 +999,8 @@
|
|
|
969
999
|
},
|
|
970
1000
|
{
|
|
971
1001
|
"path": "src/commands/recipes.ts",
|
|
972
|
-
"sha256": "
|
|
973
|
-
"size_bytes":
|
|
1002
|
+
"sha256": "0002789e7072a11a1735cfc03dd3223240f737c2774c52d1a34cb96fdbffbd60",
|
|
1003
|
+
"size_bytes": 2638
|
|
974
1004
|
},
|
|
975
1005
|
{
|
|
976
1006
|
"path": "src/commands/recipes/active.command.ts",
|
|
@@ -1019,8 +1049,8 @@
|
|
|
1019
1049
|
},
|
|
1020
1050
|
{
|
|
1021
1051
|
"path": "src/commands/recipes/impl/apply.ts",
|
|
1022
|
-
"sha256": "
|
|
1023
|
-
"size_bytes":
|
|
1052
|
+
"sha256": "d7b30b0f6f10159ee3bd0f9d6b70a40d46a6f4b4c198b8b2836f46424f873af3",
|
|
1053
|
+
"size_bytes": 6884
|
|
1024
1054
|
},
|
|
1025
1055
|
{
|
|
1026
1056
|
"path": "src/commands/recipes/impl/archive.ts",
|
|
@@ -1034,13 +1064,13 @@
|
|
|
1034
1064
|
},
|
|
1035
1065
|
{
|
|
1036
1066
|
"path": "src/commands/recipes/impl/commands/active.ts",
|
|
1037
|
-
"sha256": "
|
|
1038
|
-
"size_bytes":
|
|
1067
|
+
"sha256": "fa4bf992e0f499ef77f64bdcd0e219daf3598585b79a78258788586bc1595249",
|
|
1068
|
+
"size_bytes": 1703
|
|
1039
1069
|
},
|
|
1040
1070
|
{
|
|
1041
1071
|
"path": "src/commands/recipes/impl/commands/add.ts",
|
|
1042
|
-
"sha256": "
|
|
1043
|
-
"size_bytes":
|
|
1072
|
+
"sha256": "72c7c8d807e7536c275df37679e6c5d68bcc05b9f19eeb612ea005a1a0685dff",
|
|
1073
|
+
"size_bytes": 5259
|
|
1044
1074
|
},
|
|
1045
1075
|
{
|
|
1046
1076
|
"path": "src/commands/recipes/impl/commands/cache-prune.ts",
|
|
@@ -1049,18 +1079,18 @@
|
|
|
1049
1079
|
},
|
|
1050
1080
|
{
|
|
1051
1081
|
"path": "src/commands/recipes/impl/commands/detach.ts",
|
|
1052
|
-
"sha256": "
|
|
1053
|
-
"size_bytes":
|
|
1082
|
+
"sha256": "7e08a2d8fc11e44f760521a9db29646d948662c243bc5d057dfad3f3ff697910",
|
|
1083
|
+
"size_bytes": 4701
|
|
1054
1084
|
},
|
|
1055
1085
|
{
|
|
1056
1086
|
"path": "src/commands/recipes/impl/commands/disable.ts",
|
|
1057
|
-
"sha256": "
|
|
1058
|
-
"size_bytes":
|
|
1087
|
+
"sha256": "69ec8fac07673656b9d322d8980bd9dab4fbf55d34964f3c2d4ac054dfb844bd",
|
|
1088
|
+
"size_bytes": 1105
|
|
1059
1089
|
},
|
|
1060
1090
|
{
|
|
1061
1091
|
"path": "src/commands/recipes/impl/commands/enable.ts",
|
|
1062
|
-
"sha256": "
|
|
1063
|
-
"size_bytes":
|
|
1092
|
+
"sha256": "25e7fd0edba2018ca8a7331f70a44332d99aea8da8655f635a1e1e9c8e289bdf",
|
|
1093
|
+
"size_bytes": 1779
|
|
1064
1094
|
},
|
|
1065
1095
|
{
|
|
1066
1096
|
"path": "src/commands/recipes/impl/commands/explain-active.ts",
|
|
@@ -1069,38 +1099,38 @@
|
|
|
1069
1099
|
},
|
|
1070
1100
|
{
|
|
1071
1101
|
"path": "src/commands/recipes/impl/commands/explain.ts",
|
|
1072
|
-
"sha256": "
|
|
1073
|
-
"size_bytes":
|
|
1102
|
+
"sha256": "3e0b4a462d2f362787b6ffea5c94eaa77eda12944fd0bea377c5031a660214b5",
|
|
1103
|
+
"size_bytes": 8429
|
|
1074
1104
|
},
|
|
1075
1105
|
{
|
|
1076
1106
|
"path": "src/commands/recipes/impl/commands/info.ts",
|
|
1077
|
-
"sha256": "
|
|
1078
|
-
"size_bytes":
|
|
1107
|
+
"sha256": "d4f8cd9a481070523406685040e83112e678f2a0dba7a30bd44ca1d9e25c1932",
|
|
1108
|
+
"size_bytes": 3290
|
|
1079
1109
|
},
|
|
1080
1110
|
{
|
|
1081
1111
|
"path": "src/commands/recipes/impl/commands/install.ts",
|
|
1082
|
-
"sha256": "
|
|
1083
|
-
"size_bytes":
|
|
1112
|
+
"sha256": "c88a295ca31af6a6671300fabf958ff89338755eef3f11e29482687eb335a25a",
|
|
1113
|
+
"size_bytes": 9912
|
|
1084
1114
|
},
|
|
1085
1115
|
{
|
|
1086
1116
|
"path": "src/commands/recipes/impl/commands/list-remote.ts",
|
|
1087
|
-
"sha256": "
|
|
1088
|
-
"size_bytes":
|
|
1117
|
+
"sha256": "06756e6ffbe60813c876a90d027e1b33ae648e25cb1d11c0290b4caa9aa42d0f",
|
|
1118
|
+
"size_bytes": 2174
|
|
1089
1119
|
},
|
|
1090
1120
|
{
|
|
1091
1121
|
"path": "src/commands/recipes/impl/commands/list.ts",
|
|
1092
|
-
"sha256": "
|
|
1093
|
-
"size_bytes":
|
|
1122
|
+
"sha256": "4dcd8bceb8ab8c57b68ec279fc0cb581ac68b34c30075d1b284c9f47cf8a680a",
|
|
1123
|
+
"size_bytes": 1763
|
|
1094
1124
|
},
|
|
1095
1125
|
{
|
|
1096
1126
|
"path": "src/commands/recipes/impl/commands/remove.ts",
|
|
1097
|
-
"sha256": "
|
|
1098
|
-
"size_bytes":
|
|
1127
|
+
"sha256": "b10772934b928dec3435ba442e53d30f9387a58a95498542f10c7c8c1abb4861",
|
|
1128
|
+
"size_bytes": 2342
|
|
1099
1129
|
},
|
|
1100
1130
|
{
|
|
1101
1131
|
"path": "src/commands/recipes/impl/commands/update.ts",
|
|
1102
|
-
"sha256": "
|
|
1103
|
-
"size_bytes":
|
|
1132
|
+
"sha256": "d0860e34a3d3d0a50b0af731e5fb0a7fc788de93eb1a19eea4a64d38909e280b",
|
|
1133
|
+
"size_bytes": 5222
|
|
1104
1134
|
},
|
|
1105
1135
|
{
|
|
1106
1136
|
"path": "src/commands/recipes/impl/constants.ts",
|
|
@@ -1114,48 +1144,43 @@
|
|
|
1114
1144
|
},
|
|
1115
1145
|
{
|
|
1116
1146
|
"path": "src/commands/recipes/impl/index.ts",
|
|
1117
|
-
"sha256": "
|
|
1118
|
-
"size_bytes":
|
|
1147
|
+
"sha256": "fdb62add3cb739d31bfc31bb378e41ca9538799155a32b6064a3da00e9fb0698",
|
|
1148
|
+
"size_bytes": 7094
|
|
1119
1149
|
},
|
|
1120
1150
|
{
|
|
1121
1151
|
"path": "src/commands/recipes/impl/installed-recipes.ts",
|
|
1122
|
-
"sha256": "
|
|
1123
|
-
"size_bytes":
|
|
1124
|
-
},
|
|
1125
|
-
{
|
|
1126
|
-
"path": "src/commands/recipes/impl/manifest.ts",
|
|
1127
|
-
"sha256": "d415d5903159f2d5e2190996a91cc3f9c1bd3a53f144a8779c4f058dee4aa89e",
|
|
1128
|
-
"size_bytes": 425
|
|
1152
|
+
"sha256": "13c8c7b63d672d9588edc8c54c79fa8e35df4ac5caca174b2cd641563a2a3627",
|
|
1153
|
+
"size_bytes": 2974
|
|
1129
1154
|
},
|
|
1130
1155
|
{
|
|
1131
|
-
"path": "src/commands/recipes/impl/
|
|
1132
|
-
"sha256": "
|
|
1133
|
-
"size_bytes":
|
|
1156
|
+
"path": "src/commands/recipes/impl/mutation-transaction.ts",
|
|
1157
|
+
"sha256": "f3ddedc3fbbd6fe52d862798deb25b281e13f6551e290ec94916d1974f5e4935",
|
|
1158
|
+
"size_bytes": 1580
|
|
1134
1159
|
},
|
|
1135
1160
|
{
|
|
1136
1161
|
"path": "src/commands/recipes/impl/overlay-project.ts",
|
|
1137
|
-
"sha256": "
|
|
1138
|
-
"size_bytes":
|
|
1162
|
+
"sha256": "0f096d3dd4dc67cd2916accdbfe0a57d9ea41f7bb42006ad177bfc891470f621",
|
|
1163
|
+
"size_bytes": 13972
|
|
1139
1164
|
},
|
|
1140
1165
|
{
|
|
1141
1166
|
"path": "src/commands/recipes/impl/paths.ts",
|
|
1142
|
-
"sha256": "
|
|
1143
|
-
"size_bytes":
|
|
1167
|
+
"sha256": "4fc36987f586d974e01c6de147b298fad769878b40b1a8362a41ee7bf0c63a30",
|
|
1168
|
+
"size_bytes": 2837
|
|
1144
1169
|
},
|
|
1145
1170
|
{
|
|
1146
1171
|
"path": "src/commands/recipes/impl/project-installed-recipes.ts",
|
|
1147
|
-
"sha256": "
|
|
1148
|
-
"size_bytes":
|
|
1172
|
+
"sha256": "3c08758e0e4e497a8787659444982a68b8e934c3b5490534f768ff08a45161a3",
|
|
1173
|
+
"size_bytes": 3016
|
|
1149
1174
|
},
|
|
1150
1175
|
{
|
|
1151
1176
|
"path": "src/commands/recipes/impl/project-recipe-state.ts",
|
|
1152
|
-
"sha256": "
|
|
1153
|
-
"size_bytes":
|
|
1177
|
+
"sha256": "78d59a9ae4eec4f1657aa923c2acce245666ac1fa0dfd826f178988778df0148",
|
|
1178
|
+
"size_bytes": 4195
|
|
1154
1179
|
},
|
|
1155
1180
|
{
|
|
1156
1181
|
"path": "src/commands/recipes/impl/project-registry.ts",
|
|
1157
|
-
"sha256": "
|
|
1158
|
-
"size_bytes":
|
|
1182
|
+
"sha256": "6a97b1003a5ebd09a5829252af2e64a6acef0ba7b7a6cf923b95b4de96b999b4",
|
|
1183
|
+
"size_bytes": 5986
|
|
1159
1184
|
},
|
|
1160
1185
|
{
|
|
1161
1186
|
"path": "src/commands/recipes/impl/project.ts",
|
|
@@ -1164,18 +1189,18 @@
|
|
|
1164
1189
|
},
|
|
1165
1190
|
{
|
|
1166
1191
|
"path": "src/commands/recipes/impl/resolver.ts",
|
|
1167
|
-
"sha256": "
|
|
1168
|
-
"size_bytes":
|
|
1192
|
+
"sha256": "fe90a73b3a728ee3fa013cd2dbc68a36feb6455111f33c9927add60001a9986e",
|
|
1193
|
+
"size_bytes": 11835
|
|
1169
1194
|
},
|
|
1170
1195
|
{
|
|
1171
|
-
"path": "src/commands/recipes/impl/
|
|
1172
|
-
"sha256": "
|
|
1173
|
-
"size_bytes":
|
|
1196
|
+
"path": "src/commands/recipes/impl/types.ts",
|
|
1197
|
+
"sha256": "1df01153ed1758e5eea65b2956f1dcf1bf622c51941f42426656ab11942e5c0a",
|
|
1198
|
+
"size_bytes": 1390
|
|
1174
1199
|
},
|
|
1175
1200
|
{
|
|
1176
|
-
"path": "src/commands/recipes/impl/
|
|
1177
|
-
"sha256": "
|
|
1178
|
-
"size_bytes":
|
|
1201
|
+
"path": "src/commands/recipes/impl/version.ts",
|
|
1202
|
+
"sha256": "1e0c56206f6d96d1ebac539cedbb42f4978c97f3bc0d403daf7390bcc484226e",
|
|
1203
|
+
"size_bytes": 426
|
|
1179
1204
|
},
|
|
1180
1205
|
{
|
|
1181
1206
|
"path": "src/commands/recipes/info.command.ts",
|
|
@@ -1219,23 +1244,28 @@
|
|
|
1219
1244
|
},
|
|
1220
1245
|
{
|
|
1221
1246
|
"path": "src/commands/release.test-helpers.ts",
|
|
1222
|
-
"sha256": "
|
|
1223
|
-
"size_bytes":
|
|
1247
|
+
"sha256": "f53ff6de71cc8af390c872439bcb35f27314c9fd04ee63e5359e4d68994ebb21",
|
|
1248
|
+
"size_bytes": 3186
|
|
1224
1249
|
},
|
|
1225
1250
|
{
|
|
1226
1251
|
"path": "src/commands/release/apply.command.ts",
|
|
1227
|
-
"sha256": "
|
|
1228
|
-
"size_bytes":
|
|
1252
|
+
"sha256": "099b4bb3509d7ce0102f6739821695bc426d1fc3575727c78ecfae291a2da50b",
|
|
1253
|
+
"size_bytes": 13551
|
|
1229
1254
|
},
|
|
1230
1255
|
{
|
|
1231
1256
|
"path": "src/commands/release/apply.mutation.ts",
|
|
1232
|
-
"sha256": "
|
|
1233
|
-
"size_bytes":
|
|
1257
|
+
"sha256": "c88dd2318e186bae8f4d03ce0e2a23c8c22146754a90570fbfb7e279cd0898b3",
|
|
1258
|
+
"size_bytes": 5665
|
|
1259
|
+
},
|
|
1260
|
+
{
|
|
1261
|
+
"path": "src/commands/release/apply.pipeline.ts",
|
|
1262
|
+
"sha256": "5362a3aa8d57e38ae025310ec1a622b573ff1eb8080054bc6444ed557ed4af15",
|
|
1263
|
+
"size_bytes": 18469
|
|
1234
1264
|
},
|
|
1235
1265
|
{
|
|
1236
1266
|
"path": "src/commands/release/apply.preflight.ts",
|
|
1237
|
-
"sha256": "
|
|
1238
|
-
"size_bytes":
|
|
1267
|
+
"sha256": "fea499ab4adddef9c077cbd461a943cd075d637ddaf795300a96a9216de51c9a",
|
|
1268
|
+
"size_bytes": 15333
|
|
1239
1269
|
},
|
|
1240
1270
|
{
|
|
1241
1271
|
"path": "src/commands/release/apply.reporting.ts",
|
|
@@ -1244,8 +1274,8 @@
|
|
|
1244
1274
|
},
|
|
1245
1275
|
{
|
|
1246
1276
|
"path": "src/commands/release/apply.types.ts",
|
|
1247
|
-
"sha256": "
|
|
1248
|
-
"size_bytes":
|
|
1277
|
+
"sha256": "173f3159791c6c1f75b935e8cbefa021aad0c2d5aacdd4bf448f96289977f7c7",
|
|
1278
|
+
"size_bytes": 1899
|
|
1249
1279
|
},
|
|
1250
1280
|
{
|
|
1251
1281
|
"path": "src/commands/release/plan.command.ts",
|
|
@@ -1374,13 +1404,13 @@
|
|
|
1374
1404
|
},
|
|
1375
1405
|
{
|
|
1376
1406
|
"path": "src/commands/shared/reconcile-check.ts",
|
|
1377
|
-
"sha256": "
|
|
1378
|
-
"size_bytes":
|
|
1407
|
+
"sha256": "f03a117a7713319df51debc3b7131737158852fe7a98ca1f221543e787d4c3fc",
|
|
1408
|
+
"size_bytes": 6415
|
|
1379
1409
|
},
|
|
1380
1410
|
{
|
|
1381
1411
|
"path": "src/commands/shared/task-backend.ts",
|
|
1382
|
-
"sha256": "
|
|
1383
|
-
"size_bytes":
|
|
1412
|
+
"sha256": "feb1390ee469b94758e3ddd0c96690fd63ce1d59596fecf14797d844eaaed43c",
|
|
1413
|
+
"size_bytes": 12435
|
|
1384
1414
|
},
|
|
1385
1415
|
{
|
|
1386
1416
|
"path": "src/commands/shared/task-handoff.ts",
|
|
@@ -1394,13 +1424,33 @@
|
|
|
1394
1424
|
},
|
|
1395
1425
|
{
|
|
1396
1426
|
"path": "src/commands/shared/task-mutation.ts",
|
|
1397
|
-
"sha256": "
|
|
1398
|
-
"size_bytes":
|
|
1427
|
+
"sha256": "079790fce4c7cafe08e4ebfd0f7fcb202edd55ace9470aee4f19bf8d026b632f",
|
|
1428
|
+
"size_bytes": 4311
|
|
1399
1429
|
},
|
|
1400
1430
|
{
|
|
1401
1431
|
"path": "src/commands/shared/task-store.ts",
|
|
1402
|
-
"sha256": "
|
|
1403
|
-
"size_bytes":
|
|
1432
|
+
"sha256": "299c2a609b0ffeb61365b5e3ef6ca3c957e4db7cc55965523a8e9fa88c1f8c7f",
|
|
1433
|
+
"size_bytes": 615
|
|
1434
|
+
},
|
|
1435
|
+
{
|
|
1436
|
+
"path": "src/commands/shared/task-store/intents.ts",
|
|
1437
|
+
"sha256": "504e895e0e5944f37dcd431337b7acc5bb975c579569845cd58372359a9bbbaa",
|
|
1438
|
+
"size_bytes": 10592
|
|
1439
|
+
},
|
|
1440
|
+
{
|
|
1441
|
+
"path": "src/commands/shared/task-store/readme.ts",
|
|
1442
|
+
"sha256": "d34041afedf9eb8f9f342ac66d7a438d21ffa96216e9f8beba5187063d739c1a",
|
|
1443
|
+
"size_bytes": 5520
|
|
1444
|
+
},
|
|
1445
|
+
{
|
|
1446
|
+
"path": "src/commands/shared/task-store/store.ts",
|
|
1447
|
+
"sha256": "60eed1d28f907753511d603e7253824188e256180789b917309ee4e0939d0cf5",
|
|
1448
|
+
"size_bytes": 4969
|
|
1449
|
+
},
|
|
1450
|
+
{
|
|
1451
|
+
"path": "src/commands/shared/task-store/types.ts",
|
|
1452
|
+
"sha256": "c04e64517495786e9b4d5b1e5b9f886623b4311456b99a9fe4c26b7ef9cffba8",
|
|
1453
|
+
"size_bytes": 3032
|
|
1404
1454
|
},
|
|
1405
1455
|
{
|
|
1406
1456
|
"path": "src/commands/start.run.ts",
|
|
@@ -1434,8 +1484,8 @@
|
|
|
1434
1484
|
},
|
|
1435
1485
|
{
|
|
1436
1486
|
"path": "src/commands/task/block.ts",
|
|
1437
|
-
"sha256": "
|
|
1438
|
-
"size_bytes":
|
|
1487
|
+
"sha256": "a0101e03efb334cc14bddd3568d2369fe90b06b99b3e356ebfefa5f47e88fd32",
|
|
1488
|
+
"size_bytes": 3680
|
|
1439
1489
|
},
|
|
1440
1490
|
{
|
|
1441
1491
|
"path": "src/commands/task/close-duplicate.command.ts",
|
|
@@ -1469,8 +1519,8 @@
|
|
|
1469
1519
|
},
|
|
1470
1520
|
{
|
|
1471
1521
|
"path": "src/commands/task/comment.ts",
|
|
1472
|
-
"sha256": "
|
|
1473
|
-
"size_bytes":
|
|
1522
|
+
"sha256": "6283ea4c0cfde409d6600faa869f80a51434c2f1418d439f3494c2815af61c09",
|
|
1523
|
+
"size_bytes": 2630
|
|
1474
1524
|
},
|
|
1475
1525
|
{
|
|
1476
1526
|
"path": "src/commands/task/derive.command.ts",
|
|
@@ -1534,13 +1584,13 @@
|
|
|
1534
1584
|
},
|
|
1535
1585
|
{
|
|
1536
1586
|
"path": "src/commands/task/finish-shared.ts",
|
|
1537
|
-
"sha256": "
|
|
1538
|
-
"size_bytes":
|
|
1587
|
+
"sha256": "93cd950780b5e38c31d60b1a14283012ff43b48f66260f1431919ec2378ff93e",
|
|
1588
|
+
"size_bytes": 10197
|
|
1539
1589
|
},
|
|
1540
1590
|
{
|
|
1541
1591
|
"path": "src/commands/task/finish.ts",
|
|
1542
|
-
"sha256": "
|
|
1543
|
-
"size_bytes":
|
|
1592
|
+
"sha256": "b8494141b07b607a103303d792ee31946b8ea2fca001ac2af10d6f759bf99859",
|
|
1593
|
+
"size_bytes": 21951
|
|
1544
1594
|
},
|
|
1545
1595
|
{
|
|
1546
1596
|
"path": "src/commands/task/handoff-record.command.ts",
|
|
@@ -1574,8 +1624,8 @@
|
|
|
1574
1624
|
},
|
|
1575
1625
|
{
|
|
1576
1626
|
"path": "src/commands/task/hosted-merge-sync.ts",
|
|
1577
|
-
"sha256": "
|
|
1578
|
-
"size_bytes":
|
|
1627
|
+
"sha256": "148fce5710f57ee50e1feecffe2a167be75344a2657314ae4dc51107127fd69b",
|
|
1628
|
+
"size_bytes": 22451
|
|
1579
1629
|
},
|
|
1580
1630
|
{
|
|
1581
1631
|
"path": "src/commands/task/index.ts",
|
|
@@ -1594,8 +1644,8 @@
|
|
|
1594
1644
|
},
|
|
1595
1645
|
{
|
|
1596
1646
|
"path": "src/commands/task/list.run.ts",
|
|
1597
|
-
"sha256": "
|
|
1598
|
-
"size_bytes":
|
|
1647
|
+
"sha256": "9e636df36baf660fc13c00fc658b2a36ab2dde64e06e10d3841644770525dfec",
|
|
1648
|
+
"size_bytes": 896
|
|
1599
1649
|
},
|
|
1600
1650
|
{
|
|
1601
1651
|
"path": "src/commands/task/list.spec.ts",
|
|
@@ -1629,8 +1679,8 @@
|
|
|
1629
1679
|
},
|
|
1630
1680
|
{
|
|
1631
1681
|
"path": "src/commands/task/new.command.ts",
|
|
1632
|
-
"sha256": "
|
|
1633
|
-
"size_bytes":
|
|
1682
|
+
"sha256": "da0e3f94b1458ee50afcc168d260d0701e338093a6cc40a12e2735be98e6e143",
|
|
1683
|
+
"size_bytes": 970
|
|
1634
1684
|
},
|
|
1635
1685
|
{
|
|
1636
1686
|
"path": "src/commands/task/new.spec.ts",
|
|
@@ -1639,8 +1689,8 @@
|
|
|
1639
1689
|
},
|
|
1640
1690
|
{
|
|
1641
1691
|
"path": "src/commands/task/new.ts",
|
|
1642
|
-
"sha256": "
|
|
1643
|
-
"size_bytes":
|
|
1692
|
+
"sha256": "f5626fb7c5268a8cf648b8f2f71e389e877446b1021ee6aeadd4af91c7fd244d",
|
|
1693
|
+
"size_bytes": 9901
|
|
1644
1694
|
},
|
|
1645
1695
|
{
|
|
1646
1696
|
"path": "src/commands/task/next.run.ts",
|
|
@@ -1849,8 +1899,8 @@
|
|
|
1849
1899
|
},
|
|
1850
1900
|
{
|
|
1851
1901
|
"path": "src/commands/task/shared/tags.ts",
|
|
1852
|
-
"sha256": "
|
|
1853
|
-
"size_bytes":
|
|
1902
|
+
"sha256": "7e1246b5678fd4e01c540b040c9698a95358e130491d7d69847f22045a5fe018",
|
|
1903
|
+
"size_bytes": 8641
|
|
1854
1904
|
},
|
|
1855
1905
|
{
|
|
1856
1906
|
"path": "src/commands/task/shared/transition-command.ts",
|
|
@@ -1879,8 +1929,8 @@
|
|
|
1879
1929
|
},
|
|
1880
1930
|
{
|
|
1881
1931
|
"path": "src/commands/task/show.ts",
|
|
1882
|
-
"sha256": "
|
|
1883
|
-
"size_bytes":
|
|
1932
|
+
"sha256": "1498fbb43da5a438ba71d486c1719c6e06b731a2f6e3fdcfb25111dba4c58136",
|
|
1933
|
+
"size_bytes": 2708
|
|
1884
1934
|
},
|
|
1885
1935
|
{
|
|
1886
1936
|
"path": "src/commands/task/start-ready.command.ts",
|
|
@@ -1909,8 +1959,8 @@
|
|
|
1909
1959
|
},
|
|
1910
1960
|
{
|
|
1911
1961
|
"path": "src/commands/task/update.ts",
|
|
1912
|
-
"sha256": "
|
|
1913
|
-
"size_bytes":
|
|
1962
|
+
"sha256": "2acba2811b0f39907b9b93da04f1679077336dfd2697daab884e2b6460400c53",
|
|
1963
|
+
"size_bytes": 3970
|
|
1914
1964
|
},
|
|
1915
1965
|
{
|
|
1916
1966
|
"path": "src/commands/task/verify-command-shared.ts",
|
|
@@ -2147,20 +2197,15 @@
|
|
|
2147
2197
|
"sha256": "3869fbd4166d41ff20d2c934e154deacb1c8c4e68d55d96f10176c73e42cfe75",
|
|
2148
2198
|
"size_bytes": 583
|
|
2149
2199
|
},
|
|
2150
|
-
{
|
|
2151
|
-
"path": "src/recipes/bundled-recipes.ts",
|
|
2152
|
-
"sha256": "d5028de2b19e56382cb4628536ad641d31f8a6eb3e44014133d395596e4bb4ed",
|
|
2153
|
-
"size_bytes": 925
|
|
2154
|
-
},
|
|
2155
2200
|
{
|
|
2156
2201
|
"path": "src/runner/adapters/codex.ts",
|
|
2157
|
-
"sha256": "
|
|
2158
|
-
"size_bytes":
|
|
2202
|
+
"sha256": "ce77963b67e979f363dbbc76b7b31e335a6459a0399f1886d693a5eb2efc3a77",
|
|
2203
|
+
"size_bytes": 17235
|
|
2159
2204
|
},
|
|
2160
2205
|
{
|
|
2161
2206
|
"path": "src/runner/adapters/custom.ts",
|
|
2162
|
-
"sha256": "
|
|
2163
|
-
"size_bytes":
|
|
2207
|
+
"sha256": "884ae27f5c4bf1a81ac606f51e52ef8092af5d752bcc69d370f6b7c754ef456e",
|
|
2208
|
+
"size_bytes": 22393
|
|
2164
2209
|
},
|
|
2165
2210
|
{
|
|
2166
2211
|
"path": "src/runner/adapters/index.ts",
|
|
@@ -2172,6 +2217,11 @@
|
|
|
2172
2217
|
"sha256": "789359a40f02af302af1136d08548dea78a4b350c3f992639275f642eedcdfaa",
|
|
2173
2218
|
"size_bytes": 2395
|
|
2174
2219
|
},
|
|
2220
|
+
{
|
|
2221
|
+
"path": "src/runner/adapters/runtime-shared.ts",
|
|
2222
|
+
"sha256": "8fc0e13b001513f1d726440cc70bbc2a91ed97548a50a021528021dc03449824",
|
|
2223
|
+
"size_bytes": 2195
|
|
2224
|
+
},
|
|
2175
2225
|
{
|
|
2176
2226
|
"path": "src/runner/adapters/shared.ts",
|
|
2177
2227
|
"sha256": "8b0edf11b0cb5061dc746db5d9d9e0ed50779b5f2724a6fc85a68248eff4a396",
|
|
@@ -2197,15 +2247,35 @@
|
|
|
2197
2247
|
"sha256": "c35259c3bcced29d05352914c2fddd2b80e8689f95596a2f95e22cace9d61dff",
|
|
2198
2248
|
"size_bytes": 836
|
|
2199
2249
|
},
|
|
2250
|
+
{
|
|
2251
|
+
"path": "src/runner/context/base-prompt-sources.ts",
|
|
2252
|
+
"sha256": "c28ed246e49941d73fe7cd34a9d2d4461847eb7d709cb50ef802215c4729c93c",
|
|
2253
|
+
"size_bytes": 6612
|
|
2254
|
+
},
|
|
2200
2255
|
{
|
|
2201
2256
|
"path": "src/runner/context/base-prompts.ts",
|
|
2202
|
-
"sha256": "
|
|
2203
|
-
"size_bytes":
|
|
2257
|
+
"sha256": "927e405a0b3d1f7c3f7e2554f9d44840bd5706df61115d0a4c7d0ef36fda49e4",
|
|
2258
|
+
"size_bytes": 2493
|
|
2259
|
+
},
|
|
2260
|
+
{
|
|
2261
|
+
"path": "src/runner/context/overlay-prompt-blocks.ts",
|
|
2262
|
+
"sha256": "14de9404ebe72a713b9d3bf3891bd64b0a3ac863661383ed463e3d9dd284b596",
|
|
2263
|
+
"size_bytes": 2813
|
|
2264
|
+
},
|
|
2265
|
+
{
|
|
2266
|
+
"path": "src/runner/context/prompt-block-shared.ts",
|
|
2267
|
+
"sha256": "8351a826aaa0df020db1c811e5061256ff02580c7ba245cb20e67f5a5a892f14",
|
|
2268
|
+
"size_bytes": 4129
|
|
2204
2269
|
},
|
|
2205
2270
|
{
|
|
2206
2271
|
"path": "src/runner/context/recipe-context.ts",
|
|
2207
|
-
"sha256": "
|
|
2208
|
-
"size_bytes":
|
|
2272
|
+
"sha256": "cfdc1b6748dcf033abff35e2214ba87c5475426b97112c77e24bcc49936d532f",
|
|
2273
|
+
"size_bytes": 4476
|
|
2274
|
+
},
|
|
2275
|
+
{
|
|
2276
|
+
"path": "src/runner/context/recipe-prompt-blocks.ts",
|
|
2277
|
+
"sha256": "76c6d947cdf1f0067c4d69ddb88d32cbb719d3f645efe8e299c970b2d533d8a5",
|
|
2278
|
+
"size_bytes": 6587
|
|
2209
2279
|
},
|
|
2210
2280
|
{
|
|
2211
2281
|
"path": "src/runner/context/task-context.ts",
|
|
@@ -2284,13 +2354,13 @@
|
|
|
2284
2354
|
},
|
|
2285
2355
|
{
|
|
2286
2356
|
"path": "src/runner/usecases/scenario-materialize-task.ts",
|
|
2287
|
-
"sha256": "
|
|
2288
|
-
"size_bytes":
|
|
2357
|
+
"sha256": "0c729af9e15422f2763ac524fd6c8cb57c2a47a4c4f2269946272ba09cf8afec",
|
|
2358
|
+
"size_bytes": 9912
|
|
2289
2359
|
},
|
|
2290
2360
|
{
|
|
2291
2361
|
"path": "src/runner/usecases/task-run-inspect.ts",
|
|
2292
|
-
"sha256": "
|
|
2293
|
-
"size_bytes":
|
|
2362
|
+
"sha256": "e9e5c6bc62ef5d2e546c2cc14b9b27dfc5e7d5a069f3c135e182470680357bec",
|
|
2363
|
+
"size_bytes": 3522
|
|
2294
2364
|
},
|
|
2295
2365
|
{
|
|
2296
2366
|
"path": "src/runner/usecases/task-run-lifecycle-cancel.ts",
|
|
@@ -2304,8 +2374,8 @@
|
|
|
2304
2374
|
},
|
|
2305
2375
|
{
|
|
2306
2376
|
"path": "src/runner/usecases/task-run-lifecycle-shared.ts",
|
|
2307
|
-
"sha256": "
|
|
2308
|
-
"size_bytes":
|
|
2377
|
+
"sha256": "f69e5532459897a5e421e85219ee9112f6bef162b5fd998f0380f053ad0e9b80",
|
|
2378
|
+
"size_bytes": 8243
|
|
2309
2379
|
},
|
|
2310
2380
|
{
|
|
2311
2381
|
"path": "src/runner/usecases/task-run-lifecycle.ts",
|
|
@@ -2314,8 +2384,8 @@
|
|
|
2314
2384
|
},
|
|
2315
2385
|
{
|
|
2316
2386
|
"path": "src/runner/usecases/task-run.ts",
|
|
2317
|
-
"sha256": "
|
|
2318
|
-
"size_bytes":
|
|
2387
|
+
"sha256": "8dec3a114f5f46cd0882f583e1aec3654b6cbdc74900e9e67d36da81aaedb86c",
|
|
2388
|
+
"size_bytes": 14349
|
|
2319
2389
|
},
|
|
2320
2390
|
{
|
|
2321
2391
|
"path": "src/runtime/approvals/index.ts",
|
|
@@ -2359,8 +2429,8 @@
|
|
|
2359
2429
|
},
|
|
2360
2430
|
{
|
|
2361
2431
|
"path": "src/runtime/capabilities/recipe.ts",
|
|
2362
|
-
"sha256": "
|
|
2363
|
-
"size_bytes":
|
|
2432
|
+
"sha256": "88eec1e68d338ad2c3f2893a50af4d67119a1f0efa65eed9b294da06caa0a631",
|
|
2433
|
+
"size_bytes": 6462
|
|
2364
2434
|
},
|
|
2365
2435
|
{
|
|
2366
2436
|
"path": "src/runtime/capabilities/registry.ts",
|
|
@@ -2377,6 +2447,11 @@
|
|
|
2377
2447
|
"sha256": "2c4d516324972eaff7a28415abe05531b428bb66429dd8c4029f971bab5730be",
|
|
2378
2448
|
"size_bytes": 1145
|
|
2379
2449
|
},
|
|
2450
|
+
{
|
|
2451
|
+
"path": "src/runtime/execution-context.ts",
|
|
2452
|
+
"sha256": "4eccfdd8c7871cfc570bba74d058a69f666aa7a1a8072adcf15bf3e629e9a6f5",
|
|
2453
|
+
"size_bytes": 6165
|
|
2454
|
+
},
|
|
2380
2455
|
{
|
|
2381
2456
|
"path": "src/runtime/execution-profile/index.ts",
|
|
2382
2457
|
"sha256": "aea4bce51a62b3c3b5150150e7305196f2aa19d38cd33b541258dd9b8c8d8029",
|
|
@@ -2427,15 +2502,35 @@
|
|
|
2427
2502
|
"sha256": "8fe94a7f18a11401d140bc1f3748bfeb37e10e89b4054b57be8ac3b329a1dd20",
|
|
2428
2503
|
"size_bytes": 2720
|
|
2429
2504
|
},
|
|
2505
|
+
{
|
|
2506
|
+
"path": "src/runtime/incidents/advice-strategy.ts",
|
|
2507
|
+
"sha256": "621ca61b64c782e563be9505c311d9ee7310442585061de8cba5b18f47e8c50f",
|
|
2508
|
+
"size_bytes": 2892
|
|
2509
|
+
},
|
|
2430
2510
|
{
|
|
2431
2511
|
"path": "src/runtime/incidents/index.ts",
|
|
2432
2512
|
"sha256": "10bae87d02c646f7d97d3a84b7fb3a5d001c78429e2d0974f8305d96a1c35273",
|
|
2433
2513
|
"size_bytes": 634
|
|
2434
2514
|
},
|
|
2515
|
+
{
|
|
2516
|
+
"path": "src/runtime/incidents/plan-strategy.ts",
|
|
2517
|
+
"sha256": "ee7ad959153bb4da89551f7081169b3efc1578c9b3bade3ae661273d63848d02",
|
|
2518
|
+
"size_bytes": 8529
|
|
2519
|
+
},
|
|
2520
|
+
{
|
|
2521
|
+
"path": "src/runtime/incidents/registry-strategy.ts",
|
|
2522
|
+
"sha256": "4252e8ed10be227de9346e80a6abe142343275a0ef12b39a60e1e705de5b191c",
|
|
2523
|
+
"size_bytes": 11364
|
|
2524
|
+
},
|
|
2435
2525
|
{
|
|
2436
2526
|
"path": "src/runtime/incidents/resolve.ts",
|
|
2437
|
-
"sha256": "
|
|
2438
|
-
"size_bytes":
|
|
2527
|
+
"sha256": "47c3b3bfdf494133b69222381633d6b9688aad9c1d4a6b5f3290d13befffd331",
|
|
2528
|
+
"size_bytes": 397
|
|
2529
|
+
},
|
|
2530
|
+
{
|
|
2531
|
+
"path": "src/runtime/incidents/shared.ts",
|
|
2532
|
+
"sha256": "e3b9768b8200895d69a8a6f5aa510760d844a9596f96de43cfe7a06a7ee6a2e8",
|
|
2533
|
+
"size_bytes": 6605
|
|
2439
2534
|
},
|
|
2440
2535
|
{
|
|
2441
2536
|
"path": "src/runtime/incidents/types.ts",
|
|
@@ -2583,19 +2678,24 @@
|
|
|
2583
2678
|
"size_bytes": 505
|
|
2584
2679
|
},
|
|
2585
2680
|
{
|
|
2586
|
-
"path": "src/
|
|
2587
|
-
"sha256": "
|
|
2588
|
-
"size_bytes":
|
|
2681
|
+
"path": "src/testing/cli-harness.ts",
|
|
2682
|
+
"sha256": "f38de984fa4e32dd14e7fcf5445ea93cacee952afbefdeeec50a33f4b575351b",
|
|
2683
|
+
"size_bytes": 11333
|
|
2684
|
+
},
|
|
2685
|
+
{
|
|
2686
|
+
"path": "src/testing/cli-harness/recipe-archives.ts",
|
|
2687
|
+
"sha256": "46e9f4b3e6e1fd83b7e1b067d25c81144eaa2f1869af837b30ef8e1f9cf725f3",
|
|
2688
|
+
"size_bytes": 15569
|
|
2589
2689
|
},
|
|
2590
2690
|
{
|
|
2591
|
-
"path": "src/
|
|
2592
|
-
"sha256": "
|
|
2593
|
-
"size_bytes":
|
|
2691
|
+
"path": "src/testing/cli-harness/stdio.ts",
|
|
2692
|
+
"sha256": "2ddc3583d1d256d083c5112a61afda9b0749676e922ec25c5e397ff085329ad8",
|
|
2693
|
+
"size_bytes": 3286
|
|
2594
2694
|
},
|
|
2595
2695
|
{
|
|
2596
|
-
"path": "src/
|
|
2597
|
-
"sha256": "
|
|
2598
|
-
"size_bytes":
|
|
2696
|
+
"path": "src/testing/index.ts",
|
|
2697
|
+
"sha256": "a6ba25fb04d0a09181f2279ecea33d8119dde6bf5fb8a38ba574f42422eb4052",
|
|
2698
|
+
"size_bytes": 34
|
|
2599
2699
|
},
|
|
2600
2700
|
{
|
|
2601
2701
|
"path": "src/workflow-runtime/build.ts",
|