agentplane 0.3.8 → 0.3.10
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 +4 -2
- package/assets/agents/CODER.json +1 -1
- package/assets/policy/dod.core.md +1 -1
- package/assets/policy/governance.md +3 -0
- package/assets/policy/incidents.md +22 -11
- package/assets/policy/workflow.branch_pr.md +2 -0
- package/assets/policy/workflow.direct.md +3 -1
- package/dist/.build-manifest.json +323 -128
- package/dist/cli/bootstrap-guide.d.ts +1 -0
- package/dist/cli/bootstrap-guide.d.ts.map +1 -1
- package/dist/cli/bootstrap-guide.js +19 -1
- package/dist/cli/command-invocations.d.ts.map +1 -1
- package/dist/cli/command-invocations.js +2 -0
- package/dist/cli/command-snippets.d.ts +2 -0
- package/dist/cli/command-snippets.d.ts.map +1 -1
- package/dist/cli/command-snippets.js +2 -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 +10 -0
- 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/config.d.ts.map +1 -1
- package/dist/cli/run-cli/commands/config.js +13 -0
- package/dist/cli/run-cli.js +2 -2
- package/dist/cli/run-cli.test-helpers.d.ts.map +1 -1
- package/dist/cli/run-cli.test-helpers.js +34 -8
- package/dist/commands/backend.d.ts.map +1 -1
- package/dist/commands/backend.js +4 -0
- package/dist/commands/hooks/index.d.ts.map +1 -1
- package/dist/commands/hooks/index.js +8 -4
- package/dist/commands/incidents/advise.command.d.ts +15 -0
- package/dist/commands/incidents/advise.command.d.ts.map +1 -0
- package/dist/commands/incidents/advise.command.js +139 -0
- package/dist/commands/incidents/collect.command.d.ts +11 -0
- package/dist/commands/incidents/collect.command.d.ts.map +1 -0
- package/dist/commands/incidents/collect.command.js +67 -0
- package/dist/commands/incidents/incidents.command.d.ts +5 -0
- package/dist/commands/incidents/incidents.command.d.ts.map +1 -0
- package/dist/commands/incidents/incidents.command.js +21 -0
- package/dist/commands/incidents/shared.d.ts +42 -0
- package/dist/commands/incidents/shared.d.ts.map +1 -0
- package/dist/commands/incidents/shared.js +107 -0
- package/dist/commands/pr/check.d.ts.map +1 -1
- package/dist/commands/pr/check.js +73 -2
- package/dist/commands/pr/integrate/cmd.d.ts.map +1 -1
- package/dist/commands/pr/integrate/cmd.js +4 -0
- package/dist/commands/pr/integrate/internal/merge.d.ts +4 -0
- package/dist/commands/pr/integrate/internal/merge.d.ts.map +1 -1
- package/dist/commands/pr/integrate/internal/merge.js +23 -2
- package/dist/commands/pr/integrate/internal/prepare.d.ts.map +1 -1
- package/dist/commands/pr/integrate/internal/prepare.js +26 -1
- package/dist/commands/pr/internal/note-store.d.ts +18 -0
- package/dist/commands/pr/internal/note-store.d.ts.map +1 -0
- package/dist/commands/pr/internal/note-store.js +66 -0
- package/dist/commands/pr/internal/pr-paths.d.ts +3 -0
- package/dist/commands/pr/internal/pr-paths.d.ts.map +1 -1
- package/dist/commands/pr/internal/pr-paths.js +3 -0
- package/dist/commands/pr/internal/review-template.d.ts +24 -4
- package/dist/commands/pr/internal/review-template.d.ts.map +1 -1
- package/dist/commands/pr/internal/review-template.js +188 -33
- package/dist/commands/pr/internal/sync.d.ts +32 -0
- package/dist/commands/pr/internal/sync.d.ts.map +1 -0
- package/dist/commands/pr/internal/sync.js +258 -0
- package/dist/commands/pr/note.d.ts.map +1 -1
- package/dist/commands/pr/note.js +37 -4
- package/dist/commands/pr/open.d.ts.map +1 -1
- package/dist/commands/pr/open.js +7 -54
- package/dist/commands/pr/pr.command.d.ts.map +1 -1
- package/dist/commands/pr/pr.command.js +6 -3
- package/dist/commands/pr/update.d.ts.map +1 -1
- package/dist/commands/pr/update.js +5 -79
- 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 -1
- package/dist/commands/recipes/impl/commands/cache-prune.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/cache-prune.js +14 -0
- package/dist/commands/recipes/impl/commands/explain.js +1 -1
- package/dist/commands/recipes/impl/commands/install.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/install.js +3 -2
- package/dist/commands/recipes/impl/commands/list-remote.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/list-remote.js +1 -0
- package/dist/commands/recipes/impl/commands/remove.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/remove.js +9 -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 +2 -1
- package/dist/commands/recipes/impl/project-installed-recipes.d.ts +1 -1
- package/dist/commands/recipes/impl/project-installed-recipes.d.ts.map +1 -1
- package/dist/commands/recipes/impl/project-installed-recipes.js +2 -1
- 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.d.ts +4 -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.map +1 -1
- package/dist/commands/release/apply.command.js +9 -0
- package/dist/commands/release.test-helpers.d.ts +14 -0
- package/dist/commands/release.test-helpers.d.ts.map +1 -1
- package/dist/commands/release.test-helpers.js +14 -3
- package/dist/commands/shared/approval-requirements.d.ts +5 -7
- package/dist/commands/shared/approval-requirements.d.ts.map +1 -1
- package/dist/commands/shared/approval-requirements.js +3 -73
- package/dist/commands/shared/network-approval.d.ts +2 -0
- package/dist/commands/shared/network-approval.d.ts.map +1 -1
- package/dist/commands/shared/network-approval.js +1 -1
- package/dist/commands/shared/pr-meta.d.ts +9 -0
- package/dist/commands/shared/pr-meta.d.ts.map +1 -1
- package/dist/commands/shared/pr-meta.js +27 -3
- package/dist/commands/shared/task-backend.d.ts +2 -0
- package/dist/commands/shared/task-backend.d.ts.map +1 -1
- package/dist/commands/shared/task-local-freshness.d.ts +13 -0
- package/dist/commands/shared/task-local-freshness.d.ts.map +1 -0
- package/dist/commands/shared/task-local-freshness.js +20 -0
- package/dist/commands/shared/task-mutation.d.ts +2 -0
- package/dist/commands/shared/task-mutation.d.ts.map +1 -1
- package/dist/commands/shared/task-mutation.js +7 -0
- package/dist/commands/task/block.d.ts.map +1 -1
- package/dist/commands/task/block.js +1 -0
- package/dist/commands/task/close-shared.d.ts.map +1 -1
- package/dist/commands/task/close-shared.js +1 -0
- package/dist/commands/task/finish-shared.d.ts.map +1 -1
- package/dist/commands/task/finish-shared.js +5 -2
- package/dist/commands/task/finish.d.ts.map +1 -1
- package/dist/commands/task/finish.js +24 -0
- package/dist/commands/task/new.d.ts.map +1 -1
- package/dist/commands/task/new.js +69 -29
- package/dist/commands/task/set-status.d.ts.map +1 -1
- package/dist/commands/task/set-status.js +1 -0
- package/dist/commands/task/shared/transition-command.d.ts +2 -0
- package/dist/commands/task/shared/transition-command.d.ts.map +1 -1
- package/dist/commands/task/shared/transition-command.js +1 -0
- package/dist/commands/task/start-ready.d.ts.map +1 -1
- package/dist/commands/task/start-ready.js +12 -1
- package/dist/commands/task/start.d.ts.map +1 -1
- package/dist/commands/task/start.js +11 -0
- package/dist/commands/task/verify-record.d.ts.map +1 -1
- package/dist/commands/task/verify-record.js +27 -0
- package/dist/commands/upgrade.d.ts.map +1 -1
- package/dist/commands/upgrade.js +6 -1
- package/dist/policy/engine.d.ts +3 -1
- package/dist/policy/engine.d.ts.map +1 -1
- package/dist/policy/engine.js +5 -6
- package/dist/policy/taxonomy.d.ts +17 -0
- package/dist/policy/taxonomy.d.ts.map +1 -0
- package/dist/policy/taxonomy.js +302 -0
- package/dist/policy/types.d.ts +2 -1
- package/dist/policy/types.d.ts.map +1 -1
- package/dist/runner/artifacts.d.ts.map +1 -1
- package/dist/runner/artifacts.js +2 -0
- package/dist/runner/context/base-prompts.d.ts +25 -0
- package/dist/runner/context/base-prompts.d.ts.map +1 -1
- package/dist/runner/context/base-prompts.js +182 -54
- package/dist/runner/context/recipe-context.d.ts.map +1 -1
- package/dist/runner/context/recipe-context.js +5 -0
- package/dist/runner/types.d.ts +12 -0
- package/dist/runner/types.d.ts.map +1 -1
- package/dist/runner/usecases/scenario-materialize-task.d.ts.map +1 -1
- package/dist/runner/usecases/scenario-materialize-task.js +81 -11
- package/dist/runner/usecases/task-run-inspect.d.ts.map +1 -1
- package/dist/runner/usecases/task-run-inspect.js +9 -7
- package/dist/runner/usecases/task-run-lifecycle-shared.d.ts.map +1 -1
- package/dist/runner/usecases/task-run-lifecycle-shared.js +8 -6
- package/dist/runner/usecases/task-run.d.ts.map +1 -1
- package/dist/runner/usecases/task-run.js +59 -12
- package/dist/runtime/approvals/index.d.ts +3 -0
- package/dist/runtime/approvals/index.d.ts.map +1 -0
- package/dist/runtime/approvals/index.js +1 -0
- package/dist/runtime/approvals/runtime.d.ts +12 -0
- package/dist/runtime/approvals/runtime.d.ts.map +1 -0
- package/dist/runtime/approvals/runtime.js +154 -0
- package/dist/runtime/approvals/types.d.ts +31 -0
- package/dist/runtime/approvals/types.d.ts.map +1 -0
- package/dist/runtime/approvals/types.js +1 -0
- package/dist/runtime/behavior/index.d.ts +3 -0
- package/dist/runtime/behavior/index.d.ts.map +1 -0
- package/dist/runtime/behavior/index.js +1 -0
- package/dist/runtime/behavior/resolve.d.ts +7 -0
- package/dist/runtime/behavior/resolve.d.ts.map +1 -0
- package/dist/runtime/behavior/resolve.js +66 -0
- package/dist/runtime/behavior/types.d.ts +25 -0
- package/dist/runtime/behavior/types.d.ts.map +1 -0
- package/dist/runtime/behavior/types.js +1 -0
- package/dist/runtime/capabilities/backend.d.ts +7 -0
- package/dist/runtime/capabilities/backend.d.ts.map +1 -0
- package/dist/runtime/capabilities/backend.js +104 -0
- package/dist/runtime/capabilities/index.d.ts +6 -0
- package/dist/runtime/capabilities/index.d.ts.map +1 -0
- package/dist/runtime/capabilities/index.js +4 -0
- package/dist/runtime/capabilities/recipe.d.ts +10 -0
- package/dist/runtime/capabilities/recipe.d.ts.map +1 -0
- package/dist/runtime/capabilities/recipe.js +123 -0
- package/dist/runtime/capabilities/registry.d.ts +6 -0
- package/dist/runtime/capabilities/registry.d.ts.map +1 -0
- package/dist/runtime/capabilities/registry.js +69 -0
- package/dist/runtime/capabilities/runner.d.ts +8 -0
- package/dist/runtime/capabilities/runner.d.ts.map +1 -0
- package/dist/runtime/capabilities/runner.js +73 -0
- package/dist/runtime/capabilities/types.d.ts +28 -0
- package/dist/runtime/capabilities/types.d.ts.map +1 -0
- package/dist/runtime/capabilities/types.js +1 -0
- package/dist/runtime/execution-profile/index.d.ts +3 -0
- package/dist/runtime/execution-profile/index.d.ts.map +1 -0
- package/dist/runtime/execution-profile/index.js +1 -0
- package/dist/runtime/execution-profile/resolve.d.ts +9 -0
- package/dist/runtime/execution-profile/resolve.d.ts.map +1 -0
- package/dist/runtime/execution-profile/resolve.js +80 -0
- package/dist/runtime/execution-profile/types.d.ts +27 -0
- package/dist/runtime/execution-profile/types.d.ts.map +1 -0
- package/dist/runtime/execution-profile/types.js +1 -0
- package/dist/runtime/explain/index.d.ts +3 -0
- package/dist/runtime/explain/index.d.ts.map +1 -0
- package/dist/runtime/explain/index.js +1 -0
- package/dist/runtime/explain/resolve.d.ts +14 -0
- package/dist/runtime/explain/resolve.d.ts.map +1 -0
- package/dist/runtime/explain/resolve.js +50 -0
- package/dist/runtime/explain/types.d.ts +28 -0
- package/dist/runtime/explain/types.d.ts.map +1 -0
- package/dist/runtime/explain/types.js +1 -0
- package/dist/runtime/harness/index.d.ts +4 -0
- package/dist/runtime/harness/index.d.ts.map +1 -0
- package/dist/runtime/harness/index.js +2 -0
- package/dist/runtime/harness/resolve-from-command-context.d.ts +4 -0
- package/dist/runtime/harness/resolve-from-command-context.d.ts.map +1 -0
- package/dist/runtime/harness/resolve-from-command-context.js +11 -0
- package/dist/runtime/harness/resolve.d.ts +13 -0
- package/dist/runtime/harness/resolve.d.ts.map +1 -0
- package/dist/runtime/harness/resolve.js +146 -0
- package/dist/runtime/harness/types.d.ts +65 -0
- package/dist/runtime/harness/types.d.ts.map +1 -0
- package/dist/runtime/harness/types.js +1 -0
- package/dist/runtime/incidents/index.d.ts +3 -0
- package/dist/runtime/incidents/index.d.ts.map +1 -0
- package/dist/runtime/incidents/index.js +1 -0
- package/dist/runtime/incidents/resolve.d.ts +26 -0
- package/dist/runtime/incidents/resolve.d.ts.map +1 -0
- package/dist/runtime/incidents/resolve.js +437 -0
- package/dist/runtime/incidents/types.d.ts +72 -0
- package/dist/runtime/incidents/types.d.ts.map +1 -0
- package/dist/runtime/incidents/types.js +1 -0
- package/dist/runtime/protocol/index.d.ts +3 -0
- package/dist/runtime/protocol/index.d.ts.map +1 -0
- package/dist/runtime/protocol/index.js +2 -0
- package/dist/runtime/protocol/resolve.d.ts +16 -0
- package/dist/runtime/protocol/resolve.d.ts.map +1 -0
- package/dist/runtime/protocol/resolve.js +36 -0
- package/dist/runtime/protocol/types.d.ts +36 -0
- package/dist/runtime/protocol/types.d.ts.map +1 -0
- package/dist/runtime/protocol/types.js +1 -0
- package/dist/runtime/task-intake/index.d.ts +3 -0
- package/dist/runtime/task-intake/index.d.ts.map +1 -0
- package/dist/runtime/task-intake/index.js +1 -0
- package/dist/runtime/task-intake/resolve.d.ts +48 -0
- package/dist/runtime/task-intake/resolve.d.ts.map +1 -0
- package/dist/runtime/task-intake/resolve.js +316 -0
- package/dist/runtime/task-intake/types.d.ts +117 -0
- package/dist/runtime/task-intake/types.d.ts.map +1 -0
- package/dist/runtime/task-intake/types.js +1 -0
- package/dist/shared/protected-paths.d.ts +4 -0
- package/dist/shared/protected-paths.d.ts.map +1 -1
- package/dist/shared/protected-paths.js +4 -4
- package/dist/usecases/context/resolve-context.d.ts +55 -6
- package/dist/usecases/context/resolve-context.d.ts.map +1 -1
- package/dist/usecases/context/resolve-context.js +96 -6
- package/dist/usecases/task/task-list-usecase.d.ts.map +1 -1
- package/dist/usecases/task/task-list-usecase.js +8 -2
- package/dist/usecases/task/task-new-usecase.js +4 -4
- package/package.json +2 -3
|
@@ -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-03T16:23:23.206Z",
|
|
5
|
+
"git_head": "add4d7927505d07744a044fa1ea3acd57b2d907a",
|
|
6
|
+
"src_cli_mtime_ms": 1775233207103.048,
|
|
7
7
|
"src_index_mtime_ms": null,
|
|
8
|
-
"dist_cli_mtime_ms":
|
|
8
|
+
"dist_cli_mtime_ms": 1775233402657.0376,
|
|
9
9
|
"dist_index_mtime_ms": null,
|
|
10
|
-
"tsbuildinfo_mtime_ms":
|
|
10
|
+
"tsbuildinfo_mtime_ms": 1775233402710.0374,
|
|
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": "92810b7ed6c0b1c13b2ee4ca0f632aee1826f471f43532ceff23042105014d9c",
|
|
19
19
|
"watched_runtime_files": [
|
|
20
20
|
{
|
|
21
21
|
"path": "bin/agentplane.js",
|
|
@@ -244,8 +244,8 @@
|
|
|
244
244
|
},
|
|
245
245
|
{
|
|
246
246
|
"path": "src/cli/bootstrap-guide.ts",
|
|
247
|
-
"sha256": "
|
|
248
|
-
"size_bytes":
|
|
247
|
+
"sha256": "f0ae183ab913671fe665b7ddf84ff455d30e03d60fdfc6ab0484aab79d6f0e59",
|
|
248
|
+
"size_bytes": 6529
|
|
249
249
|
},
|
|
250
250
|
{
|
|
251
251
|
"path": "src/cli/checksum.ts",
|
|
@@ -264,13 +264,13 @@
|
|
|
264
264
|
},
|
|
265
265
|
{
|
|
266
266
|
"path": "src/cli/command-invocations.ts",
|
|
267
|
-
"sha256": "
|
|
268
|
-
"size_bytes":
|
|
267
|
+
"sha256": "8eb9cdd07b9d7c139cf38d39295d28a6097ee030d28ec616f0dd19a8bd0cf256",
|
|
268
|
+
"size_bytes": 1690
|
|
269
269
|
},
|
|
270
270
|
{
|
|
271
271
|
"path": "src/cli/command-snippets.ts",
|
|
272
|
-
"sha256": "
|
|
273
|
-
"size_bytes":
|
|
272
|
+
"sha256": "bca9b8348c7990a8aea006af44eadaa4e21123e0d32360cec68dcfb7ec7fa85f",
|
|
273
|
+
"size_bytes": 1380
|
|
274
274
|
},
|
|
275
275
|
{
|
|
276
276
|
"path": "src/cli/critical/cli-runner.ts",
|
|
@@ -334,13 +334,13 @@
|
|
|
334
334
|
},
|
|
335
335
|
{
|
|
336
336
|
"path": "src/cli/run-cli.test-helpers.ts",
|
|
337
|
-
"sha256": "
|
|
338
|
-
"size_bytes":
|
|
337
|
+
"sha256": "f92f81db2859170bbf0d0e8bca116501761824a096d118d485379c567ca6a636",
|
|
338
|
+
"size_bytes": 29561
|
|
339
339
|
},
|
|
340
340
|
{
|
|
341
341
|
"path": "src/cli/run-cli.ts",
|
|
342
|
-
"sha256": "
|
|
343
|
-
"size_bytes":
|
|
342
|
+
"sha256": "f9708689f36a7ca3bf64eafdfd960842d574c634dd6baea001df9a15395036d6",
|
|
343
|
+
"size_bytes": 11525
|
|
344
344
|
},
|
|
345
345
|
{
|
|
346
346
|
"path": "src/cli/run-cli/command-catalog.ts",
|
|
@@ -349,8 +349,8 @@
|
|
|
349
349
|
},
|
|
350
350
|
{
|
|
351
351
|
"path": "src/cli/run-cli/command-catalog/core.ts",
|
|
352
|
-
"sha256": "
|
|
353
|
-
"size_bytes":
|
|
352
|
+
"sha256": "902c1210f32d6b14a91a62b8aa3650cb9c8f120cbb2aaa4b39529bbc1b360c2e",
|
|
353
|
+
"size_bytes": 7941
|
|
354
354
|
},
|
|
355
355
|
{
|
|
356
356
|
"path": "src/cli/run-cli/command-catalog/lifecycle.ts",
|
|
@@ -374,8 +374,8 @@
|
|
|
374
374
|
},
|
|
375
375
|
{
|
|
376
376
|
"path": "src/cli/run-cli/commands/config.ts",
|
|
377
|
-
"sha256": "
|
|
378
|
-
"size_bytes":
|
|
377
|
+
"sha256": "7ca450c159aa35d1fda0c25b2213f9eeafee84bc62795a4e3975a98514c0b5a2",
|
|
378
|
+
"size_bytes": 10980
|
|
379
379
|
},
|
|
380
380
|
{
|
|
381
381
|
"path": "src/cli/run-cli/commands/core.ts",
|
|
@@ -554,8 +554,8 @@
|
|
|
554
554
|
},
|
|
555
555
|
{
|
|
556
556
|
"path": "src/commands/backend.ts",
|
|
557
|
-
"sha256": "
|
|
558
|
-
"size_bytes":
|
|
557
|
+
"sha256": "81558674177beef1f9468155f1789e115d12d5dfec024401c45b303f62d35c86",
|
|
558
|
+
"size_bytes": 8710
|
|
559
559
|
},
|
|
560
560
|
{
|
|
561
561
|
"path": "src/commands/backend/sync.command.ts",
|
|
@@ -764,8 +764,8 @@
|
|
|
764
764
|
},
|
|
765
765
|
{
|
|
766
766
|
"path": "src/commands/hooks/index.ts",
|
|
767
|
-
"sha256": "
|
|
768
|
-
"size_bytes":
|
|
767
|
+
"sha256": "b6dc3b25b4e01f736cd2c484ebf100c28f8b6ec10924ad44619b60da1d99ec77",
|
|
768
|
+
"size_bytes": 10495
|
|
769
769
|
},
|
|
770
770
|
{
|
|
771
771
|
"path": "src/commands/hooks/install.command.ts",
|
|
@@ -782,6 +782,26 @@
|
|
|
782
782
|
"sha256": "a79ebbf0a2a6e8b6a8de3f6c58f249b8d995b0ece319dd140fd8a4955896c370",
|
|
783
783
|
"size_bytes": 844
|
|
784
784
|
},
|
|
785
|
+
{
|
|
786
|
+
"path": "src/commands/incidents/advise.command.ts",
|
|
787
|
+
"sha256": "8f84063a6393e6a40d02e97a6727b6308880b8d119a37ef3a82e45b21cf29f00",
|
|
788
|
+
"size_bytes": 5365
|
|
789
|
+
},
|
|
790
|
+
{
|
|
791
|
+
"path": "src/commands/incidents/collect.command.ts",
|
|
792
|
+
"sha256": "844e84f0ba9d6a630d68e73e1985be830dc5456f8f7f1049a3ed95ac826a4d2d",
|
|
793
|
+
"size_bytes": 2814
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"path": "src/commands/incidents/incidents.command.ts",
|
|
797
|
+
"sha256": "f683a77b4f991fa251a2c17023574ea51b577a15a51dc30d0741a837106a9f77",
|
|
798
|
+
"size_bytes": 1109
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
"path": "src/commands/incidents/shared.ts",
|
|
802
|
+
"sha256": "793780fe328553503c5b2fdb5f0a285ec0bc90987fefd2922b3d0ca8334bee4b",
|
|
803
|
+
"size_bytes": 5082
|
|
804
|
+
},
|
|
785
805
|
{
|
|
786
806
|
"path": "src/commands/integrate.command.ts",
|
|
787
807
|
"sha256": "588e0cf9c0b8fdda5cc301eb14f53ded3b489522d457ad0cddf5c172cf63f51e",
|
|
@@ -789,8 +809,8 @@
|
|
|
789
809
|
},
|
|
790
810
|
{
|
|
791
811
|
"path": "src/commands/pr/check.ts",
|
|
792
|
-
"sha256": "
|
|
793
|
-
"size_bytes":
|
|
812
|
+
"sha256": "48ef0aadd653f15ef9ba8b339795c8eff895c5c19bfc137cacf17f36f4aa47f8",
|
|
813
|
+
"size_bytes": 8623
|
|
794
814
|
},
|
|
795
815
|
{
|
|
796
816
|
"path": "src/commands/pr/index.ts",
|
|
@@ -809,8 +829,8 @@
|
|
|
809
829
|
},
|
|
810
830
|
{
|
|
811
831
|
"path": "src/commands/pr/integrate/cmd.ts",
|
|
812
|
-
"sha256": "
|
|
813
|
-
"size_bytes":
|
|
832
|
+
"sha256": "3e6ac5859cf53bf40fa228b4f15f584da0ca86d389ad959b7464ef895ced2473",
|
|
833
|
+
"size_bytes": 6417
|
|
814
834
|
},
|
|
815
835
|
{
|
|
816
836
|
"path": "src/commands/pr/integrate/internal/cleanup.ts",
|
|
@@ -824,13 +844,13 @@
|
|
|
824
844
|
},
|
|
825
845
|
{
|
|
826
846
|
"path": "src/commands/pr/integrate/internal/merge.ts",
|
|
827
|
-
"sha256": "
|
|
828
|
-
"size_bytes":
|
|
847
|
+
"sha256": "ea1445190290d11d917d18f9d943bdb1c155dc59a6740eced243d6478127e752",
|
|
848
|
+
"size_bytes": 10780
|
|
829
849
|
},
|
|
830
850
|
{
|
|
831
851
|
"path": "src/commands/pr/integrate/internal/prepare.ts",
|
|
832
|
-
"sha256": "
|
|
833
|
-
"size_bytes":
|
|
852
|
+
"sha256": "65644ac85180d9970cecbcdb2260f64b5ea3785c11edeac68f272f730038ae30",
|
|
853
|
+
"size_bytes": 7275
|
|
834
854
|
},
|
|
835
855
|
{
|
|
836
856
|
"path": "src/commands/pr/integrate/internal/worktree.ts",
|
|
@@ -842,35 +862,45 @@
|
|
|
842
862
|
"sha256": "c5bb38b7a2e06e50dc75c0ed79f3f2e9c4c0acccffb23768ac4b59c92a742e7c",
|
|
843
863
|
"size_bytes": 2799
|
|
844
864
|
},
|
|
865
|
+
{
|
|
866
|
+
"path": "src/commands/pr/internal/note-store.ts",
|
|
867
|
+
"sha256": "47768440643824fdaac4452af5e4c69703c8f8088670a69e7dc2f276a8f3b8c8",
|
|
868
|
+
"size_bytes": 2467
|
|
869
|
+
},
|
|
845
870
|
{
|
|
846
871
|
"path": "src/commands/pr/internal/pr-paths.ts",
|
|
847
|
-
"sha256": "
|
|
848
|
-
"size_bytes":
|
|
872
|
+
"sha256": "a8980d0406803b31f0aa12c8c1a01ff937b50e1f669d1f6b746112863ea1524d",
|
|
873
|
+
"size_bytes": 2134
|
|
849
874
|
},
|
|
850
875
|
{
|
|
851
876
|
"path": "src/commands/pr/internal/review-template.ts",
|
|
852
|
-
"sha256": "
|
|
853
|
-
"size_bytes":
|
|
877
|
+
"sha256": "b8cd44d3698c42d0bf4604e2efa8723e0613ae0769bcf43417184a87ee84040b",
|
|
878
|
+
"size_bytes": 7958
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
"path": "src/commands/pr/internal/sync.ts",
|
|
882
|
+
"sha256": "ff4029da43742910bfe7c11a462ed8d0d537a406a416160c9170ffc80acff187",
|
|
883
|
+
"size_bytes": 9909
|
|
854
884
|
},
|
|
855
885
|
{
|
|
856
886
|
"path": "src/commands/pr/note.ts",
|
|
857
|
-
"sha256": "
|
|
858
|
-
"size_bytes":
|
|
887
|
+
"sha256": "f2b7515353397b581105e93d837ccf7081557865c6d4fb2dd967bd3fefb8df0a",
|
|
888
|
+
"size_bytes": 3707
|
|
859
889
|
},
|
|
860
890
|
{
|
|
861
891
|
"path": "src/commands/pr/open.ts",
|
|
862
|
-
"sha256": "
|
|
863
|
-
"size_bytes":
|
|
892
|
+
"sha256": "a4dbb085d4bd27c6371b2abd5477248bb9e68b3ad629978b9c81268009ef08fb",
|
|
893
|
+
"size_bytes": 1303
|
|
864
894
|
},
|
|
865
895
|
{
|
|
866
896
|
"path": "src/commands/pr/pr.command.ts",
|
|
867
|
-
"sha256": "
|
|
868
|
-
"size_bytes":
|
|
897
|
+
"sha256": "91423cfe00cd4708190cf89b44b90c35769d6499c2ad6620907cf5c755529a89",
|
|
898
|
+
"size_bytes": 6488
|
|
869
899
|
},
|
|
870
900
|
{
|
|
871
901
|
"path": "src/commands/pr/update.ts",
|
|
872
|
-
"sha256": "
|
|
873
|
-
"size_bytes":
|
|
902
|
+
"sha256": "2d242a7482ed90532db45f6baad9bd7d30f3487c8ac2a6d23ebc6220123e0378",
|
|
903
|
+
"size_bytes": 951
|
|
874
904
|
},
|
|
875
905
|
{
|
|
876
906
|
"path": "src/commands/ready.command.ts",
|
|
@@ -884,8 +914,8 @@
|
|
|
884
914
|
},
|
|
885
915
|
{
|
|
886
916
|
"path": "src/commands/recipes.ts",
|
|
887
|
-
"sha256": "
|
|
888
|
-
"size_bytes":
|
|
917
|
+
"sha256": "48f91afd4ba14f2a16b1cd7d1b68bb8859f0e5dd23c2da179336a2bb1062dd37",
|
|
918
|
+
"size_bytes": 1685
|
|
889
919
|
},
|
|
890
920
|
{
|
|
891
921
|
"path": "src/commands/recipes/cache-prune.command.ts",
|
|
@@ -904,8 +934,8 @@
|
|
|
904
934
|
},
|
|
905
935
|
{
|
|
906
936
|
"path": "src/commands/recipes/impl/apply.ts",
|
|
907
|
-
"sha256": "
|
|
908
|
-
"size_bytes":
|
|
937
|
+
"sha256": "6d3e0827d682399c6d6af6c97134c0058195ec828d143b897ccde675b561bb3c",
|
|
938
|
+
"size_bytes": 6043
|
|
909
939
|
},
|
|
910
940
|
{
|
|
911
941
|
"path": "src/commands/recipes/impl/archive.ts",
|
|
@@ -919,13 +949,13 @@
|
|
|
919
949
|
},
|
|
920
950
|
{
|
|
921
951
|
"path": "src/commands/recipes/impl/commands/cache-prune.ts",
|
|
922
|
-
"sha256": "
|
|
923
|
-
"size_bytes":
|
|
952
|
+
"sha256": "a9866b5fcefe980c5719e6c6df90b7f60ecf5b289c6f6cb04fbdc5580c47c632",
|
|
953
|
+
"size_bytes": 4748
|
|
924
954
|
},
|
|
925
955
|
{
|
|
926
956
|
"path": "src/commands/recipes/impl/commands/explain.ts",
|
|
927
|
-
"sha256": "
|
|
928
|
-
"size_bytes":
|
|
957
|
+
"sha256": "15da836ef21131746bde4777fc7238633aef674fb061dc8873b3f664e8534c6e",
|
|
958
|
+
"size_bytes": 6336
|
|
929
959
|
},
|
|
930
960
|
{
|
|
931
961
|
"path": "src/commands/recipes/impl/commands/info.ts",
|
|
@@ -934,13 +964,13 @@
|
|
|
934
964
|
},
|
|
935
965
|
{
|
|
936
966
|
"path": "src/commands/recipes/impl/commands/install.ts",
|
|
937
|
-
"sha256": "
|
|
938
|
-
"size_bytes":
|
|
967
|
+
"sha256": "675a1902bc6d3b73a27bd6d11e6a7ed9ab14b3ed54e65adceb88bd101601315e",
|
|
968
|
+
"size_bytes": 10686
|
|
939
969
|
},
|
|
940
970
|
{
|
|
941
971
|
"path": "src/commands/recipes/impl/commands/list-remote.ts",
|
|
942
|
-
"sha256": "
|
|
943
|
-
"size_bytes":
|
|
972
|
+
"sha256": "e865327f6fed290e8b277ac59ba4b24000bd48d8c2bde4d29f751744ab4dc5a3",
|
|
973
|
+
"size_bytes": 2177
|
|
944
974
|
},
|
|
945
975
|
{
|
|
946
976
|
"path": "src/commands/recipes/impl/commands/list.ts",
|
|
@@ -949,8 +979,8 @@
|
|
|
949
979
|
},
|
|
950
980
|
{
|
|
951
981
|
"path": "src/commands/recipes/impl/commands/remove.ts",
|
|
952
|
-
"sha256": "
|
|
953
|
-
"size_bytes":
|
|
982
|
+
"sha256": "88b5f3127bc41b433e412e1898f30f2d2ced6bf409e2d558058cee6c0988dc6b",
|
|
983
|
+
"size_bytes": 1807
|
|
954
984
|
},
|
|
955
985
|
{
|
|
956
986
|
"path": "src/commands/recipes/impl/constants.ts",
|
|
@@ -969,8 +999,8 @@
|
|
|
969
999
|
},
|
|
970
1000
|
{
|
|
971
1001
|
"path": "src/commands/recipes/impl/installed-recipes.ts",
|
|
972
|
-
"sha256": "
|
|
973
|
-
"size_bytes":
|
|
1002
|
+
"sha256": "ffc11dd7ff46b8428a21ebc5cab20ff7e1fd63e7c448e9297b9a661f459bd63b",
|
|
1003
|
+
"size_bytes": 3020
|
|
974
1004
|
},
|
|
975
1005
|
{
|
|
976
1006
|
"path": "src/commands/recipes/impl/manifest.ts",
|
|
@@ -989,8 +1019,8 @@
|
|
|
989
1019
|
},
|
|
990
1020
|
{
|
|
991
1021
|
"path": "src/commands/recipes/impl/project-installed-recipes.ts",
|
|
992
|
-
"sha256": "
|
|
993
|
-
"size_bytes":
|
|
1022
|
+
"sha256": "8694434010fe1bbcc2ad03da563d19b73ab9794a77b094657b463dfd78f5d055",
|
|
1023
|
+
"size_bytes": 4700
|
|
994
1024
|
},
|
|
995
1025
|
{
|
|
996
1026
|
"path": "src/commands/recipes/impl/project.ts",
|
|
@@ -999,8 +1029,8 @@
|
|
|
999
1029
|
},
|
|
1000
1030
|
{
|
|
1001
1031
|
"path": "src/commands/recipes/impl/resolver.ts",
|
|
1002
|
-
"sha256": "
|
|
1003
|
-
"size_bytes":
|
|
1032
|
+
"sha256": "3485e9e1eb8613ffcace6a5eb38682e287eab3d2d4c661883793cca5d1c90e9d",
|
|
1033
|
+
"size_bytes": 11708
|
|
1004
1034
|
},
|
|
1005
1035
|
{
|
|
1006
1036
|
"path": "src/commands/recipes/impl/scenario.ts",
|
|
@@ -1049,13 +1079,13 @@
|
|
|
1049
1079
|
},
|
|
1050
1080
|
{
|
|
1051
1081
|
"path": "src/commands/release.test-helpers.ts",
|
|
1052
|
-
"sha256": "
|
|
1053
|
-
"size_bytes":
|
|
1082
|
+
"sha256": "d4531cbcf31d1784c306622b50c42c993513af627c4d94e66894e2ae3ed088c4",
|
|
1083
|
+
"size_bytes": 2726
|
|
1054
1084
|
},
|
|
1055
1085
|
{
|
|
1056
1086
|
"path": "src/commands/release/apply.command.ts",
|
|
1057
|
-
"sha256": "
|
|
1058
|
-
"size_bytes":
|
|
1087
|
+
"sha256": "633963d12165417ed5aa23526ca563869196828c0e2019adf2f6a20b77e30844",
|
|
1088
|
+
"size_bytes": 14827
|
|
1059
1089
|
},
|
|
1060
1090
|
{
|
|
1061
1091
|
"path": "src/commands/release/apply.mutation.ts",
|
|
@@ -1134,8 +1164,8 @@
|
|
|
1134
1164
|
},
|
|
1135
1165
|
{
|
|
1136
1166
|
"path": "src/commands/shared/approval-requirements.ts",
|
|
1137
|
-
"sha256": "
|
|
1138
|
-
"size_bytes":
|
|
1167
|
+
"sha256": "bf2c8512a154075556a021a397cb3b177e7430de6569a7ee778af87b4abf62b0",
|
|
1168
|
+
"size_bytes": 773
|
|
1139
1169
|
},
|
|
1140
1170
|
{
|
|
1141
1171
|
"path": "src/commands/shared/git-context.ts",
|
|
@@ -1164,8 +1194,8 @@
|
|
|
1164
1194
|
},
|
|
1165
1195
|
{
|
|
1166
1196
|
"path": "src/commands/shared/network-approval.ts",
|
|
1167
|
-
"sha256": "
|
|
1168
|
-
"size_bytes":
|
|
1197
|
+
"sha256": "c56aa2b1b65211fd043a4a5ccda7d4cae53d43758b1945ec6c40c9cf57e9d843",
|
|
1198
|
+
"size_bytes": 568
|
|
1169
1199
|
},
|
|
1170
1200
|
{
|
|
1171
1201
|
"path": "src/commands/shared/operator-pipeline.ts",
|
|
@@ -1184,8 +1214,8 @@
|
|
|
1184
1214
|
},
|
|
1185
1215
|
{
|
|
1186
1216
|
"path": "src/commands/shared/pr-meta.ts",
|
|
1187
|
-
"sha256": "
|
|
1188
|
-
"size_bytes":
|
|
1217
|
+
"sha256": "72e883ec9aa8a90cdd4a7fc1b7e88eded5083c9b0e22b1ab6a338f2e12fc58f7",
|
|
1218
|
+
"size_bytes": 6264
|
|
1189
1219
|
},
|
|
1190
1220
|
{
|
|
1191
1221
|
"path": "src/commands/shared/reconcile-check.ts",
|
|
@@ -1194,18 +1224,23 @@
|
|
|
1194
1224
|
},
|
|
1195
1225
|
{
|
|
1196
1226
|
"path": "src/commands/shared/task-backend.ts",
|
|
1197
|
-
"sha256": "
|
|
1198
|
-
"size_bytes":
|
|
1227
|
+
"sha256": "b0c62f67b640f4ca4a1fffa227ceddf434556dcf7dfd88c21fd04cecfed89926",
|
|
1228
|
+
"size_bytes": 8993
|
|
1199
1229
|
},
|
|
1200
1230
|
{
|
|
1201
1231
|
"path": "src/commands/shared/task-handoff.ts",
|
|
1202
1232
|
"sha256": "c0205fc677b406ae11198e7e6657941b7079960c36382de8273a2044145eb200",
|
|
1203
1233
|
"size_bytes": 6625
|
|
1204
1234
|
},
|
|
1235
|
+
{
|
|
1236
|
+
"path": "src/commands/shared/task-local-freshness.ts",
|
|
1237
|
+
"sha256": "7b5060b0c5c973db8176e1022756a52f17c7cc28909e2c6ba5d1d3e265529282",
|
|
1238
|
+
"size_bytes": 981
|
|
1239
|
+
},
|
|
1205
1240
|
{
|
|
1206
1241
|
"path": "src/commands/shared/task-mutation.ts",
|
|
1207
|
-
"sha256": "
|
|
1208
|
-
"size_bytes":
|
|
1242
|
+
"sha256": "a63e0cef10e98eaaaa90d899bd6c0ff2336bb98a236b07a9b4c5780da14e97e4",
|
|
1243
|
+
"size_bytes": 4304
|
|
1209
1244
|
},
|
|
1210
1245
|
{
|
|
1211
1246
|
"path": "src/commands/shared/task-store.ts",
|
|
@@ -1244,8 +1279,8 @@
|
|
|
1244
1279
|
},
|
|
1245
1280
|
{
|
|
1246
1281
|
"path": "src/commands/task/block.ts",
|
|
1247
|
-
"sha256": "
|
|
1248
|
-
"size_bytes":
|
|
1282
|
+
"sha256": "095ec477b18c779e0be9983b0cd5d370cea90345d5247e5c357683882da6977e",
|
|
1283
|
+
"size_bytes": 3573
|
|
1249
1284
|
},
|
|
1250
1285
|
{
|
|
1251
1286
|
"path": "src/commands/task/close-duplicate.command.ts",
|
|
@@ -1269,8 +1304,8 @@
|
|
|
1269
1304
|
},
|
|
1270
1305
|
{
|
|
1271
1306
|
"path": "src/commands/task/close-shared.ts",
|
|
1272
|
-
"sha256": "
|
|
1273
|
-
"size_bytes":
|
|
1307
|
+
"sha256": "205e0667a9e5cb2e9870f2184c97d0969ab473c6c9820513c2855ec414d8ec59",
|
|
1308
|
+
"size_bytes": 1811
|
|
1274
1309
|
},
|
|
1275
1310
|
{
|
|
1276
1311
|
"path": "src/commands/task/comment.command.ts",
|
|
@@ -1329,13 +1364,13 @@
|
|
|
1329
1364
|
},
|
|
1330
1365
|
{
|
|
1331
1366
|
"path": "src/commands/task/finish-shared.ts",
|
|
1332
|
-
"sha256": "
|
|
1333
|
-
"size_bytes":
|
|
1367
|
+
"sha256": "df6f3f59b20700d4816d6f908d6c5144238106323b75c34bb74d15fb1384d8ab",
|
|
1368
|
+
"size_bytes": 7850
|
|
1334
1369
|
},
|
|
1335
1370
|
{
|
|
1336
1371
|
"path": "src/commands/task/finish.ts",
|
|
1337
|
-
"sha256": "
|
|
1338
|
-
"size_bytes":
|
|
1372
|
+
"sha256": "f2364be2087b0e95876f5552caf285557fd24b6ab1d76a5e5e2d06c2bfbf12d4",
|
|
1373
|
+
"size_bytes": 13432
|
|
1339
1374
|
},
|
|
1340
1375
|
{
|
|
1341
1376
|
"path": "src/commands/task/handoff-record.command.ts",
|
|
@@ -1429,8 +1464,8 @@
|
|
|
1429
1464
|
},
|
|
1430
1465
|
{
|
|
1431
1466
|
"path": "src/commands/task/new.ts",
|
|
1432
|
-
"sha256": "
|
|
1433
|
-
"size_bytes":
|
|
1467
|
+
"sha256": "913507fbe734d9a383eeba0ef40b82288be276d66f60bea4d00b808d2477d7a6",
|
|
1468
|
+
"size_bytes": 6975
|
|
1434
1469
|
},
|
|
1435
1470
|
{
|
|
1436
1471
|
"path": "src/commands/task/next.run.ts",
|
|
@@ -1614,8 +1649,8 @@
|
|
|
1614
1649
|
},
|
|
1615
1650
|
{
|
|
1616
1651
|
"path": "src/commands/task/set-status.ts",
|
|
1617
|
-
"sha256": "
|
|
1618
|
-
"size_bytes":
|
|
1652
|
+
"sha256": "a29d0efbeda664f0304d84f4945741717832486037bf81fb378472ad4c460ef7",
|
|
1653
|
+
"size_bytes": 4796
|
|
1619
1654
|
},
|
|
1620
1655
|
{
|
|
1621
1656
|
"path": "src/commands/task/shared.ts",
|
|
@@ -1644,8 +1679,8 @@
|
|
|
1644
1679
|
},
|
|
1645
1680
|
{
|
|
1646
1681
|
"path": "src/commands/task/shared/transition-command.ts",
|
|
1647
|
-
"sha256": "
|
|
1648
|
-
"size_bytes":
|
|
1682
|
+
"sha256": "bc8ce54983d6ff8793a50ef4ac73486c7f194cbeed2d34c075be92946dc7eae0",
|
|
1683
|
+
"size_bytes": 2411
|
|
1649
1684
|
},
|
|
1650
1685
|
{
|
|
1651
1686
|
"path": "src/commands/task/shared/transitions.ts",
|
|
@@ -1679,13 +1714,13 @@
|
|
|
1679
1714
|
},
|
|
1680
1715
|
{
|
|
1681
1716
|
"path": "src/commands/task/start-ready.ts",
|
|
1682
|
-
"sha256": "
|
|
1683
|
-
"size_bytes":
|
|
1717
|
+
"sha256": "f3b1e852d0d8052586b2f33bf2123d5456bf4ce90ef34fca1ba91fa7a020ea3b",
|
|
1718
|
+
"size_bytes": 1867
|
|
1684
1719
|
},
|
|
1685
1720
|
{
|
|
1686
1721
|
"path": "src/commands/task/start.ts",
|
|
1687
|
-
"sha256": "
|
|
1688
|
-
"size_bytes":
|
|
1722
|
+
"sha256": "29db3298eb36861df5b4ab83dec5e884d7da33decbcde14e011df38bd1bd885a",
|
|
1723
|
+
"size_bytes": 5980
|
|
1689
1724
|
},
|
|
1690
1725
|
{
|
|
1691
1726
|
"path": "src/commands/task/task.command.ts",
|
|
@@ -1714,8 +1749,8 @@
|
|
|
1714
1749
|
},
|
|
1715
1750
|
{
|
|
1716
1751
|
"path": "src/commands/task/verify-record.ts",
|
|
1717
|
-
"sha256": "
|
|
1718
|
-
"size_bytes":
|
|
1752
|
+
"sha256": "7fb9dde6c5a13f9e4c4ec770a7e7f7e64631aec3d758aaa94c34d14dcf7363c8",
|
|
1753
|
+
"size_bytes": 6480
|
|
1719
1754
|
},
|
|
1720
1755
|
{
|
|
1721
1756
|
"path": "src/commands/task/verify-rework.command.ts",
|
|
@@ -1739,8 +1774,8 @@
|
|
|
1739
1774
|
},
|
|
1740
1775
|
{
|
|
1741
1776
|
"path": "src/commands/upgrade.ts",
|
|
1742
|
-
"sha256": "
|
|
1743
|
-
"size_bytes":
|
|
1777
|
+
"sha256": "7a14216c97e771b9b2e5c5a0c552cd94714351f33d11417a357ffe9fcbb66cf4",
|
|
1778
|
+
"size_bytes": 11199
|
|
1744
1779
|
},
|
|
1745
1780
|
{
|
|
1746
1781
|
"path": "src/commands/upgrade/apply.ts",
|
|
@@ -1869,8 +1904,8 @@
|
|
|
1869
1904
|
},
|
|
1870
1905
|
{
|
|
1871
1906
|
"path": "src/policy/engine.ts",
|
|
1872
|
-
"sha256": "
|
|
1873
|
-
"size_bytes":
|
|
1907
|
+
"sha256": "d86f0bd08200e0d8a366f8036b586c533e9f8db35815649348e1d183f35f21ea",
|
|
1908
|
+
"size_bytes": 1841
|
|
1874
1909
|
},
|
|
1875
1910
|
{
|
|
1876
1911
|
"path": "src/policy/evaluate.ts",
|
|
@@ -1907,10 +1942,15 @@
|
|
|
1907
1942
|
"sha256": "ca1d0df920de78fe0d0caa3b4dcf14a6a60799d2cfd5b0a6bb6b5cd1869cd7cc",
|
|
1908
1943
|
"size_bytes": 2405
|
|
1909
1944
|
},
|
|
1945
|
+
{
|
|
1946
|
+
"path": "src/policy/taxonomy.ts",
|
|
1947
|
+
"sha256": "c31cafc9639fdc44e250ab9a2a7944b564d260c8848b40f43a81aa57d2d148bb",
|
|
1948
|
+
"size_bytes": 9576
|
|
1949
|
+
},
|
|
1910
1950
|
{
|
|
1911
1951
|
"path": "src/policy/types.ts",
|
|
1912
|
-
"sha256": "
|
|
1913
|
-
"size_bytes":
|
|
1952
|
+
"sha256": "d8fe769d87de38ef3ef16c1928623d184ca9a70be4b321afe4f4db0bb568df35",
|
|
1953
|
+
"size_bytes": 1010
|
|
1914
1954
|
},
|
|
1915
1955
|
{
|
|
1916
1956
|
"path": "src/ports/clock-port.ts",
|
|
@@ -1964,8 +2004,8 @@
|
|
|
1964
2004
|
},
|
|
1965
2005
|
{
|
|
1966
2006
|
"path": "src/runner/artifacts.ts",
|
|
1967
|
-
"sha256": "
|
|
1968
|
-
"size_bytes":
|
|
2007
|
+
"sha256": "38b20458e728a9621c5de69a30c41fe29676ce80a28d294458b170f32fc46bb6",
|
|
2008
|
+
"size_bytes": 7695
|
|
1969
2009
|
},
|
|
1970
2010
|
{
|
|
1971
2011
|
"path": "src/runner/codex-approval-probe.ts",
|
|
@@ -1984,13 +2024,13 @@
|
|
|
1984
2024
|
},
|
|
1985
2025
|
{
|
|
1986
2026
|
"path": "src/runner/context/base-prompts.ts",
|
|
1987
|
-
"sha256": "
|
|
1988
|
-
"size_bytes":
|
|
2027
|
+
"sha256": "7e2a1b64b125ad7aa7eb46b7ee722bffd7625c9f55e95e683b9ad46308e24ed1",
|
|
2028
|
+
"size_bytes": 16731
|
|
1989
2029
|
},
|
|
1990
2030
|
{
|
|
1991
2031
|
"path": "src/runner/context/recipe-context.ts",
|
|
1992
|
-
"sha256": "
|
|
1993
|
-
"size_bytes":
|
|
2032
|
+
"sha256": "073ab67a86c7d741f3dcf649f32b795deda4039701e6911e01ffe34900c44816",
|
|
2033
|
+
"size_bytes": 3029
|
|
1994
2034
|
},
|
|
1995
2035
|
{
|
|
1996
2036
|
"path": "src/runner/context/task-context.ts",
|
|
@@ -2064,18 +2104,18 @@
|
|
|
2064
2104
|
},
|
|
2065
2105
|
{
|
|
2066
2106
|
"path": "src/runner/types.ts",
|
|
2067
|
-
"sha256": "
|
|
2068
|
-
"size_bytes":
|
|
2107
|
+
"sha256": "a502df4e3ebc1e4c9401041e82280ac9345d53cab0b701e093167c221ec94f75",
|
|
2108
|
+
"size_bytes": 10217
|
|
2069
2109
|
},
|
|
2070
2110
|
{
|
|
2071
2111
|
"path": "src/runner/usecases/scenario-materialize-task.ts",
|
|
2072
|
-
"sha256": "
|
|
2073
|
-
"size_bytes":
|
|
2112
|
+
"sha256": "ac7ce0ff6504cb9e38e7369fb4f864a37b5badff12ccf7a669f7ddec90408dbe",
|
|
2113
|
+
"size_bytes": 9915
|
|
2074
2114
|
},
|
|
2075
2115
|
{
|
|
2076
2116
|
"path": "src/runner/usecases/task-run-inspect.ts",
|
|
2077
|
-
"sha256": "
|
|
2078
|
-
"size_bytes":
|
|
2117
|
+
"sha256": "0aedd322d018bff13db5594a566b8757baab22862c2c9f93e85eea3c826603a5",
|
|
2118
|
+
"size_bytes": 3525
|
|
2079
2119
|
},
|
|
2080
2120
|
{
|
|
2081
2121
|
"path": "src/runner/usecases/task-run-lifecycle-cancel.ts",
|
|
@@ -2089,8 +2129,8 @@
|
|
|
2089
2129
|
},
|
|
2090
2130
|
{
|
|
2091
2131
|
"path": "src/runner/usecases/task-run-lifecycle-shared.ts",
|
|
2092
|
-
"sha256": "
|
|
2093
|
-
"size_bytes":
|
|
2132
|
+
"sha256": "20802868677e74c4eecaa5c73018571becbc1456522befe71240a37e22f1e10f",
|
|
2133
|
+
"size_bytes": 8246
|
|
2094
2134
|
},
|
|
2095
2135
|
{
|
|
2096
2136
|
"path": "src/runner/usecases/task-run-lifecycle.ts",
|
|
@@ -2099,8 +2139,163 @@
|
|
|
2099
2139
|
},
|
|
2100
2140
|
{
|
|
2101
2141
|
"path": "src/runner/usecases/task-run.ts",
|
|
2102
|
-
"sha256": "
|
|
2103
|
-
"size_bytes":
|
|
2142
|
+
"sha256": "72788585bb6d106808fae203d7447aa17cee1631f3921c615b93aaa4c74424a9",
|
|
2143
|
+
"size_bytes": 14186
|
|
2144
|
+
},
|
|
2145
|
+
{
|
|
2146
|
+
"path": "src/runtime/approvals/index.ts",
|
|
2147
|
+
"sha256": "86db7eb67a6f042819ff41e0243b6dd3567a61119f6170691dbaebbf7f8f4f16",
|
|
2148
|
+
"size_bytes": 296
|
|
2149
|
+
},
|
|
2150
|
+
{
|
|
2151
|
+
"path": "src/runtime/approvals/runtime.ts",
|
|
2152
|
+
"sha256": "8b310952385e197213e0c43d57bf9a2256504efba935acebcf2ca0d587a587d8",
|
|
2153
|
+
"size_bytes": 5226
|
|
2154
|
+
},
|
|
2155
|
+
{
|
|
2156
|
+
"path": "src/runtime/approvals/types.ts",
|
|
2157
|
+
"sha256": "481348a394bebbf4b7170e939f46f64d1efece9221c84c6f812f41fc3ca394e8",
|
|
2158
|
+
"size_bytes": 944
|
|
2159
|
+
},
|
|
2160
|
+
{
|
|
2161
|
+
"path": "src/runtime/behavior/index.ts",
|
|
2162
|
+
"sha256": "ed428c115712959d340e05a125b44cdce31cbd8a3e737fddba330f84d413c9ab",
|
|
2163
|
+
"size_bytes": 215
|
|
2164
|
+
},
|
|
2165
|
+
{
|
|
2166
|
+
"path": "src/runtime/behavior/resolve.ts",
|
|
2167
|
+
"sha256": "8fd639489a4d1c7aff3fe97680aceb9ae17d52c734e1d1fafc97e91bd975718c",
|
|
2168
|
+
"size_bytes": 2819
|
|
2169
|
+
},
|
|
2170
|
+
{
|
|
2171
|
+
"path": "src/runtime/behavior/types.ts",
|
|
2172
|
+
"sha256": "f732b3f2ce8dd3bb1a7727a78451aa25796ac393646085079bc9358fddb64416",
|
|
2173
|
+
"size_bytes": 826
|
|
2174
|
+
},
|
|
2175
|
+
{
|
|
2176
|
+
"path": "src/runtime/capabilities/backend.ts",
|
|
2177
|
+
"sha256": "1e1fc43bad1ae0bf588f45301a2754691d4a113c63572cd259ae0ea024ef79dd",
|
|
2178
|
+
"size_bytes": 4088
|
|
2179
|
+
},
|
|
2180
|
+
{
|
|
2181
|
+
"path": "src/runtime/capabilities/index.ts",
|
|
2182
|
+
"sha256": "c210f41aa79254bdb92462fa27c45690b8657c631f4a6bd28b67fed6ba7eedc3",
|
|
2183
|
+
"size_bytes": 591
|
|
2184
|
+
},
|
|
2185
|
+
{
|
|
2186
|
+
"path": "src/runtime/capabilities/recipe.ts",
|
|
2187
|
+
"sha256": "88bbf9ab7ba531de87014db981e8c791d7c30fd88bcb352cd7d328cab59aebc0",
|
|
2188
|
+
"size_bytes": 4641
|
|
2189
|
+
},
|
|
2190
|
+
{
|
|
2191
|
+
"path": "src/runtime/capabilities/registry.ts",
|
|
2192
|
+
"sha256": "5d981edc03eb1ada352446681e49b4de6e9abd025ae9786843597871300f8f29",
|
|
2193
|
+
"size_bytes": 3109
|
|
2194
|
+
},
|
|
2195
|
+
{
|
|
2196
|
+
"path": "src/runtime/capabilities/runner.ts",
|
|
2197
|
+
"sha256": "7409655800a7234cbbb0ebdc034c47f5cc474836994f8d5a1af01015a088757b",
|
|
2198
|
+
"size_bytes": 2995
|
|
2199
|
+
},
|
|
2200
|
+
{
|
|
2201
|
+
"path": "src/runtime/capabilities/types.ts",
|
|
2202
|
+
"sha256": "2c4d516324972eaff7a28415abe05531b428bb66429dd8c4029f971bab5730be",
|
|
2203
|
+
"size_bytes": 1145
|
|
2204
|
+
},
|
|
2205
|
+
{
|
|
2206
|
+
"path": "src/runtime/execution-profile/index.ts",
|
|
2207
|
+
"sha256": "aea4bce51a62b3c3b5150150e7305196f2aa19d38cd33b541258dd9b8c8d8029",
|
|
2208
|
+
"size_bytes": 214
|
|
2209
|
+
},
|
|
2210
|
+
{
|
|
2211
|
+
"path": "src/runtime/execution-profile/resolve.ts",
|
|
2212
|
+
"sha256": "81483a13fe55b37f04d7e15b65d6ea44ea2f46bf73b12ec45c56b6a0f8cdc7e5",
|
|
2213
|
+
"size_bytes": 3051
|
|
2214
|
+
},
|
|
2215
|
+
{
|
|
2216
|
+
"path": "src/runtime/execution-profile/types.ts",
|
|
2217
|
+
"sha256": "3fd4b7a4773b2086e5f9c3a123889f4a764f0b1788a5bc9dd6b72caeb3930ac1",
|
|
2218
|
+
"size_bytes": 894
|
|
2219
|
+
},
|
|
2220
|
+
{
|
|
2221
|
+
"path": "src/runtime/explain/index.ts",
|
|
2222
|
+
"sha256": "7feb59fc6f8c196029db27e5a965cac892cdb804853c3954892875d0d600559b",
|
|
2223
|
+
"size_bytes": 217
|
|
2224
|
+
},
|
|
2225
|
+
{
|
|
2226
|
+
"path": "src/runtime/explain/resolve.ts",
|
|
2227
|
+
"sha256": "d9720607246bf77e163034e8eb71cb9a2b0507e30adae98b06c605047bbf4cad",
|
|
2228
|
+
"size_bytes": 2730
|
|
2229
|
+
},
|
|
2230
|
+
{
|
|
2231
|
+
"path": "src/runtime/explain/types.ts",
|
|
2232
|
+
"sha256": "df738f4c04a9ec00a4f6f0f5cdf01782b93f91d04045fba524e46c0cb1aebfc5",
|
|
2233
|
+
"size_bytes": 1126
|
|
2234
|
+
},
|
|
2235
|
+
{
|
|
2236
|
+
"path": "src/runtime/harness/index.ts",
|
|
2237
|
+
"sha256": "b49b1e68a08865fe4d09351781c622c501cedc3b8c3a9764706b5f769ec5e53a",
|
|
2238
|
+
"size_bytes": 318
|
|
2239
|
+
},
|
|
2240
|
+
{
|
|
2241
|
+
"path": "src/runtime/harness/resolve-from-command-context.ts",
|
|
2242
|
+
"sha256": "e3bc267b61a559b05a01c94c6dc19da6da4b25d95476c97823fc41daa9894034",
|
|
2243
|
+
"size_bytes": 588
|
|
2244
|
+
},
|
|
2245
|
+
{
|
|
2246
|
+
"path": "src/runtime/harness/resolve.ts",
|
|
2247
|
+
"sha256": "c267b309a6eef7a2e7dc54b0a38430963d4ad47a13d4aa059b81d33034dabd6c",
|
|
2248
|
+
"size_bytes": 7846
|
|
2249
|
+
},
|
|
2250
|
+
{
|
|
2251
|
+
"path": "src/runtime/harness/types.ts",
|
|
2252
|
+
"sha256": "8fe94a7f18a11401d140bc1f3748bfeb37e10e89b4054b57be8ac3b329a1dd20",
|
|
2253
|
+
"size_bytes": 2720
|
|
2254
|
+
},
|
|
2255
|
+
{
|
|
2256
|
+
"path": "src/runtime/incidents/index.ts",
|
|
2257
|
+
"sha256": "376689b74bf787f07e1fc16170c7ec7591fc99cb39488707880b87ed5d78a40f",
|
|
2258
|
+
"size_bytes": 608
|
|
2259
|
+
},
|
|
2260
|
+
{
|
|
2261
|
+
"path": "src/runtime/incidents/resolve.ts",
|
|
2262
|
+
"sha256": "74d3e1010f57b592cdb56255d407a32aea3f05d5c912295422617adda188eaac",
|
|
2263
|
+
"size_bytes": 16423
|
|
2264
|
+
},
|
|
2265
|
+
{
|
|
2266
|
+
"path": "src/runtime/incidents/types.ts",
|
|
2267
|
+
"sha256": "c3d621cf6c4466505e37e681ebee358a80fc1492de846eca01e2b1d4748eba24",
|
|
2268
|
+
"size_bytes": 1810
|
|
2269
|
+
},
|
|
2270
|
+
{
|
|
2271
|
+
"path": "src/runtime/protocol/index.ts",
|
|
2272
|
+
"sha256": "1d6fd90926db867360cc8a2140a1dc5462fceccf18bfa4f29198f0aeb02d6c59",
|
|
2273
|
+
"size_bytes": 657
|
|
2274
|
+
},
|
|
2275
|
+
{
|
|
2276
|
+
"path": "src/runtime/protocol/resolve.ts",
|
|
2277
|
+
"sha256": "13eea9f729faa73340b07238fb591ccce45d186865cbc9aa70bc4eb73cb8ea6a",
|
|
2278
|
+
"size_bytes": 1852
|
|
2279
|
+
},
|
|
2280
|
+
{
|
|
2281
|
+
"path": "src/runtime/protocol/types.ts",
|
|
2282
|
+
"sha256": "72126a1c785961cd1151a8ec7b75071778d034913ca8dcfa6fcf2ee505c98367",
|
|
2283
|
+
"size_bytes": 1595
|
|
2284
|
+
},
|
|
2285
|
+
{
|
|
2286
|
+
"path": "src/runtime/task-intake/index.ts",
|
|
2287
|
+
"sha256": "b78e01b2e26c395f8c0c42d1482048ac66aa3e49cff8545c3a298c079160eaa6",
|
|
2288
|
+
"size_bytes": 526
|
|
2289
|
+
},
|
|
2290
|
+
{
|
|
2291
|
+
"path": "src/runtime/task-intake/resolve.ts",
|
|
2292
|
+
"sha256": "6f5e51ad1e00ae1cea5f5bf7fe0a87c2c686fc7ab96f3e4cb597c61bf63de104",
|
|
2293
|
+
"size_bytes": 13855
|
|
2294
|
+
},
|
|
2295
|
+
{
|
|
2296
|
+
"path": "src/runtime/task-intake/types.ts",
|
|
2297
|
+
"sha256": "e97317f5b594e6771a9ee76af2c92654f0c7fe8e22a5f9747eb62fc5837c5933",
|
|
2298
|
+
"size_bytes": 3419
|
|
2104
2299
|
},
|
|
2105
2300
|
{
|
|
2106
2301
|
"path": "src/shared/agent-emoji.ts",
|
|
@@ -2159,8 +2354,8 @@
|
|
|
2159
2354
|
},
|
|
2160
2355
|
{
|
|
2161
2356
|
"path": "src/shared/protected-paths.ts",
|
|
2162
|
-
"sha256": "
|
|
2163
|
-
"size_bytes":
|
|
2357
|
+
"sha256": "5d545fc9336dc428ea2b5efc370c22c181efb575cac0056877223d8e47167304",
|
|
2358
|
+
"size_bytes": 4034
|
|
2164
2359
|
},
|
|
2165
2360
|
{
|
|
2166
2361
|
"path": "src/shared/repo-cli-version.ts",
|
|
@@ -2214,18 +2409,18 @@
|
|
|
2214
2409
|
},
|
|
2215
2410
|
{
|
|
2216
2411
|
"path": "src/usecases/context/resolve-context.ts",
|
|
2217
|
-
"sha256": "
|
|
2218
|
-
"size_bytes":
|
|
2412
|
+
"sha256": "582452c4d78705fe8d0685e2b8912eb3de163e425d7792a09f3a1f59ed2f1dfc",
|
|
2413
|
+
"size_bytes": 6586
|
|
2219
2414
|
},
|
|
2220
2415
|
{
|
|
2221
2416
|
"path": "src/usecases/task/task-list-usecase.ts",
|
|
2222
|
-
"sha256": "
|
|
2223
|
-
"size_bytes":
|
|
2417
|
+
"sha256": "d5b7d28552de269f86b56496d5213ee3a819e04816bbf17ac21937a834da84fe",
|
|
2418
|
+
"size_bytes": 810
|
|
2224
2419
|
},
|
|
2225
2420
|
{
|
|
2226
2421
|
"path": "src/usecases/task/task-new-usecase.ts",
|
|
2227
|
-
"sha256": "
|
|
2228
|
-
"size_bytes":
|
|
2422
|
+
"sha256": "3b35c860f078522c81b09edb6d76dca61045e0149acf7454f45331d68a1ae986",
|
|
2423
|
+
"size_bytes": 832
|
|
2229
2424
|
},
|
|
2230
2425
|
{
|
|
2231
2426
|
"path": "src/workflow-runtime/build.ts",
|