agentplane 0.3.10 → 0.3.11
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/policy/governance.md +3 -4
- package/assets/policy/incidents.md +19 -88
- package/assets/policy/workflow.branch_pr.md +1 -1
- package/assets/policy/workflow.direct.md +2 -2
- package/bin/agentplane.js +56 -1
- package/bin/runtime-watch.js +1 -0
- package/bin/stale-dist-policy.d.ts +1 -1
- package/bin/stale-dist-policy.js +13 -0
- package/dist/.build-manifest.json +219 -154
- package/dist/cli/bootstrap-guide.d.ts.map +1 -1
- package/dist/cli/bootstrap-guide.js +3 -2
- package/dist/cli/command-guide.d.ts.map +1 -1
- package/dist/cli/command-guide.js +2 -1
- package/dist/cli/command-invocations.d.ts.map +1 -1
- package/dist/cli/command-invocations.js +4 -1
- package/dist/cli/run-cli/command-catalog/project.d.ts +1 -1
- package/dist/cli/run-cli/command-catalog/project.d.ts.map +1 -1
- package/dist/cli/run-cli/command-catalog/project.js +3 -1
- package/dist/cli/run-cli/command-catalog/task.d.ts +1 -1
- package/dist/cli/run-cli/command-catalog/task.d.ts.map +1 -1
- package/dist/cli/run-cli/command-catalog/task.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/core/preflight.d.ts.map +1 -1
- package/dist/cli/run-cli/commands/core/preflight.js +44 -1
- package/dist/cli/run-cli.test-helpers.d.ts.map +1 -1
- package/dist/cli/run-cli.test-helpers.js +12 -0
- package/dist/commands/branch/cleanup-merged.d.ts +2 -0
- package/dist/commands/branch/cleanup-merged.d.ts.map +1 -1
- package/dist/commands/branch/cleanup-merged.js +132 -28
- package/dist/commands/branch/work-start.d.ts.map +1 -1
- package/dist/commands/branch/work-start.js +60 -1
- package/dist/commands/cleanup/merged.command.d.ts +2 -0
- package/dist/commands/cleanup/merged.command.d.ts.map +1 -1
- package/dist/commands/cleanup/merged.command.js +24 -0
- package/dist/commands/doctor/branch-pr.d.ts +4 -0
- package/dist/commands/doctor/branch-pr.d.ts.map +1 -0
- package/dist/commands/doctor/branch-pr.js +96 -0
- package/dist/commands/doctor/fixes.d.ts +5 -0
- package/dist/commands/doctor/fixes.d.ts.map +1 -1
- package/dist/commands/doctor/fixes.js +70 -0
- package/dist/commands/doctor.run.d.ts.map +1 -1
- package/dist/commands/doctor.run.js +6 -1
- package/dist/commands/finish.run.d.ts.map +1 -1
- package/dist/commands/finish.run.js +11 -0
- package/dist/commands/finish.spec.d.ts +11 -0
- package/dist/commands/finish.spec.d.ts.map +1 -1
- package/dist/commands/finish.spec.js +51 -0
- package/dist/commands/guard/impl/close-message.d.ts.map +1 -1
- package/dist/commands/guard/impl/close-message.js +23 -6
- package/dist/commands/guard/impl/commands.d.ts.map +1 -1
- package/dist/commands/guard/impl/commands.js +24 -2
- package/dist/commands/guard/impl/env.d.ts +1 -0
- package/dist/commands/guard/impl/env.d.ts.map +1 -1
- package/dist/commands/guard/impl/env.js +1 -0
- package/dist/commands/hooks/index.d.ts.map +1 -1
- package/dist/commands/hooks/index.js +98 -1
- package/dist/commands/incidents/collect.command.d.ts.map +1 -1
- package/dist/commands/incidents/collect.command.js +12 -7
- package/dist/commands/incidents/incidents.command.js +1 -1
- package/dist/commands/incidents/shared.d.ts +34 -0
- package/dist/commands/incidents/shared.d.ts.map +1 -1
- package/dist/commands/incidents/shared.js +166 -12
- package/dist/commands/pr/check.d.ts.map +1 -1
- package/dist/commands/pr/check.js +238 -135
- package/dist/commands/pr/close-superseded.d.ts +9 -0
- package/dist/commands/pr/close-superseded.d.ts.map +1 -0
- package/dist/commands/pr/close-superseded.js +129 -0
- package/dist/commands/pr/close.d.ts +11 -0
- package/dist/commands/pr/close.d.ts.map +1 -0
- package/dist/commands/pr/close.js +116 -0
- package/dist/commands/pr/index.d.ts +2 -0
- package/dist/commands/pr/index.d.ts.map +1 -1
- package/dist/commands/pr/index.js +2 -0
- package/dist/commands/pr/integrate/artifacts.d.ts +7 -0
- package/dist/commands/pr/integrate/artifacts.d.ts.map +1 -1
- package/dist/commands/pr/integrate/artifacts.js +66 -1
- package/dist/commands/pr/integrate/cmd.d.ts.map +1 -1
- package/dist/commands/pr/integrate/cmd.js +16 -0
- package/dist/commands/pr/integrate/internal/bootstrap-guidance.d.ts +8 -0
- package/dist/commands/pr/integrate/internal/bootstrap-guidance.d.ts.map +1 -0
- package/dist/commands/pr/integrate/internal/bootstrap-guidance.js +59 -0
- package/dist/commands/pr/integrate/internal/finalize.d.ts.map +1 -1
- package/dist/commands/pr/integrate/internal/finalize.js +40 -12
- package/dist/commands/pr/integrate/internal/merge.d.ts.map +1 -1
- package/dist/commands/pr/integrate/internal/merge.js +36 -13
- package/dist/commands/pr/integrate/internal/post-integrate-bootstrap.d.ts +13 -0
- package/dist/commands/pr/integrate/internal/post-integrate-bootstrap.d.ts.map +1 -0
- package/dist/commands/pr/integrate/internal/post-integrate-bootstrap.js +25 -0
- package/dist/commands/pr/integrate/internal/prepare.d.ts +3 -2
- package/dist/commands/pr/integrate/internal/prepare.d.ts.map +1 -1
- package/dist/commands/pr/integrate/internal/prepare.js +101 -38
- package/dist/commands/pr/internal/freshness.d.ts +20 -0
- package/dist/commands/pr/internal/freshness.d.ts.map +1 -0
- package/dist/commands/pr/internal/freshness.js +50 -0
- package/dist/commands/pr/internal/gh-api.d.ts +6 -0
- package/dist/commands/pr/internal/gh-api.d.ts.map +1 -0
- package/dist/commands/pr/internal/gh-api.js +80 -0
- package/dist/commands/pr/internal/pr-paths.d.ts +10 -0
- package/dist/commands/pr/internal/pr-paths.d.ts.map +1 -1
- package/dist/commands/pr/internal/pr-paths.js +10 -0
- package/dist/commands/pr/internal/review-template.d.ts.map +1 -1
- package/dist/commands/pr/internal/review-template.js +37 -4
- package/dist/commands/pr/internal/sync.d.ts +9 -0
- package/dist/commands/pr/internal/sync.d.ts.map +1 -1
- package/dist/commands/pr/internal/sync.js +462 -122
- package/dist/commands/pr/open.d.ts +1 -0
- package/dist/commands/pr/open.d.ts.map +1 -1
- package/dist/commands/pr/open.js +13 -2
- package/dist/commands/pr/pr.command.d.ts +15 -0
- package/dist/commands/pr/pr.command.d.ts.map +1 -1
- package/dist/commands/pr/pr.command.js +118 -2
- package/dist/commands/pr/update.d.ts.map +1 -1
- package/dist/commands/pr/update.js +59 -1
- package/dist/commands/release/apply.command.d.ts.map +1 -1
- package/dist/commands/release/apply.command.js +3 -17
- package/dist/commands/release/apply.preflight.d.ts.map +1 -1
- package/dist/commands/release/apply.preflight.js +1 -1
- package/dist/commands/shared/gh-transport.d.ts +16 -0
- package/dist/commands/shared/gh-transport.d.ts.map +1 -0
- package/dist/commands/shared/gh-transport.js +71 -0
- package/dist/commands/shared/git-diff.d.ts +3 -1
- package/dist/commands/shared/git-diff.d.ts.map +1 -1
- package/dist/commands/shared/git-diff.js +10 -2
- package/dist/commands/shared/git-ops.d.ts +1 -0
- package/dist/commands/shared/git-ops.d.ts.map +1 -1
- package/dist/commands/shared/git-ops.js +15 -0
- package/dist/commands/shared/git-worktree.d.ts +2 -0
- package/dist/commands/shared/git-worktree.d.ts.map +1 -1
- package/dist/commands/shared/git-worktree.js +22 -2
- package/dist/commands/shared/post-commit-pr-artifacts.d.ts +9 -0
- package/dist/commands/shared/post-commit-pr-artifacts.d.ts.map +1 -0
- package/dist/commands/shared/post-commit-pr-artifacts.js +22 -0
- package/dist/commands/shared/pr-meta.d.ts +20 -0
- package/dist/commands/shared/pr-meta.d.ts.map +1 -1
- package/dist/commands/shared/pr-meta.js +125 -0
- package/dist/commands/shared/task-backend.d.ts +7 -0
- package/dist/commands/shared/task-backend.d.ts.map +1 -1
- package/dist/commands/shared/task-backend.js +34 -22
- package/dist/commands/task/close-duplicate.d.ts.map +1 -1
- package/dist/commands/task/close-duplicate.js +34 -1
- package/dist/commands/task/derive.js +1 -1
- package/dist/commands/task/doc-template.d.ts.map +1 -1
- package/dist/commands/task/doc-template.js +7 -11
- package/dist/commands/task/findings-add.command.d.ts +20 -0
- package/dist/commands/task/findings-add.command.d.ts.map +1 -0
- package/dist/commands/task/findings-add.command.js +165 -0
- package/dist/commands/task/findings.command.d.ts +7 -0
- package/dist/commands/task/findings.command.d.ts.map +1 -0
- package/dist/commands/task/findings.command.js +20 -0
- package/dist/commands/task/findings.d.ts +63 -0
- package/dist/commands/task/findings.d.ts.map +1 -0
- package/dist/commands/task/findings.js +188 -0
- package/dist/commands/task/finish-shared.d.ts +1 -0
- package/dist/commands/task/finish-shared.d.ts.map +1 -1
- package/dist/commands/task/finish-shared.js +55 -1
- package/dist/commands/task/finish.d.ts +10 -0
- package/dist/commands/task/finish.d.ts.map +1 -1
- package/dist/commands/task/finish.js +125 -6
- package/dist/commands/task/hosted-close-pr.command.d.ts +11 -0
- package/dist/commands/task/hosted-close-pr.command.d.ts.map +1 -0
- package/dist/commands/task/hosted-close-pr.command.js +414 -0
- package/dist/commands/task/hosted-close.command.d.ts.map +1 -1
- package/dist/commands/task/hosted-close.command.js +49 -1
- package/dist/commands/task/hosted-merge-sync.d.ts +38 -0
- package/dist/commands/task/hosted-merge-sync.d.ts.map +1 -1
- package/dist/commands/task/hosted-merge-sync.js +249 -17
- package/dist/commands/task/index.d.ts +1 -0
- package/dist/commands/task/index.d.ts.map +1 -1
- package/dist/commands/task/index.js +1 -0
- package/dist/commands/task/new.d.ts +1 -0
- package/dist/commands/task/new.d.ts.map +1 -1
- package/dist/commands/task/new.js +71 -1
- package/dist/commands/task/new.spec.d.ts.map +1 -1
- package/dist/commands/task/new.spec.js +7 -0
- package/dist/commands/task/normalize.command.d.ts +2 -0
- package/dist/commands/task/normalize.command.d.ts.map +1 -1
- package/dist/commands/task/normalize.command.js +45 -0
- package/dist/commands/task/normalize.d.ts +2 -0
- package/dist/commands/task/normalize.d.ts.map +1 -1
- package/dist/commands/task/normalize.js +85 -8
- package/dist/commands/task/plan.d.ts.map +1 -1
- package/dist/commands/task/plan.js +7 -10
- package/dist/commands/task/shared/docs.d.ts +6 -0
- package/dist/commands/task/shared/docs.d.ts.map +1 -1
- package/dist/commands/task/shared/docs.js +14 -0
- package/dist/commands/task/shared/transitions.d.ts.map +1 -1
- package/dist/commands/task/shared/transitions.js +11 -1
- package/dist/commands/task/shared.d.ts +1 -1
- package/dist/commands/task/shared.d.ts.map +1 -1
- package/dist/commands/task/shared.js +1 -1
- package/dist/commands/task/start-ready.d.ts.map +1 -1
- package/dist/commands/task/start-ready.js +86 -0
- package/dist/commands/task/start.d.ts.map +1 -1
- package/dist/commands/task/start.js +7 -10
- package/dist/commands/task/task.command.d.ts.map +1 -1
- package/dist/commands/task/task.command.js +4 -0
- package/dist/commands/task/verify-command-shared.d.ts +19 -0
- package/dist/commands/task/verify-command-shared.d.ts.map +1 -1
- package/dist/commands/task/verify-command-shared.js +152 -1
- package/dist/commands/task/verify-ok.command.d.ts.map +1 -1
- package/dist/commands/task/verify-ok.command.js +15 -2
- package/dist/commands/task/verify-record.d.ts +36 -0
- package/dist/commands/task/verify-record.d.ts.map +1 -1
- package/dist/commands/task/verify-record.js +166 -11
- package/dist/commands/task/verify-rework.command.d.ts.map +1 -1
- package/dist/commands/task/verify-rework.command.js +15 -2
- package/dist/commands/task/verify-show.command.d.ts +1 -1
- package/dist/commands/task/verify-show.command.d.ts.map +1 -1
- package/dist/commands/task/verify-show.command.js +28 -1
- package/dist/commands/verify.run.d.ts.map +1 -1
- package/dist/commands/verify.run.js +12 -0
- package/dist/commands/verify.spec.d.ts +2 -6
- package/dist/commands/verify.spec.d.ts.map +1 -1
- package/dist/commands/verify.spec.js +30 -3
- package/dist/runtime/incidents/index.d.ts +1 -1
- package/dist/runtime/incidents/index.d.ts.map +1 -1
- package/dist/runtime/incidents/resolve.d.ts.map +1 -1
- package/dist/runtime/incidents/resolve.js +319 -73
- package/dist/runtime/incidents/types.d.ts +14 -2
- package/dist/runtime/incidents/types.d.ts.map +1 -1
- package/dist/shared/env.d.ts +1 -0
- package/dist/shared/env.d.ts.map +1 -1
- package/dist/shared/env.js +22 -1
- package/dist/shared/protected-paths.d.ts +1 -1
- package/dist/shared/protected-paths.d.ts.map +1 -1
- package/dist/shared/protected-paths.js +4 -0
- package/package.json +2 -2
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema_version": 1,
|
|
3
3
|
"package_dir": "/home/runner/work/agentplane/agentplane/packages/agentplane",
|
|
4
|
-
"generated_at": "2026-04-
|
|
5
|
-
"git_head": "
|
|
6
|
-
"src_cli_mtime_ms":
|
|
4
|
+
"generated_at": "2026-04-15T15:43:13.910Z",
|
|
5
|
+
"git_head": "d95b2762f78815b60407a62f2227136c85cae5ee",
|
|
6
|
+
"src_cli_mtime_ms": 1776267734651.4321,
|
|
7
7
|
"src_index_mtime_ms": null,
|
|
8
|
-
"dist_cli_mtime_ms":
|
|
8
|
+
"dist_cli_mtime_ms": 1776267793227.7764,
|
|
9
9
|
"dist_index_mtime_ms": null,
|
|
10
|
-
"tsbuildinfo_mtime_ms":
|
|
10
|
+
"tsbuildinfo_mtime_ms": 1776267793285.7769,
|
|
11
11
|
"watched_runtime_paths": [
|
|
12
12
|
"src",
|
|
13
13
|
"bin/agentplane.js",
|
|
@@ -15,12 +15,12 @@
|
|
|
15
15
|
"bin/runtime-context.js",
|
|
16
16
|
"bin/stale-dist-policy.js"
|
|
17
17
|
],
|
|
18
|
-
"watched_runtime_snapshot_hash": "
|
|
18
|
+
"watched_runtime_snapshot_hash": "aadea11d0cf45f28a8d4912a60cadc259291c4725506cf617df8a1aa313faecb",
|
|
19
19
|
"watched_runtime_files": [
|
|
20
20
|
{
|
|
21
21
|
"path": "bin/agentplane.js",
|
|
22
|
-
"sha256": "
|
|
23
|
-
"size_bytes":
|
|
22
|
+
"sha256": "388474af70f60392a8689eb451a5482bcc8ddff1ee2b6c49cac36454554affe4",
|
|
23
|
+
"size_bytes": 10019
|
|
24
24
|
},
|
|
25
25
|
{
|
|
26
26
|
"path": "bin/dist-guard.js",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
},
|
|
35
35
|
{
|
|
36
36
|
"path": "bin/stale-dist-policy.js",
|
|
37
|
-
"sha256": "
|
|
38
|
-
"size_bytes":
|
|
37
|
+
"sha256": "6506f14e23cf7325ff5de373e9c9a67b345f86546aa083745756d38c2db8414a",
|
|
38
|
+
"size_bytes": 2028
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
41
|
"path": "src/adapters/clock/system-clock-adapter.ts",
|
|
@@ -244,8 +244,8 @@
|
|
|
244
244
|
},
|
|
245
245
|
{
|
|
246
246
|
"path": "src/cli/bootstrap-guide.ts",
|
|
247
|
-
"sha256": "
|
|
248
|
-
"size_bytes":
|
|
247
|
+
"sha256": "3b07c9784c96ded54ec32792b1aab45fc88385b7aac196bf7350608acc4db64d",
|
|
248
|
+
"size_bytes": 6891
|
|
249
249
|
},
|
|
250
250
|
{
|
|
251
251
|
"path": "src/cli/checksum.ts",
|
|
@@ -259,13 +259,13 @@
|
|
|
259
259
|
},
|
|
260
260
|
{
|
|
261
261
|
"path": "src/cli/command-guide.ts",
|
|
262
|
-
"sha256": "
|
|
263
|
-
"size_bytes":
|
|
262
|
+
"sha256": "e255edf911de9114ae8cfdcdae8f667fb69f1116351f8dd2d411c52b295aa9af",
|
|
263
|
+
"size_bytes": 10457
|
|
264
264
|
},
|
|
265
265
|
{
|
|
266
266
|
"path": "src/cli/command-invocations.ts",
|
|
267
|
-
"sha256": "
|
|
268
|
-
"size_bytes":
|
|
267
|
+
"sha256": "51e76a769ffd6dd60441c8f5d532aeff816afc1a664ede43753892c32187027d",
|
|
268
|
+
"size_bytes": 1774
|
|
269
269
|
},
|
|
270
270
|
{
|
|
271
271
|
"path": "src/cli/command-snippets.ts",
|
|
@@ -334,8 +334,8 @@
|
|
|
334
334
|
},
|
|
335
335
|
{
|
|
336
336
|
"path": "src/cli/run-cli.test-helpers.ts",
|
|
337
|
-
"sha256": "
|
|
338
|
-
"size_bytes":
|
|
337
|
+
"sha256": "f68d86f7fb9489d8de70da628f30ad1535b8b9b4fd31eaa1f225423f238dac7b",
|
|
338
|
+
"size_bytes": 29789
|
|
339
339
|
},
|
|
340
340
|
{
|
|
341
341
|
"path": "src/cli/run-cli.ts",
|
|
@@ -359,8 +359,8 @@
|
|
|
359
359
|
},
|
|
360
360
|
{
|
|
361
361
|
"path": "src/cli/run-cli/command-catalog/project.ts",
|
|
362
|
-
"sha256": "
|
|
363
|
-
"size_bytes":
|
|
362
|
+
"sha256": "6b04b61d0b07b76857539e6c04965a559a033de47cb8996c1467b69989b60257",
|
|
363
|
+
"size_bytes": 7578
|
|
364
364
|
},
|
|
365
365
|
{
|
|
366
366
|
"path": "src/cli/run-cli/command-catalog/shared.ts",
|
|
@@ -369,8 +369,8 @@
|
|
|
369
369
|
},
|
|
370
370
|
{
|
|
371
371
|
"path": "src/cli/run-cli/command-catalog/task.ts",
|
|
372
|
-
"sha256": "
|
|
373
|
-
"size_bytes":
|
|
372
|
+
"sha256": "7251cf9ca4f89eb37403068c6e639ef33fde7db91db486b5c7131bfce987fa90",
|
|
373
|
+
"size_bytes": 12667
|
|
374
374
|
},
|
|
375
375
|
{
|
|
376
376
|
"path": "src/cli/run-cli/commands/config.ts",
|
|
@@ -394,8 +394,8 @@
|
|
|
394
394
|
},
|
|
395
395
|
{
|
|
396
396
|
"path": "src/cli/run-cli/commands/core/preflight.ts",
|
|
397
|
-
"sha256": "
|
|
398
|
-
"size_bytes":
|
|
397
|
+
"sha256": "d01086b9b63322d79e7821532ceba6e84a8eefdf224b1aabdcd9e6b1bb774ded",
|
|
398
|
+
"size_bytes": 13380
|
|
399
399
|
},
|
|
400
400
|
{
|
|
401
401
|
"path": "src/cli/run-cli/commands/core/quickstart.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": "08f7e0ff96ffbeb90c41c0b0a7b1da8caeea602afc3ad97a5d4d3b8faf088205",
|
|
588
|
+
"size_bytes": 9888
|
|
589
589
|
},
|
|
590
590
|
{
|
|
591
591
|
"path": "src/commands/branch/index.ts",
|
|
@@ -629,13 +629,13 @@
|
|
|
629
629
|
},
|
|
630
630
|
{
|
|
631
631
|
"path": "src/commands/branch/work-start.ts",
|
|
632
|
-
"sha256": "
|
|
633
|
-
"size_bytes":
|
|
632
|
+
"sha256": "c07b2b3d944bb35d756a6ea564b27e1b95a4034e58d5d3986360ab42625b6756",
|
|
633
|
+
"size_bytes": 12825
|
|
634
634
|
},
|
|
635
635
|
{
|
|
636
636
|
"path": "src/commands/cleanup/merged.command.ts",
|
|
637
|
-
"sha256": "
|
|
638
|
-
"size_bytes":
|
|
637
|
+
"sha256": "a669d7a96dbe8e05ef832945f40fdcba844d7b97bd4e6781a10174b089e48e63",
|
|
638
|
+
"size_bytes": 3898
|
|
639
639
|
},
|
|
640
640
|
{
|
|
641
641
|
"path": "src/commands/commit.command.ts",
|
|
@@ -654,8 +654,8 @@
|
|
|
654
654
|
},
|
|
655
655
|
{
|
|
656
656
|
"path": "src/commands/doctor.run.ts",
|
|
657
|
-
"sha256": "
|
|
658
|
-
"size_bytes":
|
|
657
|
+
"sha256": "0adb43e04b3b07a52ea370ce55527f5c35680a2d2e9b078a74b00f272486a817",
|
|
658
|
+
"size_bytes": 3548
|
|
659
659
|
},
|
|
660
660
|
{
|
|
661
661
|
"path": "src/commands/doctor.spec.ts",
|
|
@@ -667,10 +667,15 @@
|
|
|
667
667
|
"sha256": "c62fe8347b08a68597835531353ec04192fd9041192240977f68730679f6df2a",
|
|
668
668
|
"size_bytes": 9110
|
|
669
669
|
},
|
|
670
|
+
{
|
|
671
|
+
"path": "src/commands/doctor/branch-pr.ts",
|
|
672
|
+
"sha256": "4cbad1d0e9d93262b54134d802b5913d4ce85229284f40d367e7f8b7fbf120f0",
|
|
673
|
+
"size_bytes": 4014
|
|
674
|
+
},
|
|
670
675
|
{
|
|
671
676
|
"path": "src/commands/doctor/fixes.ts",
|
|
672
|
-
"sha256": "
|
|
673
|
-
"size_bytes":
|
|
677
|
+
"sha256": "ea721dffebd85b396d55162ffc2618ec676f647a7a3f639d42b97ae1eb88fde7",
|
|
678
|
+
"size_bytes": 4209
|
|
674
679
|
},
|
|
675
680
|
{
|
|
676
681
|
"path": "src/commands/doctor/layering.ts",
|
|
@@ -694,13 +699,13 @@
|
|
|
694
699
|
},
|
|
695
700
|
{
|
|
696
701
|
"path": "src/commands/finish.run.ts",
|
|
697
|
-
"sha256": "
|
|
698
|
-
"size_bytes":
|
|
702
|
+
"sha256": "471f908a445f97dad7ec94cfce518c3072f909c38267010e4846287444469bda",
|
|
703
|
+
"size_bytes": 2044
|
|
699
704
|
},
|
|
700
705
|
{
|
|
701
706
|
"path": "src/commands/finish.spec.ts",
|
|
702
|
-
"sha256": "
|
|
703
|
-
"size_bytes":
|
|
707
|
+
"sha256": "02f502b6da131d8def6ce65ab45a342aa006667b0b253889a655ce804c70a98a",
|
|
708
|
+
"size_bytes": 15406
|
|
704
709
|
},
|
|
705
710
|
{
|
|
706
711
|
"path": "src/commands/guard/clean.command.ts",
|
|
@@ -724,13 +729,13 @@
|
|
|
724
729
|
},
|
|
725
730
|
{
|
|
726
731
|
"path": "src/commands/guard/impl/close-message.ts",
|
|
727
|
-
"sha256": "
|
|
728
|
-
"size_bytes":
|
|
732
|
+
"sha256": "326c5c647fb9ba77258bd0e48658c160bbbd0818fb3a7e94480859a1efd0b9ea",
|
|
733
|
+
"size_bytes": 7387
|
|
729
734
|
},
|
|
730
735
|
{
|
|
731
736
|
"path": "src/commands/guard/impl/commands.ts",
|
|
732
|
-
"sha256": "
|
|
733
|
-
"size_bytes":
|
|
737
|
+
"sha256": "f49ab03e2c230c749a87e37ca7af8bfe68b43996d9f8fe75425ca40e15a969ab",
|
|
738
|
+
"size_bytes": 19856
|
|
734
739
|
},
|
|
735
740
|
{
|
|
736
741
|
"path": "src/commands/guard/impl/comment-commit.ts",
|
|
@@ -739,8 +744,8 @@
|
|
|
739
744
|
},
|
|
740
745
|
{
|
|
741
746
|
"path": "src/commands/guard/impl/env.ts",
|
|
742
|
-
"sha256": "
|
|
743
|
-
"size_bytes":
|
|
747
|
+
"sha256": "b0a63872dcc25cb5c422f0a748fec8e3486debefd9995e1b37c3380d5cfea66d",
|
|
748
|
+
"size_bytes": 925
|
|
744
749
|
},
|
|
745
750
|
{
|
|
746
751
|
"path": "src/commands/guard/impl/policy.ts",
|
|
@@ -764,8 +769,8 @@
|
|
|
764
769
|
},
|
|
765
770
|
{
|
|
766
771
|
"path": "src/commands/hooks/index.ts",
|
|
767
|
-
"sha256": "
|
|
768
|
-
"size_bytes":
|
|
772
|
+
"sha256": "4b711c85d07964b80eccf2256a12a15c266c788dc15e7e8619b6c4965338e2e5",
|
|
773
|
+
"size_bytes": 13958
|
|
769
774
|
},
|
|
770
775
|
{
|
|
771
776
|
"path": "src/commands/hooks/install.command.ts",
|
|
@@ -789,18 +794,18 @@
|
|
|
789
794
|
},
|
|
790
795
|
{
|
|
791
796
|
"path": "src/commands/incidents/collect.command.ts",
|
|
792
|
-
"sha256": "
|
|
793
|
-
"size_bytes":
|
|
797
|
+
"sha256": "99dd1e076bc795beb252c5f6ce0e4709641d65cdba89f6eaeb9b29743d6f851b",
|
|
798
|
+
"size_bytes": 3107
|
|
794
799
|
},
|
|
795
800
|
{
|
|
796
801
|
"path": "src/commands/incidents/incidents.command.ts",
|
|
797
|
-
"sha256": "
|
|
798
|
-
"size_bytes":
|
|
802
|
+
"sha256": "1d4c7f45c126ab9757889f743d88cb7092ab23d3057770475b8a80308fb7817a",
|
|
803
|
+
"size_bytes": 1106
|
|
799
804
|
},
|
|
800
805
|
{
|
|
801
806
|
"path": "src/commands/incidents/shared.ts",
|
|
802
|
-
"sha256": "
|
|
803
|
-
"size_bytes":
|
|
807
|
+
"sha256": "d2c0294b034913e00af28db6fcf236544b8b600f08e77b79b91e823b649855e0",
|
|
808
|
+
"size_bytes": 14683
|
|
804
809
|
},
|
|
805
810
|
{
|
|
806
811
|
"path": "src/commands/integrate.command.ts",
|
|
@@ -809,13 +814,23 @@
|
|
|
809
814
|
},
|
|
810
815
|
{
|
|
811
816
|
"path": "src/commands/pr/check.ts",
|
|
812
|
-
"sha256": "
|
|
813
|
-
"size_bytes":
|
|
817
|
+
"sha256": "5a50dd472e37b7d36b28303ebbb50901cecba49ce2a74fd568c416c251c5dbe2",
|
|
818
|
+
"size_bytes": 13722
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
"path": "src/commands/pr/close-superseded.ts",
|
|
822
|
+
"sha256": "7ae97b6bae0a29244269983861de314726bdc053f960b46d10443666a5e5907d",
|
|
823
|
+
"size_bytes": 5339
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
"path": "src/commands/pr/close.ts",
|
|
827
|
+
"sha256": "6d5fc636cd0a8c93f942a96689c1b9b3e41f56e689ec86c4d7ccefe20060802d",
|
|
828
|
+
"size_bytes": 4727
|
|
814
829
|
},
|
|
815
830
|
{
|
|
816
831
|
"path": "src/commands/pr/index.ts",
|
|
817
|
-
"sha256": "
|
|
818
|
-
"size_bytes":
|
|
832
|
+
"sha256": "3e0dcc4f76eb632ac55c07d67c8610cbc8afdd1b997d190341415d5e8c09c1cd",
|
|
833
|
+
"size_bytes": 312
|
|
819
834
|
},
|
|
820
835
|
{
|
|
821
836
|
"path": "src/commands/pr/integrate.ts",
|
|
@@ -824,13 +839,18 @@
|
|
|
824
839
|
},
|
|
825
840
|
{
|
|
826
841
|
"path": "src/commands/pr/integrate/artifacts.ts",
|
|
827
|
-
"sha256": "
|
|
828
|
-
"size_bytes":
|
|
842
|
+
"sha256": "080dbd4030d40c1c43805cbbe5c0314633d65725cb5c18662547eb31c5f78ead",
|
|
843
|
+
"size_bytes": 4830
|
|
829
844
|
},
|
|
830
845
|
{
|
|
831
846
|
"path": "src/commands/pr/integrate/cmd.ts",
|
|
832
|
-
"sha256": "
|
|
833
|
-
"size_bytes":
|
|
847
|
+
"sha256": "4683f17982e020a625859c1b02ad68cdae48cbf37e77bfea592426c95b47184f",
|
|
848
|
+
"size_bytes": 7199
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
"path": "src/commands/pr/integrate/internal/bootstrap-guidance.ts",
|
|
852
|
+
"sha256": "0af6e7f5293f41d45593fd1c3fa3fa63072f5578206431f0702ec64ad087260a",
|
|
853
|
+
"size_bytes": 2451
|
|
834
854
|
},
|
|
835
855
|
{
|
|
836
856
|
"path": "src/commands/pr/integrate/internal/cleanup.ts",
|
|
@@ -839,18 +859,23 @@
|
|
|
839
859
|
},
|
|
840
860
|
{
|
|
841
861
|
"path": "src/commands/pr/integrate/internal/finalize.ts",
|
|
842
|
-
"sha256": "
|
|
843
|
-
"size_bytes":
|
|
862
|
+
"sha256": "36220cf2a5ce2f97241c91082e5534197ac2c6ac16d11de8977a9b892d60b288",
|
|
863
|
+
"size_bytes": 4916
|
|
844
864
|
},
|
|
845
865
|
{
|
|
846
866
|
"path": "src/commands/pr/integrate/internal/merge.ts",
|
|
847
|
-
"sha256": "
|
|
848
|
-
"size_bytes":
|
|
867
|
+
"sha256": "3e72d725e7fc05ae96bf4db23fc2caafee14429dbeabaa0add46e7539ffc4e1c",
|
|
868
|
+
"size_bytes": 11736
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
"path": "src/commands/pr/integrate/internal/post-integrate-bootstrap.ts",
|
|
872
|
+
"sha256": "e403c173338975c20d2aba962a1c1ad3626ce127a028d238d8a712f948f2b837",
|
|
873
|
+
"size_bytes": 983
|
|
849
874
|
},
|
|
850
875
|
{
|
|
851
876
|
"path": "src/commands/pr/integrate/internal/prepare.ts",
|
|
852
|
-
"sha256": "
|
|
853
|
-
"size_bytes":
|
|
877
|
+
"sha256": "7840dd0b6c74c418bb9b6d16d85116020eebd47463e5d8e1bd02b25569f2371c",
|
|
878
|
+
"size_bytes": 9279
|
|
854
879
|
},
|
|
855
880
|
{
|
|
856
881
|
"path": "src/commands/pr/integrate/internal/worktree.ts",
|
|
@@ -862,6 +887,16 @@
|
|
|
862
887
|
"sha256": "c5bb38b7a2e06e50dc75c0ed79f3f2e9c4c0acccffb23768ac4b59c92a742e7c",
|
|
863
888
|
"size_bytes": 2799
|
|
864
889
|
},
|
|
890
|
+
{
|
|
891
|
+
"path": "src/commands/pr/internal/freshness.ts",
|
|
892
|
+
"sha256": "4093c59f8d9d4064d55f82c8a92bece944a38d4da18ec437f477d4e8448a7064",
|
|
893
|
+
"size_bytes": 2377
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"path": "src/commands/pr/internal/gh-api.ts",
|
|
897
|
+
"sha256": "160327edae0d0d9186e1fa43fbad483321f3eebe412043be1ae08af92fbfde6e",
|
|
898
|
+
"size_bytes": 3142
|
|
899
|
+
},
|
|
865
900
|
{
|
|
866
901
|
"path": "src/commands/pr/internal/note-store.ts",
|
|
867
902
|
"sha256": "47768440643824fdaac4452af5e4c69703c8f8088670a69e7dc2f276a8f3b8c8",
|
|
@@ -869,18 +904,18 @@
|
|
|
869
904
|
},
|
|
870
905
|
{
|
|
871
906
|
"path": "src/commands/pr/internal/pr-paths.ts",
|
|
872
|
-
"sha256": "
|
|
873
|
-
"size_bytes":
|
|
907
|
+
"sha256": "93c111c3026ce464746f8e88c8e94be1e8ba9891f4c92a6b62cf6757f4e4dc18",
|
|
908
|
+
"size_bytes": 2741
|
|
874
909
|
},
|
|
875
910
|
{
|
|
876
911
|
"path": "src/commands/pr/internal/review-template.ts",
|
|
877
|
-
"sha256": "
|
|
878
|
-
"size_bytes":
|
|
912
|
+
"sha256": "93a98a192f280dba109f85c4b17ed7efd67d03c40896738102729bff16902af2",
|
|
913
|
+
"size_bytes": 9018
|
|
879
914
|
},
|
|
880
915
|
{
|
|
881
916
|
"path": "src/commands/pr/internal/sync.ts",
|
|
882
|
-
"sha256": "
|
|
883
|
-
"size_bytes":
|
|
917
|
+
"sha256": "cd34b2f8ddea3acb5b6fe0265a7d3af6900f2696c3dd314c601ec4f6045943c8",
|
|
918
|
+
"size_bytes": 23319
|
|
884
919
|
},
|
|
885
920
|
{
|
|
886
921
|
"path": "src/commands/pr/note.ts",
|
|
@@ -889,18 +924,18 @@
|
|
|
889
924
|
},
|
|
890
925
|
{
|
|
891
926
|
"path": "src/commands/pr/open.ts",
|
|
892
|
-
"sha256": "
|
|
893
|
-
"size_bytes":
|
|
927
|
+
"sha256": "15bf5fe8fb3f80e8e73f7690b50848942b00880a9a8b4f14abc2650fe51d2f8a",
|
|
928
|
+
"size_bytes": 1961
|
|
894
929
|
},
|
|
895
930
|
{
|
|
896
931
|
"path": "src/commands/pr/pr.command.ts",
|
|
897
|
-
"sha256": "
|
|
898
|
-
"size_bytes":
|
|
932
|
+
"sha256": "fa4000a2214c5daa65c5b54c3dace2e7e70429715ff1911e277f004242592d60",
|
|
933
|
+
"size_bytes": 11123
|
|
899
934
|
},
|
|
900
935
|
{
|
|
901
936
|
"path": "src/commands/pr/update.ts",
|
|
902
|
-
"sha256": "
|
|
903
|
-
"size_bytes":
|
|
937
|
+
"sha256": "bc675c236a5a000bac3ab12c32ec9935a7157c056e848468ed8181777d2434be",
|
|
938
|
+
"size_bytes": 3470
|
|
904
939
|
},
|
|
905
940
|
{
|
|
906
941
|
"path": "src/commands/ready.command.ts",
|
|
@@ -1084,8 +1119,8 @@
|
|
|
1084
1119
|
},
|
|
1085
1120
|
{
|
|
1086
1121
|
"path": "src/commands/release/apply.command.ts",
|
|
1087
|
-
"sha256": "
|
|
1088
|
-
"size_bytes":
|
|
1122
|
+
"sha256": "02a7f022ce64366a8d69ab63a619a01555bc0da8877554d71d346172910abe78",
|
|
1123
|
+
"size_bytes": 14301
|
|
1089
1124
|
},
|
|
1090
1125
|
{
|
|
1091
1126
|
"path": "src/commands/release/apply.mutation.ts",
|
|
@@ -1094,8 +1129,8 @@
|
|
|
1094
1129
|
},
|
|
1095
1130
|
{
|
|
1096
1131
|
"path": "src/commands/release/apply.preflight.ts",
|
|
1097
|
-
"sha256": "
|
|
1098
|
-
"size_bytes":
|
|
1132
|
+
"sha256": "4e3fe84b9b5a202031372e84a3ef78636de4149318eede91b35280f83f628616",
|
|
1133
|
+
"size_bytes": 14833
|
|
1099
1134
|
},
|
|
1100
1135
|
{
|
|
1101
1136
|
"path": "src/commands/release/apply.reporting.ts",
|
|
@@ -1167,6 +1202,11 @@
|
|
|
1167
1202
|
"sha256": "bf2c8512a154075556a021a397cb3b177e7430de6569a7ee778af87b4abf62b0",
|
|
1168
1203
|
"size_bytes": 773
|
|
1169
1204
|
},
|
|
1205
|
+
{
|
|
1206
|
+
"path": "src/commands/shared/gh-transport.ts",
|
|
1207
|
+
"sha256": "9b93dcfae995bd3787c160ebddeb25cb3b6baeb8949f4b2df6bbeb4ab06fecdc",
|
|
1208
|
+
"size_bytes": 2550
|
|
1209
|
+
},
|
|
1170
1210
|
{
|
|
1171
1211
|
"path": "src/commands/shared/git-context.ts",
|
|
1172
1212
|
"sha256": "e149858683fe09ecbcc95279ad5533efe279c651a303ae0585c4bfeb9fe83e77",
|
|
@@ -1174,18 +1214,18 @@
|
|
|
1174
1214
|
},
|
|
1175
1215
|
{
|
|
1176
1216
|
"path": "src/commands/shared/git-diff.ts",
|
|
1177
|
-
"sha256": "
|
|
1178
|
-
"size_bytes":
|
|
1217
|
+
"sha256": "65b55b55c45f431c5737e57a11ac12a9ae164c4b867c4757552c11cba6a5a166",
|
|
1218
|
+
"size_bytes": 1961
|
|
1179
1219
|
},
|
|
1180
1220
|
{
|
|
1181
1221
|
"path": "src/commands/shared/git-ops.ts",
|
|
1182
|
-
"sha256": "
|
|
1183
|
-
"size_bytes":
|
|
1222
|
+
"sha256": "c5b2dc775811fa770e859619dab26eb7d91007cb6c9f19c9fd922fbe2e263fe6",
|
|
1223
|
+
"size_bytes": 7340
|
|
1184
1224
|
},
|
|
1185
1225
|
{
|
|
1186
1226
|
"path": "src/commands/shared/git-worktree.ts",
|
|
1187
|
-
"sha256": "
|
|
1188
|
-
"size_bytes":
|
|
1227
|
+
"sha256": "80b69c8e562da12bf305e3a83c50cda8ae0f00154598ed1be2aab1cf0ed0e8c9",
|
|
1228
|
+
"size_bytes": 2783
|
|
1189
1229
|
},
|
|
1190
1230
|
{
|
|
1191
1231
|
"path": "src/commands/shared/git.ts",
|
|
@@ -1212,10 +1252,15 @@
|
|
|
1212
1252
|
"sha256": "e28583db7819c49280e0a4abd5fd7c650e093557a895dfc160b9037871196581",
|
|
1213
1253
|
"size_bytes": 519
|
|
1214
1254
|
},
|
|
1255
|
+
{
|
|
1256
|
+
"path": "src/commands/shared/post-commit-pr-artifacts.ts",
|
|
1257
|
+
"sha256": "2447e52f0482bb1d3621334105ffa3305a9e6bd73c067582012471070732d736",
|
|
1258
|
+
"size_bytes": 1030
|
|
1259
|
+
},
|
|
1215
1260
|
{
|
|
1216
1261
|
"path": "src/commands/shared/pr-meta.ts",
|
|
1217
|
-
"sha256": "
|
|
1218
|
-
"size_bytes":
|
|
1262
|
+
"sha256": "828357424af5f66cedb6a6152fcf66cf334d4707a818371f9b933a902eec38b7",
|
|
1263
|
+
"size_bytes": 12036
|
|
1219
1264
|
},
|
|
1220
1265
|
{
|
|
1221
1266
|
"path": "src/commands/shared/reconcile-check.ts",
|
|
@@ -1224,8 +1269,8 @@
|
|
|
1224
1269
|
},
|
|
1225
1270
|
{
|
|
1226
1271
|
"path": "src/commands/shared/task-backend.ts",
|
|
1227
|
-
"sha256": "
|
|
1228
|
-
"size_bytes":
|
|
1272
|
+
"sha256": "67b99d9510b8e681c26e288132f4e421896dd550a994204238f4ab7af23c9086",
|
|
1273
|
+
"size_bytes": 9588
|
|
1229
1274
|
},
|
|
1230
1275
|
{
|
|
1231
1276
|
"path": "src/commands/shared/task-handoff.ts",
|
|
@@ -1289,8 +1334,8 @@
|
|
|
1289
1334
|
},
|
|
1290
1335
|
{
|
|
1291
1336
|
"path": "src/commands/task/close-duplicate.ts",
|
|
1292
|
-
"sha256": "
|
|
1293
|
-
"size_bytes":
|
|
1337
|
+
"sha256": "4c6a9fead2c075e0be9298eb1a8e15d15b6df0ee5a201488c66730058c4d1c2b",
|
|
1338
|
+
"size_bytes": 4202
|
|
1294
1339
|
},
|
|
1295
1340
|
{
|
|
1296
1341
|
"path": "src/commands/task/close-noop.command.ts",
|
|
@@ -1324,8 +1369,8 @@
|
|
|
1324
1369
|
},
|
|
1325
1370
|
{
|
|
1326
1371
|
"path": "src/commands/task/derive.ts",
|
|
1327
|
-
"sha256": "
|
|
1328
|
-
"size_bytes":
|
|
1372
|
+
"sha256": "e3e51751d428ce1c44a833cc9bcef4a8341d3b7bd5a29e5a84724d3913f3cb75",
|
|
1373
|
+
"size_bytes": 5021
|
|
1329
1374
|
},
|
|
1330
1375
|
{
|
|
1331
1376
|
"path": "src/commands/task/doc-set.command.ts",
|
|
@@ -1339,8 +1384,8 @@
|
|
|
1339
1384
|
},
|
|
1340
1385
|
{
|
|
1341
1386
|
"path": "src/commands/task/doc-template.ts",
|
|
1342
|
-
"sha256": "
|
|
1343
|
-
"size_bytes":
|
|
1387
|
+
"sha256": "c7468ec10c43192832bc79f30cd3a6ed7c627d5463c2c2c196d0421b9eedabc5",
|
|
1388
|
+
"size_bytes": 4614
|
|
1344
1389
|
},
|
|
1345
1390
|
{
|
|
1346
1391
|
"path": "src/commands/task/doc.command.ts",
|
|
@@ -1362,15 +1407,30 @@
|
|
|
1362
1407
|
"sha256": "1083c3a4b33b5b20a4e3cb3659fb036e5875f8cd0778cf1ef841e7efa79c7c3e",
|
|
1363
1408
|
"size_bytes": 1229
|
|
1364
1409
|
},
|
|
1410
|
+
{
|
|
1411
|
+
"path": "src/commands/task/findings-add.command.ts",
|
|
1412
|
+
"sha256": "645399a064ffe405e50219d10cb752988e56c401ab1f8f8b3b9206d23b91a6ec",
|
|
1413
|
+
"size_bytes": 7104
|
|
1414
|
+
},
|
|
1415
|
+
{
|
|
1416
|
+
"path": "src/commands/task/findings.command.ts",
|
|
1417
|
+
"sha256": "7c44ed624cd77685a9ff4c3ae5c801f16c77315c6aa1530fc85d86bb0508545a",
|
|
1418
|
+
"size_bytes": 1203
|
|
1419
|
+
},
|
|
1420
|
+
{
|
|
1421
|
+
"path": "src/commands/task/findings.ts",
|
|
1422
|
+
"sha256": "e922215e1d750a0bea7402185f2be4b2d4fe04c157d18e893bd2aa0b91082a27",
|
|
1423
|
+
"size_bytes": 9070
|
|
1424
|
+
},
|
|
1365
1425
|
{
|
|
1366
1426
|
"path": "src/commands/task/finish-shared.ts",
|
|
1367
|
-
"sha256": "
|
|
1368
|
-
"size_bytes":
|
|
1427
|
+
"sha256": "6bfea7806ec0156aa75693cb3acba5d1caa79b0b6a6875d2139781dd0de84392",
|
|
1428
|
+
"size_bytes": 10088
|
|
1369
1429
|
},
|
|
1370
1430
|
{
|
|
1371
1431
|
"path": "src/commands/task/finish.ts",
|
|
1372
|
-
"sha256": "
|
|
1373
|
-
"size_bytes":
|
|
1432
|
+
"sha256": "e982ffefa92fd5c761a73f398f9e7ee8f965e1ff027dc10fb50f4c4d9b7f173f",
|
|
1433
|
+
"size_bytes": 18603
|
|
1374
1434
|
},
|
|
1375
1435
|
{
|
|
1376
1436
|
"path": "src/commands/task/handoff-record.command.ts",
|
|
@@ -1392,20 +1452,25 @@
|
|
|
1392
1452
|
"sha256": "0d480232ae093b511577207ace4c83c692f28c8f40b65efb7b9a68b5c30e2891",
|
|
1393
1453
|
"size_bytes": 5640
|
|
1394
1454
|
},
|
|
1455
|
+
{
|
|
1456
|
+
"path": "src/commands/task/hosted-close-pr.command.ts",
|
|
1457
|
+
"sha256": "1e945dedfd6ae84817dbe73ea0bf7adbc29a99e04ec8c85bae94a30a3488dd21",
|
|
1458
|
+
"size_bytes": 16981
|
|
1459
|
+
},
|
|
1395
1460
|
{
|
|
1396
1461
|
"path": "src/commands/task/hosted-close.command.ts",
|
|
1397
|
-
"sha256": "
|
|
1398
|
-
"size_bytes":
|
|
1462
|
+
"sha256": "f07e95d157c19ff1ae0162964658ecb4259aba620e72e3ab6c42690f29511b45",
|
|
1463
|
+
"size_bytes": 9788
|
|
1399
1464
|
},
|
|
1400
1465
|
{
|
|
1401
1466
|
"path": "src/commands/task/hosted-merge-sync.ts",
|
|
1402
|
-
"sha256": "
|
|
1403
|
-
"size_bytes":
|
|
1467
|
+
"sha256": "93424fe294fe5bb07fa2b2bb7177915326b7bb097f84a1ff892ff0ada8b7d36a",
|
|
1468
|
+
"size_bytes": 20175
|
|
1404
1469
|
},
|
|
1405
1470
|
{
|
|
1406
1471
|
"path": "src/commands/task/index.ts",
|
|
1407
|
-
"sha256": "
|
|
1408
|
-
"size_bytes":
|
|
1472
|
+
"sha256": "5c8729c403caafbad9183a0ed3b789349a2e24b3d3425db9597ac450b6b35e60",
|
|
1473
|
+
"size_bytes": 1545
|
|
1409
1474
|
},
|
|
1410
1475
|
{
|
|
1411
1476
|
"path": "src/commands/task/lint.command.ts",
|
|
@@ -1459,13 +1524,13 @@
|
|
|
1459
1524
|
},
|
|
1460
1525
|
{
|
|
1461
1526
|
"path": "src/commands/task/new.spec.ts",
|
|
1462
|
-
"sha256": "
|
|
1463
|
-
"size_bytes":
|
|
1527
|
+
"sha256": "d2cd0c147dbc61bc7fb12225ce856803065b795a1099a12877eb1236b5e8f1ef",
|
|
1528
|
+
"size_bytes": 2877
|
|
1464
1529
|
},
|
|
1465
1530
|
{
|
|
1466
1531
|
"path": "src/commands/task/new.ts",
|
|
1467
|
-
"sha256": "
|
|
1468
|
-
"size_bytes":
|
|
1532
|
+
"sha256": "a4ab1d70b532b26a8e9fee54d9e25204c3a8681a48636325312214078d8811de",
|
|
1533
|
+
"size_bytes": 9904
|
|
1469
1534
|
},
|
|
1470
1535
|
{
|
|
1471
1536
|
"path": "src/commands/task/next.run.ts",
|
|
@@ -1484,13 +1549,13 @@
|
|
|
1484
1549
|
},
|
|
1485
1550
|
{
|
|
1486
1551
|
"path": "src/commands/task/normalize.command.ts",
|
|
1487
|
-
"sha256": "
|
|
1488
|
-
"size_bytes":
|
|
1552
|
+
"sha256": "fc826e525d854a51a093c4e9c852e8d7555e0ddd3ccb9b2f42b00c0033dfa1f0",
|
|
1553
|
+
"size_bytes": 4147
|
|
1489
1554
|
},
|
|
1490
1555
|
{
|
|
1491
1556
|
"path": "src/commands/task/normalize.ts",
|
|
1492
|
-
"sha256": "
|
|
1493
|
-
"size_bytes":
|
|
1557
|
+
"sha256": "9b8eb46d4da4960adf3716c1ce5472d9fb5975882ccb44fdef2f541bd352f93c",
|
|
1558
|
+
"size_bytes": 5627
|
|
1494
1559
|
},
|
|
1495
1560
|
{
|
|
1496
1561
|
"path": "src/commands/task/plan-approve.command.ts",
|
|
@@ -1514,8 +1579,8 @@
|
|
|
1514
1579
|
},
|
|
1515
1580
|
{
|
|
1516
1581
|
"path": "src/commands/task/plan.ts",
|
|
1517
|
-
"sha256": "
|
|
1518
|
-
"size_bytes":
|
|
1582
|
+
"sha256": "4231fa891281bed100edc9094f82e1c98b88a5512ba56cbdb4728633a8fe9d4b",
|
|
1583
|
+
"size_bytes": 12878
|
|
1519
1584
|
},
|
|
1520
1585
|
{
|
|
1521
1586
|
"path": "src/commands/task/ready.ts",
|
|
@@ -1654,8 +1719,8 @@
|
|
|
1654
1719
|
},
|
|
1655
1720
|
{
|
|
1656
1721
|
"path": "src/commands/task/shared.ts",
|
|
1657
|
-
"sha256": "
|
|
1658
|
-
"size_bytes":
|
|
1722
|
+
"sha256": "6e3bd6289ff16ead97441db5b67064504b5e7fc9ffa111a43af980de39aea1f2",
|
|
1723
|
+
"size_bytes": 2434
|
|
1659
1724
|
},
|
|
1660
1725
|
{
|
|
1661
1726
|
"path": "src/commands/task/shared/dependencies.ts",
|
|
@@ -1664,8 +1729,8 @@
|
|
|
1664
1729
|
},
|
|
1665
1730
|
{
|
|
1666
1731
|
"path": "src/commands/task/shared/docs.ts",
|
|
1667
|
-
"sha256": "
|
|
1668
|
-
"size_bytes":
|
|
1732
|
+
"sha256": "867caac5b8cb21422a56f73834ec40dbf378e0e1eb5fc8c7cc6fdcfaa297a7bc",
|
|
1733
|
+
"size_bytes": 6507
|
|
1669
1734
|
},
|
|
1670
1735
|
{
|
|
1671
1736
|
"path": "src/commands/task/shared/listing.ts",
|
|
@@ -1684,8 +1749,8 @@
|
|
|
1684
1749
|
},
|
|
1685
1750
|
{
|
|
1686
1751
|
"path": "src/commands/task/shared/transitions.ts",
|
|
1687
|
-
"sha256": "
|
|
1688
|
-
"size_bytes":
|
|
1752
|
+
"sha256": "7047fb270329b8d03566a05a9010d0f668fca6019b35c42193f8fc9952de4629",
|
|
1753
|
+
"size_bytes": 11044
|
|
1689
1754
|
},
|
|
1690
1755
|
{
|
|
1691
1756
|
"path": "src/commands/task/shared/workflow-transition-service.ts",
|
|
@@ -1714,18 +1779,18 @@
|
|
|
1714
1779
|
},
|
|
1715
1780
|
{
|
|
1716
1781
|
"path": "src/commands/task/start-ready.ts",
|
|
1717
|
-
"sha256": "
|
|
1718
|
-
"size_bytes":
|
|
1782
|
+
"sha256": "2c2e171f483dd593c874249d2ed8fa1c35401cdfb2d8a3fce2008e964a1ffab8",
|
|
1783
|
+
"size_bytes": 5444
|
|
1719
1784
|
},
|
|
1720
1785
|
{
|
|
1721
1786
|
"path": "src/commands/task/start.ts",
|
|
1722
|
-
"sha256": "
|
|
1723
|
-
"size_bytes":
|
|
1787
|
+
"sha256": "d53ad56925f6919f9dd0515f4d005344b52335173d7672521016c43d891a9bdd",
|
|
1788
|
+
"size_bytes": 5820
|
|
1724
1789
|
},
|
|
1725
1790
|
{
|
|
1726
1791
|
"path": "src/commands/task/task.command.ts",
|
|
1727
|
-
"sha256": "
|
|
1728
|
-
"size_bytes":
|
|
1792
|
+
"sha256": "0e3966f7ae0a65482153ffef99a304fd2cd8499d35b3213cee1640464fccd6fd",
|
|
1793
|
+
"size_bytes": 2663
|
|
1729
1794
|
},
|
|
1730
1795
|
{
|
|
1731
1796
|
"path": "src/commands/task/update.command.ts",
|
|
@@ -1739,28 +1804,28 @@
|
|
|
1739
1804
|
},
|
|
1740
1805
|
{
|
|
1741
1806
|
"path": "src/commands/task/verify-command-shared.ts",
|
|
1742
|
-
"sha256": "
|
|
1743
|
-
"size_bytes":
|
|
1807
|
+
"sha256": "536bb3a2a9ebf56eb843494fe855dc95a53bbab6cb145504e5017e1b80161dd7",
|
|
1808
|
+
"size_bytes": 7970
|
|
1744
1809
|
},
|
|
1745
1810
|
{
|
|
1746
1811
|
"path": "src/commands/task/verify-ok.command.ts",
|
|
1747
|
-
"sha256": "
|
|
1748
|
-
"size_bytes":
|
|
1812
|
+
"sha256": "bc3ed38405ca8b34e63a434290f490c0e610253f57dae5e9dde83b63b532cf06",
|
|
1813
|
+
"size_bytes": 2321
|
|
1749
1814
|
},
|
|
1750
1815
|
{
|
|
1751
1816
|
"path": "src/commands/task/verify-record.ts",
|
|
1752
|
-
"sha256": "
|
|
1753
|
-
"size_bytes":
|
|
1817
|
+
"sha256": "4a4d6e97cf5e1d7d551a2b683dcadb238d4d25f79cffd411c7c5e5f5a44e8978",
|
|
1818
|
+
"size_bytes": 13408
|
|
1754
1819
|
},
|
|
1755
1820
|
{
|
|
1756
1821
|
"path": "src/commands/task/verify-rework.command.ts",
|
|
1757
|
-
"sha256": "
|
|
1758
|
-
"size_bytes":
|
|
1822
|
+
"sha256": "f082796e0e54ecb5cbe1fac355ed35fc0b86cfb26a01eef2b3e56139e30bd018",
|
|
1823
|
+
"size_bytes": 2403
|
|
1759
1824
|
},
|
|
1760
1825
|
{
|
|
1761
1826
|
"path": "src/commands/task/verify-show.command.ts",
|
|
1762
|
-
"sha256": "
|
|
1763
|
-
"size_bytes":
|
|
1827
|
+
"sha256": "c45a5bf7572bceb9cb730e3f40705f892fe69a6f383b06db73f217c50ef64ae7",
|
|
1828
|
+
"size_bytes": 2723
|
|
1764
1829
|
},
|
|
1765
1830
|
{
|
|
1766
1831
|
"path": "src/commands/task/verify.command.ts",
|
|
@@ -1814,13 +1879,13 @@
|
|
|
1814
1879
|
},
|
|
1815
1880
|
{
|
|
1816
1881
|
"path": "src/commands/verify.run.ts",
|
|
1817
|
-
"sha256": "
|
|
1818
|
-
"size_bytes":
|
|
1882
|
+
"sha256": "631cd31670d0857b7c1a1ef9b2c05d3b426f0da9b8de9be42d492c94b90c53f5",
|
|
1883
|
+
"size_bytes": 1102
|
|
1819
1884
|
},
|
|
1820
1885
|
{
|
|
1821
1886
|
"path": "src/commands/verify.spec.ts",
|
|
1822
|
-
"sha256": "
|
|
1823
|
-
"size_bytes":
|
|
1887
|
+
"sha256": "01b42907b1557d6e469850f9394f8c0d1604527c9463a0c138ba882af6a61bfc",
|
|
1888
|
+
"size_bytes": 4311
|
|
1824
1889
|
},
|
|
1825
1890
|
{
|
|
1826
1891
|
"path": "src/commands/workflow-build.command.ts",
|
|
@@ -2254,18 +2319,18 @@
|
|
|
2254
2319
|
},
|
|
2255
2320
|
{
|
|
2256
2321
|
"path": "src/runtime/incidents/index.ts",
|
|
2257
|
-
"sha256": "
|
|
2258
|
-
"size_bytes":
|
|
2322
|
+
"sha256": "10bae87d02c646f7d97d3a84b7fb3a5d001c78429e2d0974f8305d96a1c35273",
|
|
2323
|
+
"size_bytes": 634
|
|
2259
2324
|
},
|
|
2260
2325
|
{
|
|
2261
2326
|
"path": "src/runtime/incidents/resolve.ts",
|
|
2262
|
-
"sha256": "
|
|
2263
|
-
"size_bytes":
|
|
2327
|
+
"sha256": "17c73e9436987c909fd5aebdec6153106dcb46a2157adc9d003a74f1080c44f1",
|
|
2328
|
+
"size_bytes": 27397
|
|
2264
2329
|
},
|
|
2265
2330
|
{
|
|
2266
2331
|
"path": "src/runtime/incidents/types.ts",
|
|
2267
|
-
"sha256": "
|
|
2268
|
-
"size_bytes":
|
|
2332
|
+
"sha256": "7724861b7948e3b023166e592aae030d72a3312a8bb4941fc9781901cddd08be",
|
|
2333
|
+
"size_bytes": 2207
|
|
2269
2334
|
},
|
|
2270
2335
|
{
|
|
2271
2336
|
"path": "src/runtime/protocol/index.ts",
|
|
@@ -2324,8 +2389,8 @@
|
|
|
2324
2389
|
},
|
|
2325
2390
|
{
|
|
2326
2391
|
"path": "src/shared/env.ts",
|
|
2327
|
-
"sha256": "
|
|
2328
|
-
"size_bytes":
|
|
2392
|
+
"sha256": "91a480b13920083ae80b89f70d01ada19cae6c39064a752276e9eac50342ac78",
|
|
2393
|
+
"size_bytes": 2250
|
|
2329
2394
|
},
|
|
2330
2395
|
{
|
|
2331
2396
|
"path": "src/shared/errors.ts",
|
|
@@ -2354,8 +2419,8 @@
|
|
|
2354
2419
|
},
|
|
2355
2420
|
{
|
|
2356
2421
|
"path": "src/shared/protected-paths.ts",
|
|
2357
|
-
"sha256": "
|
|
2358
|
-
"size_bytes":
|
|
2422
|
+
"sha256": "5fb86dfa71d8b1db11ff24e32cac43eb7ce2a3d7b0d7c084afb9aacd4160e2eb",
|
|
2423
|
+
"size_bytes": 4218
|
|
2359
2424
|
},
|
|
2360
2425
|
{
|
|
2361
2426
|
"path": "src/shared/repo-cli-version.ts",
|