@mc-and-his-agents/loom-installer 0.1.76 → 0.1.78
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/package.json +1 -1
- package/payload/manifest.json +288 -193
- package/payload/plugin/loom/skills/loom-adopt/.loom-runtime/shared/references/harness/host-action-contract.md +2 -0
- package/payload/plugin/loom/skills/loom-adopt/.loom-runtime/shared/references/harness/review-execution.md +31 -0
- package/payload/plugin/loom/skills/loom-adopt/.loom-runtime/shared/references/harness/status-surface-contract.md +18 -2
- package/payload/plugin/loom/skills/loom-adopt/.loom-runtime/shared/references/harness/structured-event-evidence.md +115 -0
- package/payload/plugin/loom/skills/loom-adopt/.loom-runtime/shared/scripts/loom_check.py +326 -1
- package/payload/plugin/loom/skills/loom-adopt/.loom-runtime/shared/scripts/loom_flow.py +191 -3
- package/payload/plugin/loom/skills/loom-handoff/.loom-runtime/shared/references/harness/host-action-contract.md +2 -0
- package/payload/plugin/loom/skills/loom-handoff/.loom-runtime/shared/references/harness/review-execution.md +31 -0
- package/payload/plugin/loom/skills/loom-handoff/.loom-runtime/shared/references/harness/status-surface-contract.md +18 -2
- package/payload/plugin/loom/skills/loom-handoff/.loom-runtime/shared/references/harness/structured-event-evidence.md +115 -0
- package/payload/plugin/loom/skills/loom-handoff/.loom-runtime/shared/scripts/loom_check.py +326 -1
- package/payload/plugin/loom/skills/loom-handoff/.loom-runtime/shared/scripts/loom_flow.py +191 -3
- package/payload/plugin/loom/skills/loom-init/.loom-runtime/shared/references/harness/host-action-contract.md +2 -0
- package/payload/plugin/loom/skills/loom-init/.loom-runtime/shared/references/harness/review-execution.md +31 -0
- package/payload/plugin/loom/skills/loom-init/.loom-runtime/shared/references/harness/status-surface-contract.md +18 -2
- package/payload/plugin/loom/skills/loom-init/.loom-runtime/shared/references/harness/structured-event-evidence.md +115 -0
- package/payload/plugin/loom/skills/loom-init/.loom-runtime/shared/scripts/loom_check.py +326 -1
- package/payload/plugin/loom/skills/loom-init/.loom-runtime/shared/scripts/loom_flow.py +191 -3
- package/payload/plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/references/harness/host-action-contract.md +2 -0
- package/payload/plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/references/harness/review-execution.md +31 -0
- package/payload/plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/references/harness/status-surface-contract.md +18 -2
- package/payload/plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/references/harness/structured-event-evidence.md +115 -0
- package/payload/plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_check.py +326 -1
- package/payload/plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_flow.py +191 -3
- package/payload/plugin/loom/skills/loom-pre-review/.loom-runtime/shared/references/harness/host-action-contract.md +2 -0
- package/payload/plugin/loom/skills/loom-pre-review/.loom-runtime/shared/references/harness/review-execution.md +31 -0
- package/payload/plugin/loom/skills/loom-pre-review/.loom-runtime/shared/references/harness/status-surface-contract.md +18 -2
- package/payload/plugin/loom/skills/loom-pre-review/.loom-runtime/shared/references/harness/structured-event-evidence.md +115 -0
- package/payload/plugin/loom/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_check.py +326 -1
- package/payload/plugin/loom/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_flow.py +191 -3
- package/payload/plugin/loom/skills/loom-resume/.loom-runtime/shared/references/harness/host-action-contract.md +2 -0
- package/payload/plugin/loom/skills/loom-resume/.loom-runtime/shared/references/harness/review-execution.md +31 -0
- package/payload/plugin/loom/skills/loom-resume/.loom-runtime/shared/references/harness/status-surface-contract.md +18 -2
- package/payload/plugin/loom/skills/loom-resume/.loom-runtime/shared/references/harness/structured-event-evidence.md +115 -0
- package/payload/plugin/loom/skills/loom-resume/.loom-runtime/shared/scripts/loom_check.py +326 -1
- package/payload/plugin/loom/skills/loom-resume/.loom-runtime/shared/scripts/loom_flow.py +191 -3
- package/payload/plugin/loom/skills/loom-retire/.loom-runtime/shared/references/harness/host-action-contract.md +2 -0
- package/payload/plugin/loom/skills/loom-retire/.loom-runtime/shared/references/harness/review-execution.md +31 -0
- package/payload/plugin/loom/skills/loom-retire/.loom-runtime/shared/references/harness/status-surface-contract.md +18 -2
- package/payload/plugin/loom/skills/loom-retire/.loom-runtime/shared/references/harness/structured-event-evidence.md +115 -0
- package/payload/plugin/loom/skills/loom-retire/.loom-runtime/shared/scripts/loom_check.py +326 -1
- package/payload/plugin/loom/skills/loom-retire/.loom-runtime/shared/scripts/loom_flow.py +191 -3
- package/payload/plugin/loom/skills/loom-review/.loom-runtime/shared/references/harness/host-action-contract.md +2 -0
- package/payload/plugin/loom/skills/loom-review/.loom-runtime/shared/references/harness/review-execution.md +31 -0
- package/payload/plugin/loom/skills/loom-review/.loom-runtime/shared/references/harness/status-surface-contract.md +18 -2
- package/payload/plugin/loom/skills/loom-review/.loom-runtime/shared/references/harness/structured-event-evidence.md +115 -0
- package/payload/plugin/loom/skills/loom-review/.loom-runtime/shared/scripts/loom_check.py +326 -1
- package/payload/plugin/loom/skills/loom-review/.loom-runtime/shared/scripts/loom_flow.py +191 -3
- package/payload/plugin/loom/skills/loom-spec-review/.loom-runtime/shared/references/harness/host-action-contract.md +2 -0
- package/payload/plugin/loom/skills/loom-spec-review/.loom-runtime/shared/references/harness/review-execution.md +31 -0
- package/payload/plugin/loom/skills/loom-spec-review/.loom-runtime/shared/references/harness/status-surface-contract.md +18 -2
- package/payload/plugin/loom/skills/loom-spec-review/.loom-runtime/shared/references/harness/structured-event-evidence.md +115 -0
- package/payload/plugin/loom/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_check.py +326 -1
- package/payload/plugin/loom/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_flow.py +191 -3
- package/payload/plugin/loom/skills/shared/references/harness/host-action-contract.md +2 -0
- package/payload/plugin/loom/skills/shared/references/harness/review-execution.md +31 -0
- package/payload/plugin/loom/skills/shared/references/harness/status-surface-contract.md +18 -2
- package/payload/plugin/loom/skills/shared/references/harness/structured-event-evidence.md +115 -0
- package/payload/plugin/loom/skills/shared/scripts/loom_check.py +326 -1
- package/payload/plugin/loom/skills/shared/scripts/loom_flow.py +191 -3
- package/payload/skills/loom-adopt/.loom-runtime/shared/references/harness/host-action-contract.md +2 -0
- package/payload/skills/loom-adopt/.loom-runtime/shared/references/harness/review-execution.md +31 -0
- package/payload/skills/loom-adopt/.loom-runtime/shared/references/harness/status-surface-contract.md +18 -2
- package/payload/skills/loom-adopt/.loom-runtime/shared/references/harness/structured-event-evidence.md +115 -0
- package/payload/skills/loom-adopt/.loom-runtime/shared/scripts/loom_check.py +326 -1
- package/payload/skills/loom-adopt/.loom-runtime/shared/scripts/loom_flow.py +191 -3
- package/payload/skills/loom-handoff/.loom-runtime/shared/references/harness/host-action-contract.md +2 -0
- package/payload/skills/loom-handoff/.loom-runtime/shared/references/harness/review-execution.md +31 -0
- package/payload/skills/loom-handoff/.loom-runtime/shared/references/harness/status-surface-contract.md +18 -2
- package/payload/skills/loom-handoff/.loom-runtime/shared/references/harness/structured-event-evidence.md +115 -0
- package/payload/skills/loom-handoff/.loom-runtime/shared/scripts/loom_check.py +326 -1
- package/payload/skills/loom-handoff/.loom-runtime/shared/scripts/loom_flow.py +191 -3
- package/payload/skills/loom-init/.loom-runtime/shared/references/harness/host-action-contract.md +2 -0
- package/payload/skills/loom-init/.loom-runtime/shared/references/harness/review-execution.md +31 -0
- package/payload/skills/loom-init/.loom-runtime/shared/references/harness/status-surface-contract.md +18 -2
- package/payload/skills/loom-init/.loom-runtime/shared/references/harness/structured-event-evidence.md +115 -0
- package/payload/skills/loom-init/.loom-runtime/shared/scripts/loom_check.py +326 -1
- package/payload/skills/loom-init/.loom-runtime/shared/scripts/loom_flow.py +191 -3
- package/payload/skills/loom-merge-ready/.loom-runtime/shared/references/harness/host-action-contract.md +2 -0
- package/payload/skills/loom-merge-ready/.loom-runtime/shared/references/harness/review-execution.md +31 -0
- package/payload/skills/loom-merge-ready/.loom-runtime/shared/references/harness/status-surface-contract.md +18 -2
- package/payload/skills/loom-merge-ready/.loom-runtime/shared/references/harness/structured-event-evidence.md +115 -0
- package/payload/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_check.py +326 -1
- package/payload/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_flow.py +191 -3
- package/payload/skills/loom-pre-review/.loom-runtime/shared/references/harness/host-action-contract.md +2 -0
- package/payload/skills/loom-pre-review/.loom-runtime/shared/references/harness/review-execution.md +31 -0
- package/payload/skills/loom-pre-review/.loom-runtime/shared/references/harness/status-surface-contract.md +18 -2
- package/payload/skills/loom-pre-review/.loom-runtime/shared/references/harness/structured-event-evidence.md +115 -0
- package/payload/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_check.py +326 -1
- package/payload/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_flow.py +191 -3
- package/payload/skills/loom-resume/.loom-runtime/shared/references/harness/host-action-contract.md +2 -0
- package/payload/skills/loom-resume/.loom-runtime/shared/references/harness/review-execution.md +31 -0
- package/payload/skills/loom-resume/.loom-runtime/shared/references/harness/status-surface-contract.md +18 -2
- package/payload/skills/loom-resume/.loom-runtime/shared/references/harness/structured-event-evidence.md +115 -0
- package/payload/skills/loom-resume/.loom-runtime/shared/scripts/loom_check.py +326 -1
- package/payload/skills/loom-resume/.loom-runtime/shared/scripts/loom_flow.py +191 -3
- package/payload/skills/loom-retire/.loom-runtime/shared/references/harness/host-action-contract.md +2 -0
- package/payload/skills/loom-retire/.loom-runtime/shared/references/harness/review-execution.md +31 -0
- package/payload/skills/loom-retire/.loom-runtime/shared/references/harness/status-surface-contract.md +18 -2
- package/payload/skills/loom-retire/.loom-runtime/shared/references/harness/structured-event-evidence.md +115 -0
- package/payload/skills/loom-retire/.loom-runtime/shared/scripts/loom_check.py +326 -1
- package/payload/skills/loom-retire/.loom-runtime/shared/scripts/loom_flow.py +191 -3
- package/payload/skills/loom-review/.loom-runtime/shared/references/harness/host-action-contract.md +2 -0
- package/payload/skills/loom-review/.loom-runtime/shared/references/harness/review-execution.md +31 -0
- package/payload/skills/loom-review/.loom-runtime/shared/references/harness/status-surface-contract.md +18 -2
- package/payload/skills/loom-review/.loom-runtime/shared/references/harness/structured-event-evidence.md +115 -0
- package/payload/skills/loom-review/.loom-runtime/shared/scripts/loom_check.py +326 -1
- package/payload/skills/loom-review/.loom-runtime/shared/scripts/loom_flow.py +191 -3
- package/payload/skills/loom-spec-review/.loom-runtime/shared/references/harness/host-action-contract.md +2 -0
- package/payload/skills/loom-spec-review/.loom-runtime/shared/references/harness/review-execution.md +31 -0
- package/payload/skills/loom-spec-review/.loom-runtime/shared/references/harness/status-surface-contract.md +18 -2
- package/payload/skills/loom-spec-review/.loom-runtime/shared/references/harness/structured-event-evidence.md +115 -0
- package/payload/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_check.py +326 -1
- package/payload/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_flow.py +191 -3
package/payload/manifest.json
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
"schema_version": "loom-installer-payload/v1",
|
|
3
3
|
"loom_version": "v0.6.0",
|
|
4
4
|
"source_repository": "https://github.com/MC-and-his-Agents/Loom",
|
|
5
|
-
"source_commit": "
|
|
5
|
+
"source_commit": "504099084c921d48ea0026609a10014c126f118b",
|
|
6
6
|
"source_ref": "main",
|
|
7
|
-
"built_at": "2026-05-
|
|
7
|
+
"built_at": "2026-05-09T02:30:05+08:00",
|
|
8
8
|
"version_context": {
|
|
9
9
|
"repo_version": "v0.6.0",
|
|
10
|
-
"installer_package_version": "0.1.
|
|
10
|
+
"installer_package_version": "0.1.78",
|
|
11
11
|
"plugin_surface_version": "0.4.0",
|
|
12
12
|
"host_adapter_version": "1.0.0",
|
|
13
13
|
"skills_registry_version": "1.4.0",
|
|
@@ -622,8 +622,8 @@
|
|
|
622
622
|
},
|
|
623
623
|
{
|
|
624
624
|
"path": "plugin/loom/skills/loom-adopt/.loom-runtime/shared/references/harness/host-action-contract.md",
|
|
625
|
-
"bytes":
|
|
626
|
-
"sha256": "
|
|
625
|
+
"bytes": 10102,
|
|
626
|
+
"sha256": "9eb4182bd8a544de1f0fe58ba98bd80247759a1938ca57516430f89f384c850d"
|
|
627
627
|
},
|
|
628
628
|
{
|
|
629
629
|
"path": "plugin/loom/skills/loom-adopt/.loom-runtime/shared/references/harness/host-api-budget.md",
|
|
@@ -672,8 +672,8 @@
|
|
|
672
672
|
},
|
|
673
673
|
{
|
|
674
674
|
"path": "plugin/loom/skills/loom-adopt/.loom-runtime/shared/references/harness/review-execution.md",
|
|
675
|
-
"bytes":
|
|
676
|
-
"sha256": "
|
|
675
|
+
"bytes": 8176,
|
|
676
|
+
"sha256": "4890fc04cb55b035af441505c7fa89a2148355f284c5d9416ed6c9fb948f352f"
|
|
677
677
|
},
|
|
678
678
|
{
|
|
679
679
|
"path": "plugin/loom/skills/loom-adopt/.loom-runtime/shared/references/harness/runtime-state.md",
|
|
@@ -682,14 +682,19 @@
|
|
|
682
682
|
},
|
|
683
683
|
{
|
|
684
684
|
"path": "plugin/loom/skills/loom-adopt/.loom-runtime/shared/references/harness/status-surface-contract.md",
|
|
685
|
-
"bytes":
|
|
686
|
-
"sha256": "
|
|
685
|
+
"bytes": 6658,
|
|
686
|
+
"sha256": "dbb015ae66596a707c220e352df1052e6044a9d8c703943816f3e8dad1e74d61"
|
|
687
687
|
},
|
|
688
688
|
{
|
|
689
689
|
"path": "plugin/loom/skills/loom-adopt/.loom-runtime/shared/references/harness/status-surface.md",
|
|
690
690
|
"bytes": 10227,
|
|
691
691
|
"sha256": "96b5f180c525de888b4b9bf29f0d3448fb26726859dc1c81f1de6e2d5b44eca7"
|
|
692
692
|
},
|
|
693
|
+
{
|
|
694
|
+
"path": "plugin/loom/skills/loom-adopt/.loom-runtime/shared/references/harness/structured-event-evidence.md",
|
|
695
|
+
"bytes": 2690,
|
|
696
|
+
"sha256": "5fffaf5395f730e5d629a8c8ad11155d89d1a0663486890335d02be371646b66"
|
|
697
|
+
},
|
|
693
698
|
{
|
|
694
699
|
"path": "plugin/loom/skills/loom-adopt/.loom-runtime/shared/references/harness/work-item-contract.md",
|
|
695
700
|
"bytes": 3511,
|
|
@@ -757,13 +762,13 @@
|
|
|
757
762
|
},
|
|
758
763
|
{
|
|
759
764
|
"path": "plugin/loom/skills/loom-adopt/.loom-runtime/shared/scripts/loom_check.py",
|
|
760
|
-
"bytes":
|
|
761
|
-
"sha256": "
|
|
765
|
+
"bytes": 518004,
|
|
766
|
+
"sha256": "e2a0d80f3b095780cf8a17a4fff5c61287ef2bfe737345b48016a54245d31de8"
|
|
762
767
|
},
|
|
763
768
|
{
|
|
764
769
|
"path": "plugin/loom/skills/loom-adopt/.loom-runtime/shared/scripts/loom_flow.py",
|
|
765
|
-
"bytes":
|
|
766
|
-
"sha256": "
|
|
770
|
+
"bytes": 419479,
|
|
771
|
+
"sha256": "08035cff99ba0ba1875653344e60801148bde1c2c99ebff0e1d0eed7a57696d2"
|
|
767
772
|
},
|
|
768
773
|
{
|
|
769
774
|
"path": "plugin/loom/skills/loom-adopt/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -1307,8 +1312,8 @@
|
|
|
1307
1312
|
},
|
|
1308
1313
|
{
|
|
1309
1314
|
"path": "plugin/loom/skills/loom-handoff/.loom-runtime/shared/references/harness/host-action-contract.md",
|
|
1310
|
-
"bytes":
|
|
1311
|
-
"sha256": "
|
|
1315
|
+
"bytes": 10102,
|
|
1316
|
+
"sha256": "9eb4182bd8a544de1f0fe58ba98bd80247759a1938ca57516430f89f384c850d"
|
|
1312
1317
|
},
|
|
1313
1318
|
{
|
|
1314
1319
|
"path": "plugin/loom/skills/loom-handoff/.loom-runtime/shared/references/harness/host-api-budget.md",
|
|
@@ -1357,8 +1362,8 @@
|
|
|
1357
1362
|
},
|
|
1358
1363
|
{
|
|
1359
1364
|
"path": "plugin/loom/skills/loom-handoff/.loom-runtime/shared/references/harness/review-execution.md",
|
|
1360
|
-
"bytes":
|
|
1361
|
-
"sha256": "
|
|
1365
|
+
"bytes": 8176,
|
|
1366
|
+
"sha256": "4890fc04cb55b035af441505c7fa89a2148355f284c5d9416ed6c9fb948f352f"
|
|
1362
1367
|
},
|
|
1363
1368
|
{
|
|
1364
1369
|
"path": "plugin/loom/skills/loom-handoff/.loom-runtime/shared/references/harness/runtime-state.md",
|
|
@@ -1367,14 +1372,19 @@
|
|
|
1367
1372
|
},
|
|
1368
1373
|
{
|
|
1369
1374
|
"path": "plugin/loom/skills/loom-handoff/.loom-runtime/shared/references/harness/status-surface-contract.md",
|
|
1370
|
-
"bytes":
|
|
1371
|
-
"sha256": "
|
|
1375
|
+
"bytes": 6658,
|
|
1376
|
+
"sha256": "dbb015ae66596a707c220e352df1052e6044a9d8c703943816f3e8dad1e74d61"
|
|
1372
1377
|
},
|
|
1373
1378
|
{
|
|
1374
1379
|
"path": "plugin/loom/skills/loom-handoff/.loom-runtime/shared/references/harness/status-surface.md",
|
|
1375
1380
|
"bytes": 10227,
|
|
1376
1381
|
"sha256": "96b5f180c525de888b4b9bf29f0d3448fb26726859dc1c81f1de6e2d5b44eca7"
|
|
1377
1382
|
},
|
|
1383
|
+
{
|
|
1384
|
+
"path": "plugin/loom/skills/loom-handoff/.loom-runtime/shared/references/harness/structured-event-evidence.md",
|
|
1385
|
+
"bytes": 2690,
|
|
1386
|
+
"sha256": "5fffaf5395f730e5d629a8c8ad11155d89d1a0663486890335d02be371646b66"
|
|
1387
|
+
},
|
|
1378
1388
|
{
|
|
1379
1389
|
"path": "plugin/loom/skills/loom-handoff/.loom-runtime/shared/references/harness/work-item-contract.md",
|
|
1380
1390
|
"bytes": 3511,
|
|
@@ -1442,13 +1452,13 @@
|
|
|
1442
1452
|
},
|
|
1443
1453
|
{
|
|
1444
1454
|
"path": "plugin/loom/skills/loom-handoff/.loom-runtime/shared/scripts/loom_check.py",
|
|
1445
|
-
"bytes":
|
|
1446
|
-
"sha256": "
|
|
1455
|
+
"bytes": 518004,
|
|
1456
|
+
"sha256": "e2a0d80f3b095780cf8a17a4fff5c61287ef2bfe737345b48016a54245d31de8"
|
|
1447
1457
|
},
|
|
1448
1458
|
{
|
|
1449
1459
|
"path": "plugin/loom/skills/loom-handoff/.loom-runtime/shared/scripts/loom_flow.py",
|
|
1450
|
-
"bytes":
|
|
1451
|
-
"sha256": "
|
|
1460
|
+
"bytes": 419479,
|
|
1461
|
+
"sha256": "08035cff99ba0ba1875653344e60801148bde1c2c99ebff0e1d0eed7a57696d2"
|
|
1452
1462
|
},
|
|
1453
1463
|
{
|
|
1454
1464
|
"path": "plugin/loom/skills/loom-handoff/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -1992,8 +2002,8 @@
|
|
|
1992
2002
|
},
|
|
1993
2003
|
{
|
|
1994
2004
|
"path": "plugin/loom/skills/loom-init/.loom-runtime/shared/references/harness/host-action-contract.md",
|
|
1995
|
-
"bytes":
|
|
1996
|
-
"sha256": "
|
|
2005
|
+
"bytes": 10102,
|
|
2006
|
+
"sha256": "9eb4182bd8a544de1f0fe58ba98bd80247759a1938ca57516430f89f384c850d"
|
|
1997
2007
|
},
|
|
1998
2008
|
{
|
|
1999
2009
|
"path": "plugin/loom/skills/loom-init/.loom-runtime/shared/references/harness/host-api-budget.md",
|
|
@@ -2042,8 +2052,8 @@
|
|
|
2042
2052
|
},
|
|
2043
2053
|
{
|
|
2044
2054
|
"path": "plugin/loom/skills/loom-init/.loom-runtime/shared/references/harness/review-execution.md",
|
|
2045
|
-
"bytes":
|
|
2046
|
-
"sha256": "
|
|
2055
|
+
"bytes": 8176,
|
|
2056
|
+
"sha256": "4890fc04cb55b035af441505c7fa89a2148355f284c5d9416ed6c9fb948f352f"
|
|
2047
2057
|
},
|
|
2048
2058
|
{
|
|
2049
2059
|
"path": "plugin/loom/skills/loom-init/.loom-runtime/shared/references/harness/runtime-state.md",
|
|
@@ -2052,14 +2062,19 @@
|
|
|
2052
2062
|
},
|
|
2053
2063
|
{
|
|
2054
2064
|
"path": "plugin/loom/skills/loom-init/.loom-runtime/shared/references/harness/status-surface-contract.md",
|
|
2055
|
-
"bytes":
|
|
2056
|
-
"sha256": "
|
|
2065
|
+
"bytes": 6658,
|
|
2066
|
+
"sha256": "dbb015ae66596a707c220e352df1052e6044a9d8c703943816f3e8dad1e74d61"
|
|
2057
2067
|
},
|
|
2058
2068
|
{
|
|
2059
2069
|
"path": "plugin/loom/skills/loom-init/.loom-runtime/shared/references/harness/status-surface.md",
|
|
2060
2070
|
"bytes": 10227,
|
|
2061
2071
|
"sha256": "96b5f180c525de888b4b9bf29f0d3448fb26726859dc1c81f1de6e2d5b44eca7"
|
|
2062
2072
|
},
|
|
2073
|
+
{
|
|
2074
|
+
"path": "plugin/loom/skills/loom-init/.loom-runtime/shared/references/harness/structured-event-evidence.md",
|
|
2075
|
+
"bytes": 2690,
|
|
2076
|
+
"sha256": "5fffaf5395f730e5d629a8c8ad11155d89d1a0663486890335d02be371646b66"
|
|
2077
|
+
},
|
|
2063
2078
|
{
|
|
2064
2079
|
"path": "plugin/loom/skills/loom-init/.loom-runtime/shared/references/harness/work-item-contract.md",
|
|
2065
2080
|
"bytes": 3511,
|
|
@@ -2127,13 +2142,13 @@
|
|
|
2127
2142
|
},
|
|
2128
2143
|
{
|
|
2129
2144
|
"path": "plugin/loom/skills/loom-init/.loom-runtime/shared/scripts/loom_check.py",
|
|
2130
|
-
"bytes":
|
|
2131
|
-
"sha256": "
|
|
2145
|
+
"bytes": 518004,
|
|
2146
|
+
"sha256": "e2a0d80f3b095780cf8a17a4fff5c61287ef2bfe737345b48016a54245d31de8"
|
|
2132
2147
|
},
|
|
2133
2148
|
{
|
|
2134
2149
|
"path": "plugin/loom/skills/loom-init/.loom-runtime/shared/scripts/loom_flow.py",
|
|
2135
|
-
"bytes":
|
|
2136
|
-
"sha256": "
|
|
2150
|
+
"bytes": 419479,
|
|
2151
|
+
"sha256": "08035cff99ba0ba1875653344e60801148bde1c2c99ebff0e1d0eed7a57696d2"
|
|
2137
2152
|
},
|
|
2138
2153
|
{
|
|
2139
2154
|
"path": "plugin/loom/skills/loom-init/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -2682,8 +2697,8 @@
|
|
|
2682
2697
|
},
|
|
2683
2698
|
{
|
|
2684
2699
|
"path": "plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/references/harness/host-action-contract.md",
|
|
2685
|
-
"bytes":
|
|
2686
|
-
"sha256": "
|
|
2700
|
+
"bytes": 10102,
|
|
2701
|
+
"sha256": "9eb4182bd8a544de1f0fe58ba98bd80247759a1938ca57516430f89f384c850d"
|
|
2687
2702
|
},
|
|
2688
2703
|
{
|
|
2689
2704
|
"path": "plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/references/harness/host-api-budget.md",
|
|
@@ -2732,8 +2747,8 @@
|
|
|
2732
2747
|
},
|
|
2733
2748
|
{
|
|
2734
2749
|
"path": "plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/references/harness/review-execution.md",
|
|
2735
|
-
"bytes":
|
|
2736
|
-
"sha256": "
|
|
2750
|
+
"bytes": 8176,
|
|
2751
|
+
"sha256": "4890fc04cb55b035af441505c7fa89a2148355f284c5d9416ed6c9fb948f352f"
|
|
2737
2752
|
},
|
|
2738
2753
|
{
|
|
2739
2754
|
"path": "plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/references/harness/runtime-state.md",
|
|
@@ -2742,14 +2757,19 @@
|
|
|
2742
2757
|
},
|
|
2743
2758
|
{
|
|
2744
2759
|
"path": "plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/references/harness/status-surface-contract.md",
|
|
2745
|
-
"bytes":
|
|
2746
|
-
"sha256": "
|
|
2760
|
+
"bytes": 6658,
|
|
2761
|
+
"sha256": "dbb015ae66596a707c220e352df1052e6044a9d8c703943816f3e8dad1e74d61"
|
|
2747
2762
|
},
|
|
2748
2763
|
{
|
|
2749
2764
|
"path": "plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/references/harness/status-surface.md",
|
|
2750
2765
|
"bytes": 10227,
|
|
2751
2766
|
"sha256": "96b5f180c525de888b4b9bf29f0d3448fb26726859dc1c81f1de6e2d5b44eca7"
|
|
2752
2767
|
},
|
|
2768
|
+
{
|
|
2769
|
+
"path": "plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/references/harness/structured-event-evidence.md",
|
|
2770
|
+
"bytes": 2690,
|
|
2771
|
+
"sha256": "5fffaf5395f730e5d629a8c8ad11155d89d1a0663486890335d02be371646b66"
|
|
2772
|
+
},
|
|
2753
2773
|
{
|
|
2754
2774
|
"path": "plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/references/harness/work-item-contract.md",
|
|
2755
2775
|
"bytes": 3511,
|
|
@@ -2817,13 +2837,13 @@
|
|
|
2817
2837
|
},
|
|
2818
2838
|
{
|
|
2819
2839
|
"path": "plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_check.py",
|
|
2820
|
-
"bytes":
|
|
2821
|
-
"sha256": "
|
|
2840
|
+
"bytes": 518004,
|
|
2841
|
+
"sha256": "e2a0d80f3b095780cf8a17a4fff5c61287ef2bfe737345b48016a54245d31de8"
|
|
2822
2842
|
},
|
|
2823
2843
|
{
|
|
2824
2844
|
"path": "plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_flow.py",
|
|
2825
|
-
"bytes":
|
|
2826
|
-
"sha256": "
|
|
2845
|
+
"bytes": 419479,
|
|
2846
|
+
"sha256": "08035cff99ba0ba1875653344e60801148bde1c2c99ebff0e1d0eed7a57696d2"
|
|
2827
2847
|
},
|
|
2828
2848
|
{
|
|
2829
2849
|
"path": "plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -3367,8 +3387,8 @@
|
|
|
3367
3387
|
},
|
|
3368
3388
|
{
|
|
3369
3389
|
"path": "plugin/loom/skills/loom-pre-review/.loom-runtime/shared/references/harness/host-action-contract.md",
|
|
3370
|
-
"bytes":
|
|
3371
|
-
"sha256": "
|
|
3390
|
+
"bytes": 10102,
|
|
3391
|
+
"sha256": "9eb4182bd8a544de1f0fe58ba98bd80247759a1938ca57516430f89f384c850d"
|
|
3372
3392
|
},
|
|
3373
3393
|
{
|
|
3374
3394
|
"path": "plugin/loom/skills/loom-pre-review/.loom-runtime/shared/references/harness/host-api-budget.md",
|
|
@@ -3417,8 +3437,8 @@
|
|
|
3417
3437
|
},
|
|
3418
3438
|
{
|
|
3419
3439
|
"path": "plugin/loom/skills/loom-pre-review/.loom-runtime/shared/references/harness/review-execution.md",
|
|
3420
|
-
"bytes":
|
|
3421
|
-
"sha256": "
|
|
3440
|
+
"bytes": 8176,
|
|
3441
|
+
"sha256": "4890fc04cb55b035af441505c7fa89a2148355f284c5d9416ed6c9fb948f352f"
|
|
3422
3442
|
},
|
|
3423
3443
|
{
|
|
3424
3444
|
"path": "plugin/loom/skills/loom-pre-review/.loom-runtime/shared/references/harness/runtime-state.md",
|
|
@@ -3427,14 +3447,19 @@
|
|
|
3427
3447
|
},
|
|
3428
3448
|
{
|
|
3429
3449
|
"path": "plugin/loom/skills/loom-pre-review/.loom-runtime/shared/references/harness/status-surface-contract.md",
|
|
3430
|
-
"bytes":
|
|
3431
|
-
"sha256": "
|
|
3450
|
+
"bytes": 6658,
|
|
3451
|
+
"sha256": "dbb015ae66596a707c220e352df1052e6044a9d8c703943816f3e8dad1e74d61"
|
|
3432
3452
|
},
|
|
3433
3453
|
{
|
|
3434
3454
|
"path": "plugin/loom/skills/loom-pre-review/.loom-runtime/shared/references/harness/status-surface.md",
|
|
3435
3455
|
"bytes": 10227,
|
|
3436
3456
|
"sha256": "96b5f180c525de888b4b9bf29f0d3448fb26726859dc1c81f1de6e2d5b44eca7"
|
|
3437
3457
|
},
|
|
3458
|
+
{
|
|
3459
|
+
"path": "plugin/loom/skills/loom-pre-review/.loom-runtime/shared/references/harness/structured-event-evidence.md",
|
|
3460
|
+
"bytes": 2690,
|
|
3461
|
+
"sha256": "5fffaf5395f730e5d629a8c8ad11155d89d1a0663486890335d02be371646b66"
|
|
3462
|
+
},
|
|
3438
3463
|
{
|
|
3439
3464
|
"path": "plugin/loom/skills/loom-pre-review/.loom-runtime/shared/references/harness/work-item-contract.md",
|
|
3440
3465
|
"bytes": 3511,
|
|
@@ -3502,13 +3527,13 @@
|
|
|
3502
3527
|
},
|
|
3503
3528
|
{
|
|
3504
3529
|
"path": "plugin/loom/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_check.py",
|
|
3505
|
-
"bytes":
|
|
3506
|
-
"sha256": "
|
|
3530
|
+
"bytes": 518004,
|
|
3531
|
+
"sha256": "e2a0d80f3b095780cf8a17a4fff5c61287ef2bfe737345b48016a54245d31de8"
|
|
3507
3532
|
},
|
|
3508
3533
|
{
|
|
3509
3534
|
"path": "plugin/loom/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_flow.py",
|
|
3510
|
-
"bytes":
|
|
3511
|
-
"sha256": "
|
|
3535
|
+
"bytes": 419479,
|
|
3536
|
+
"sha256": "08035cff99ba0ba1875653344e60801148bde1c2c99ebff0e1d0eed7a57696d2"
|
|
3512
3537
|
},
|
|
3513
3538
|
{
|
|
3514
3539
|
"path": "plugin/loom/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -4052,8 +4077,8 @@
|
|
|
4052
4077
|
},
|
|
4053
4078
|
{
|
|
4054
4079
|
"path": "plugin/loom/skills/loom-resume/.loom-runtime/shared/references/harness/host-action-contract.md",
|
|
4055
|
-
"bytes":
|
|
4056
|
-
"sha256": "
|
|
4080
|
+
"bytes": 10102,
|
|
4081
|
+
"sha256": "9eb4182bd8a544de1f0fe58ba98bd80247759a1938ca57516430f89f384c850d"
|
|
4057
4082
|
},
|
|
4058
4083
|
{
|
|
4059
4084
|
"path": "plugin/loom/skills/loom-resume/.loom-runtime/shared/references/harness/host-api-budget.md",
|
|
@@ -4102,8 +4127,8 @@
|
|
|
4102
4127
|
},
|
|
4103
4128
|
{
|
|
4104
4129
|
"path": "plugin/loom/skills/loom-resume/.loom-runtime/shared/references/harness/review-execution.md",
|
|
4105
|
-
"bytes":
|
|
4106
|
-
"sha256": "
|
|
4130
|
+
"bytes": 8176,
|
|
4131
|
+
"sha256": "4890fc04cb55b035af441505c7fa89a2148355f284c5d9416ed6c9fb948f352f"
|
|
4107
4132
|
},
|
|
4108
4133
|
{
|
|
4109
4134
|
"path": "plugin/loom/skills/loom-resume/.loom-runtime/shared/references/harness/runtime-state.md",
|
|
@@ -4112,14 +4137,19 @@
|
|
|
4112
4137
|
},
|
|
4113
4138
|
{
|
|
4114
4139
|
"path": "plugin/loom/skills/loom-resume/.loom-runtime/shared/references/harness/status-surface-contract.md",
|
|
4115
|
-
"bytes":
|
|
4116
|
-
"sha256": "
|
|
4140
|
+
"bytes": 6658,
|
|
4141
|
+
"sha256": "dbb015ae66596a707c220e352df1052e6044a9d8c703943816f3e8dad1e74d61"
|
|
4117
4142
|
},
|
|
4118
4143
|
{
|
|
4119
4144
|
"path": "plugin/loom/skills/loom-resume/.loom-runtime/shared/references/harness/status-surface.md",
|
|
4120
4145
|
"bytes": 10227,
|
|
4121
4146
|
"sha256": "96b5f180c525de888b4b9bf29f0d3448fb26726859dc1c81f1de6e2d5b44eca7"
|
|
4122
4147
|
},
|
|
4148
|
+
{
|
|
4149
|
+
"path": "plugin/loom/skills/loom-resume/.loom-runtime/shared/references/harness/structured-event-evidence.md",
|
|
4150
|
+
"bytes": 2690,
|
|
4151
|
+
"sha256": "5fffaf5395f730e5d629a8c8ad11155d89d1a0663486890335d02be371646b66"
|
|
4152
|
+
},
|
|
4123
4153
|
{
|
|
4124
4154
|
"path": "plugin/loom/skills/loom-resume/.loom-runtime/shared/references/harness/work-item-contract.md",
|
|
4125
4155
|
"bytes": 3511,
|
|
@@ -4187,13 +4217,13 @@
|
|
|
4187
4217
|
},
|
|
4188
4218
|
{
|
|
4189
4219
|
"path": "plugin/loom/skills/loom-resume/.loom-runtime/shared/scripts/loom_check.py",
|
|
4190
|
-
"bytes":
|
|
4191
|
-
"sha256": "
|
|
4220
|
+
"bytes": 518004,
|
|
4221
|
+
"sha256": "e2a0d80f3b095780cf8a17a4fff5c61287ef2bfe737345b48016a54245d31de8"
|
|
4192
4222
|
},
|
|
4193
4223
|
{
|
|
4194
4224
|
"path": "plugin/loom/skills/loom-resume/.loom-runtime/shared/scripts/loom_flow.py",
|
|
4195
|
-
"bytes":
|
|
4196
|
-
"sha256": "
|
|
4225
|
+
"bytes": 419479,
|
|
4226
|
+
"sha256": "08035cff99ba0ba1875653344e60801148bde1c2c99ebff0e1d0eed7a57696d2"
|
|
4197
4227
|
},
|
|
4198
4228
|
{
|
|
4199
4229
|
"path": "plugin/loom/skills/loom-resume/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -4737,8 +4767,8 @@
|
|
|
4737
4767
|
},
|
|
4738
4768
|
{
|
|
4739
4769
|
"path": "plugin/loom/skills/loom-retire/.loom-runtime/shared/references/harness/host-action-contract.md",
|
|
4740
|
-
"bytes":
|
|
4741
|
-
"sha256": "
|
|
4770
|
+
"bytes": 10102,
|
|
4771
|
+
"sha256": "9eb4182bd8a544de1f0fe58ba98bd80247759a1938ca57516430f89f384c850d"
|
|
4742
4772
|
},
|
|
4743
4773
|
{
|
|
4744
4774
|
"path": "plugin/loom/skills/loom-retire/.loom-runtime/shared/references/harness/host-api-budget.md",
|
|
@@ -4787,8 +4817,8 @@
|
|
|
4787
4817
|
},
|
|
4788
4818
|
{
|
|
4789
4819
|
"path": "plugin/loom/skills/loom-retire/.loom-runtime/shared/references/harness/review-execution.md",
|
|
4790
|
-
"bytes":
|
|
4791
|
-
"sha256": "
|
|
4820
|
+
"bytes": 8176,
|
|
4821
|
+
"sha256": "4890fc04cb55b035af441505c7fa89a2148355f284c5d9416ed6c9fb948f352f"
|
|
4792
4822
|
},
|
|
4793
4823
|
{
|
|
4794
4824
|
"path": "plugin/loom/skills/loom-retire/.loom-runtime/shared/references/harness/runtime-state.md",
|
|
@@ -4797,14 +4827,19 @@
|
|
|
4797
4827
|
},
|
|
4798
4828
|
{
|
|
4799
4829
|
"path": "plugin/loom/skills/loom-retire/.loom-runtime/shared/references/harness/status-surface-contract.md",
|
|
4800
|
-
"bytes":
|
|
4801
|
-
"sha256": "
|
|
4830
|
+
"bytes": 6658,
|
|
4831
|
+
"sha256": "dbb015ae66596a707c220e352df1052e6044a9d8c703943816f3e8dad1e74d61"
|
|
4802
4832
|
},
|
|
4803
4833
|
{
|
|
4804
4834
|
"path": "plugin/loom/skills/loom-retire/.loom-runtime/shared/references/harness/status-surface.md",
|
|
4805
4835
|
"bytes": 10227,
|
|
4806
4836
|
"sha256": "96b5f180c525de888b4b9bf29f0d3448fb26726859dc1c81f1de6e2d5b44eca7"
|
|
4807
4837
|
},
|
|
4838
|
+
{
|
|
4839
|
+
"path": "plugin/loom/skills/loom-retire/.loom-runtime/shared/references/harness/structured-event-evidence.md",
|
|
4840
|
+
"bytes": 2690,
|
|
4841
|
+
"sha256": "5fffaf5395f730e5d629a8c8ad11155d89d1a0663486890335d02be371646b66"
|
|
4842
|
+
},
|
|
4808
4843
|
{
|
|
4809
4844
|
"path": "plugin/loom/skills/loom-retire/.loom-runtime/shared/references/harness/work-item-contract.md",
|
|
4810
4845
|
"bytes": 3511,
|
|
@@ -4872,13 +4907,13 @@
|
|
|
4872
4907
|
},
|
|
4873
4908
|
{
|
|
4874
4909
|
"path": "plugin/loom/skills/loom-retire/.loom-runtime/shared/scripts/loom_check.py",
|
|
4875
|
-
"bytes":
|
|
4876
|
-
"sha256": "
|
|
4910
|
+
"bytes": 518004,
|
|
4911
|
+
"sha256": "e2a0d80f3b095780cf8a17a4fff5c61287ef2bfe737345b48016a54245d31de8"
|
|
4877
4912
|
},
|
|
4878
4913
|
{
|
|
4879
4914
|
"path": "plugin/loom/skills/loom-retire/.loom-runtime/shared/scripts/loom_flow.py",
|
|
4880
|
-
"bytes":
|
|
4881
|
-
"sha256": "
|
|
4915
|
+
"bytes": 419479,
|
|
4916
|
+
"sha256": "08035cff99ba0ba1875653344e60801148bde1c2c99ebff0e1d0eed7a57696d2"
|
|
4882
4917
|
},
|
|
4883
4918
|
{
|
|
4884
4919
|
"path": "plugin/loom/skills/loom-retire/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -5422,8 +5457,8 @@
|
|
|
5422
5457
|
},
|
|
5423
5458
|
{
|
|
5424
5459
|
"path": "plugin/loom/skills/loom-review/.loom-runtime/shared/references/harness/host-action-contract.md",
|
|
5425
|
-
"bytes":
|
|
5426
|
-
"sha256": "
|
|
5460
|
+
"bytes": 10102,
|
|
5461
|
+
"sha256": "9eb4182bd8a544de1f0fe58ba98bd80247759a1938ca57516430f89f384c850d"
|
|
5427
5462
|
},
|
|
5428
5463
|
{
|
|
5429
5464
|
"path": "plugin/loom/skills/loom-review/.loom-runtime/shared/references/harness/host-api-budget.md",
|
|
@@ -5472,8 +5507,8 @@
|
|
|
5472
5507
|
},
|
|
5473
5508
|
{
|
|
5474
5509
|
"path": "plugin/loom/skills/loom-review/.loom-runtime/shared/references/harness/review-execution.md",
|
|
5475
|
-
"bytes":
|
|
5476
|
-
"sha256": "
|
|
5510
|
+
"bytes": 8176,
|
|
5511
|
+
"sha256": "4890fc04cb55b035af441505c7fa89a2148355f284c5d9416ed6c9fb948f352f"
|
|
5477
5512
|
},
|
|
5478
5513
|
{
|
|
5479
5514
|
"path": "plugin/loom/skills/loom-review/.loom-runtime/shared/references/harness/runtime-state.md",
|
|
@@ -5482,14 +5517,19 @@
|
|
|
5482
5517
|
},
|
|
5483
5518
|
{
|
|
5484
5519
|
"path": "plugin/loom/skills/loom-review/.loom-runtime/shared/references/harness/status-surface-contract.md",
|
|
5485
|
-
"bytes":
|
|
5486
|
-
"sha256": "
|
|
5520
|
+
"bytes": 6658,
|
|
5521
|
+
"sha256": "dbb015ae66596a707c220e352df1052e6044a9d8c703943816f3e8dad1e74d61"
|
|
5487
5522
|
},
|
|
5488
5523
|
{
|
|
5489
5524
|
"path": "plugin/loom/skills/loom-review/.loom-runtime/shared/references/harness/status-surface.md",
|
|
5490
5525
|
"bytes": 10227,
|
|
5491
5526
|
"sha256": "96b5f180c525de888b4b9bf29f0d3448fb26726859dc1c81f1de6e2d5b44eca7"
|
|
5492
5527
|
},
|
|
5528
|
+
{
|
|
5529
|
+
"path": "plugin/loom/skills/loom-review/.loom-runtime/shared/references/harness/structured-event-evidence.md",
|
|
5530
|
+
"bytes": 2690,
|
|
5531
|
+
"sha256": "5fffaf5395f730e5d629a8c8ad11155d89d1a0663486890335d02be371646b66"
|
|
5532
|
+
},
|
|
5493
5533
|
{
|
|
5494
5534
|
"path": "plugin/loom/skills/loom-review/.loom-runtime/shared/references/harness/work-item-contract.md",
|
|
5495
5535
|
"bytes": 3511,
|
|
@@ -5557,13 +5597,13 @@
|
|
|
5557
5597
|
},
|
|
5558
5598
|
{
|
|
5559
5599
|
"path": "plugin/loom/skills/loom-review/.loom-runtime/shared/scripts/loom_check.py",
|
|
5560
|
-
"bytes":
|
|
5561
|
-
"sha256": "
|
|
5600
|
+
"bytes": 518004,
|
|
5601
|
+
"sha256": "e2a0d80f3b095780cf8a17a4fff5c61287ef2bfe737345b48016a54245d31de8"
|
|
5562
5602
|
},
|
|
5563
5603
|
{
|
|
5564
5604
|
"path": "plugin/loom/skills/loom-review/.loom-runtime/shared/scripts/loom_flow.py",
|
|
5565
|
-
"bytes":
|
|
5566
|
-
"sha256": "
|
|
5605
|
+
"bytes": 419479,
|
|
5606
|
+
"sha256": "08035cff99ba0ba1875653344e60801148bde1c2c99ebff0e1d0eed7a57696d2"
|
|
5567
5607
|
},
|
|
5568
5608
|
{
|
|
5569
5609
|
"path": "plugin/loom/skills/loom-review/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -6107,8 +6147,8 @@
|
|
|
6107
6147
|
},
|
|
6108
6148
|
{
|
|
6109
6149
|
"path": "plugin/loom/skills/loom-spec-review/.loom-runtime/shared/references/harness/host-action-contract.md",
|
|
6110
|
-
"bytes":
|
|
6111
|
-
"sha256": "
|
|
6150
|
+
"bytes": 10102,
|
|
6151
|
+
"sha256": "9eb4182bd8a544de1f0fe58ba98bd80247759a1938ca57516430f89f384c850d"
|
|
6112
6152
|
},
|
|
6113
6153
|
{
|
|
6114
6154
|
"path": "plugin/loom/skills/loom-spec-review/.loom-runtime/shared/references/harness/host-api-budget.md",
|
|
@@ -6157,8 +6197,8 @@
|
|
|
6157
6197
|
},
|
|
6158
6198
|
{
|
|
6159
6199
|
"path": "plugin/loom/skills/loom-spec-review/.loom-runtime/shared/references/harness/review-execution.md",
|
|
6160
|
-
"bytes":
|
|
6161
|
-
"sha256": "
|
|
6200
|
+
"bytes": 8176,
|
|
6201
|
+
"sha256": "4890fc04cb55b035af441505c7fa89a2148355f284c5d9416ed6c9fb948f352f"
|
|
6162
6202
|
},
|
|
6163
6203
|
{
|
|
6164
6204
|
"path": "plugin/loom/skills/loom-spec-review/.loom-runtime/shared/references/harness/runtime-state.md",
|
|
@@ -6167,14 +6207,19 @@
|
|
|
6167
6207
|
},
|
|
6168
6208
|
{
|
|
6169
6209
|
"path": "plugin/loom/skills/loom-spec-review/.loom-runtime/shared/references/harness/status-surface-contract.md",
|
|
6170
|
-
"bytes":
|
|
6171
|
-
"sha256": "
|
|
6210
|
+
"bytes": 6658,
|
|
6211
|
+
"sha256": "dbb015ae66596a707c220e352df1052e6044a9d8c703943816f3e8dad1e74d61"
|
|
6172
6212
|
},
|
|
6173
6213
|
{
|
|
6174
6214
|
"path": "plugin/loom/skills/loom-spec-review/.loom-runtime/shared/references/harness/status-surface.md",
|
|
6175
6215
|
"bytes": 10227,
|
|
6176
6216
|
"sha256": "96b5f180c525de888b4b9bf29f0d3448fb26726859dc1c81f1de6e2d5b44eca7"
|
|
6177
6217
|
},
|
|
6218
|
+
{
|
|
6219
|
+
"path": "plugin/loom/skills/loom-spec-review/.loom-runtime/shared/references/harness/structured-event-evidence.md",
|
|
6220
|
+
"bytes": 2690,
|
|
6221
|
+
"sha256": "5fffaf5395f730e5d629a8c8ad11155d89d1a0663486890335d02be371646b66"
|
|
6222
|
+
},
|
|
6178
6223
|
{
|
|
6179
6224
|
"path": "plugin/loom/skills/loom-spec-review/.loom-runtime/shared/references/harness/work-item-contract.md",
|
|
6180
6225
|
"bytes": 3511,
|
|
@@ -6242,13 +6287,13 @@
|
|
|
6242
6287
|
},
|
|
6243
6288
|
{
|
|
6244
6289
|
"path": "plugin/loom/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_check.py",
|
|
6245
|
-
"bytes":
|
|
6246
|
-
"sha256": "
|
|
6290
|
+
"bytes": 518004,
|
|
6291
|
+
"sha256": "e2a0d80f3b095780cf8a17a4fff5c61287ef2bfe737345b48016a54245d31de8"
|
|
6247
6292
|
},
|
|
6248
6293
|
{
|
|
6249
6294
|
"path": "plugin/loom/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_flow.py",
|
|
6250
|
-
"bytes":
|
|
6251
|
-
"sha256": "
|
|
6295
|
+
"bytes": 419479,
|
|
6296
|
+
"sha256": "08035cff99ba0ba1875653344e60801148bde1c2c99ebff0e1d0eed7a57696d2"
|
|
6252
6297
|
},
|
|
6253
6298
|
{
|
|
6254
6299
|
"path": "plugin/loom/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -6507,8 +6552,8 @@
|
|
|
6507
6552
|
},
|
|
6508
6553
|
{
|
|
6509
6554
|
"path": "plugin/loom/skills/shared/references/harness/host-action-contract.md",
|
|
6510
|
-
"bytes":
|
|
6511
|
-
"sha256": "
|
|
6555
|
+
"bytes": 10102,
|
|
6556
|
+
"sha256": "9eb4182bd8a544de1f0fe58ba98bd80247759a1938ca57516430f89f384c850d"
|
|
6512
6557
|
},
|
|
6513
6558
|
{
|
|
6514
6559
|
"path": "plugin/loom/skills/shared/references/harness/host-api-budget.md",
|
|
@@ -6557,8 +6602,8 @@
|
|
|
6557
6602
|
},
|
|
6558
6603
|
{
|
|
6559
6604
|
"path": "plugin/loom/skills/shared/references/harness/review-execution.md",
|
|
6560
|
-
"bytes":
|
|
6561
|
-
"sha256": "
|
|
6605
|
+
"bytes": 8176,
|
|
6606
|
+
"sha256": "4890fc04cb55b035af441505c7fa89a2148355f284c5d9416ed6c9fb948f352f"
|
|
6562
6607
|
},
|
|
6563
6608
|
{
|
|
6564
6609
|
"path": "plugin/loom/skills/shared/references/harness/runtime-state.md",
|
|
@@ -6567,14 +6612,19 @@
|
|
|
6567
6612
|
},
|
|
6568
6613
|
{
|
|
6569
6614
|
"path": "plugin/loom/skills/shared/references/harness/status-surface-contract.md",
|
|
6570
|
-
"bytes":
|
|
6571
|
-
"sha256": "
|
|
6615
|
+
"bytes": 6658,
|
|
6616
|
+
"sha256": "dbb015ae66596a707c220e352df1052e6044a9d8c703943816f3e8dad1e74d61"
|
|
6572
6617
|
},
|
|
6573
6618
|
{
|
|
6574
6619
|
"path": "plugin/loom/skills/shared/references/harness/status-surface.md",
|
|
6575
6620
|
"bytes": 10227,
|
|
6576
6621
|
"sha256": "96b5f180c525de888b4b9bf29f0d3448fb26726859dc1c81f1de6e2d5b44eca7"
|
|
6577
6622
|
},
|
|
6623
|
+
{
|
|
6624
|
+
"path": "plugin/loom/skills/shared/references/harness/structured-event-evidence.md",
|
|
6625
|
+
"bytes": 2690,
|
|
6626
|
+
"sha256": "5fffaf5395f730e5d629a8c8ad11155d89d1a0663486890335d02be371646b66"
|
|
6627
|
+
},
|
|
6578
6628
|
{
|
|
6579
6629
|
"path": "plugin/loom/skills/shared/references/harness/work-item-contract.md",
|
|
6580
6630
|
"bytes": 3511,
|
|
@@ -6642,13 +6692,13 @@
|
|
|
6642
6692
|
},
|
|
6643
6693
|
{
|
|
6644
6694
|
"path": "plugin/loom/skills/shared/scripts/loom_check.py",
|
|
6645
|
-
"bytes":
|
|
6646
|
-
"sha256": "
|
|
6695
|
+
"bytes": 518004,
|
|
6696
|
+
"sha256": "e2a0d80f3b095780cf8a17a4fff5c61287ef2bfe737345b48016a54245d31de8"
|
|
6647
6697
|
},
|
|
6648
6698
|
{
|
|
6649
6699
|
"path": "plugin/loom/skills/shared/scripts/loom_flow.py",
|
|
6650
|
-
"bytes":
|
|
6651
|
-
"sha256": "
|
|
6700
|
+
"bytes": 419479,
|
|
6701
|
+
"sha256": "08035cff99ba0ba1875653344e60801148bde1c2c99ebff0e1d0eed7a57696d2"
|
|
6652
6702
|
},
|
|
6653
6703
|
{
|
|
6654
6704
|
"path": "plugin/loom/skills/shared/scripts/loom_init.py",
|
|
@@ -7157,8 +7207,8 @@
|
|
|
7157
7207
|
},
|
|
7158
7208
|
{
|
|
7159
7209
|
"path": "skills/loom-adopt/.loom-runtime/shared/references/harness/host-action-contract.md",
|
|
7160
|
-
"bytes":
|
|
7161
|
-
"sha256": "
|
|
7210
|
+
"bytes": 10102,
|
|
7211
|
+
"sha256": "9eb4182bd8a544de1f0fe58ba98bd80247759a1938ca57516430f89f384c850d"
|
|
7162
7212
|
},
|
|
7163
7213
|
{
|
|
7164
7214
|
"path": "skills/loom-adopt/.loom-runtime/shared/references/harness/host-api-budget.md",
|
|
@@ -7207,8 +7257,8 @@
|
|
|
7207
7257
|
},
|
|
7208
7258
|
{
|
|
7209
7259
|
"path": "skills/loom-adopt/.loom-runtime/shared/references/harness/review-execution.md",
|
|
7210
|
-
"bytes":
|
|
7211
|
-
"sha256": "
|
|
7260
|
+
"bytes": 8176,
|
|
7261
|
+
"sha256": "4890fc04cb55b035af441505c7fa89a2148355f284c5d9416ed6c9fb948f352f"
|
|
7212
7262
|
},
|
|
7213
7263
|
{
|
|
7214
7264
|
"path": "skills/loom-adopt/.loom-runtime/shared/references/harness/runtime-state.md",
|
|
@@ -7217,14 +7267,19 @@
|
|
|
7217
7267
|
},
|
|
7218
7268
|
{
|
|
7219
7269
|
"path": "skills/loom-adopt/.loom-runtime/shared/references/harness/status-surface-contract.md",
|
|
7220
|
-
"bytes":
|
|
7221
|
-
"sha256": "
|
|
7270
|
+
"bytes": 6658,
|
|
7271
|
+
"sha256": "dbb015ae66596a707c220e352df1052e6044a9d8c703943816f3e8dad1e74d61"
|
|
7222
7272
|
},
|
|
7223
7273
|
{
|
|
7224
7274
|
"path": "skills/loom-adopt/.loom-runtime/shared/references/harness/status-surface.md",
|
|
7225
7275
|
"bytes": 10227,
|
|
7226
7276
|
"sha256": "96b5f180c525de888b4b9bf29f0d3448fb26726859dc1c81f1de6e2d5b44eca7"
|
|
7227
7277
|
},
|
|
7278
|
+
{
|
|
7279
|
+
"path": "skills/loom-adopt/.loom-runtime/shared/references/harness/structured-event-evidence.md",
|
|
7280
|
+
"bytes": 2690,
|
|
7281
|
+
"sha256": "5fffaf5395f730e5d629a8c8ad11155d89d1a0663486890335d02be371646b66"
|
|
7282
|
+
},
|
|
7228
7283
|
{
|
|
7229
7284
|
"path": "skills/loom-adopt/.loom-runtime/shared/references/harness/work-item-contract.md",
|
|
7230
7285
|
"bytes": 3511,
|
|
@@ -7292,13 +7347,13 @@
|
|
|
7292
7347
|
},
|
|
7293
7348
|
{
|
|
7294
7349
|
"path": "skills/loom-adopt/.loom-runtime/shared/scripts/loom_check.py",
|
|
7295
|
-
"bytes":
|
|
7296
|
-
"sha256": "
|
|
7350
|
+
"bytes": 518004,
|
|
7351
|
+
"sha256": "e2a0d80f3b095780cf8a17a4fff5c61287ef2bfe737345b48016a54245d31de8"
|
|
7297
7352
|
},
|
|
7298
7353
|
{
|
|
7299
7354
|
"path": "skills/loom-adopt/.loom-runtime/shared/scripts/loom_flow.py",
|
|
7300
|
-
"bytes":
|
|
7301
|
-
"sha256": "
|
|
7355
|
+
"bytes": 419479,
|
|
7356
|
+
"sha256": "08035cff99ba0ba1875653344e60801148bde1c2c99ebff0e1d0eed7a57696d2"
|
|
7302
7357
|
},
|
|
7303
7358
|
{
|
|
7304
7359
|
"path": "skills/loom-adopt/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -7842,8 +7897,8 @@
|
|
|
7842
7897
|
},
|
|
7843
7898
|
{
|
|
7844
7899
|
"path": "skills/loom-handoff/.loom-runtime/shared/references/harness/host-action-contract.md",
|
|
7845
|
-
"bytes":
|
|
7846
|
-
"sha256": "
|
|
7900
|
+
"bytes": 10102,
|
|
7901
|
+
"sha256": "9eb4182bd8a544de1f0fe58ba98bd80247759a1938ca57516430f89f384c850d"
|
|
7847
7902
|
},
|
|
7848
7903
|
{
|
|
7849
7904
|
"path": "skills/loom-handoff/.loom-runtime/shared/references/harness/host-api-budget.md",
|
|
@@ -7892,8 +7947,8 @@
|
|
|
7892
7947
|
},
|
|
7893
7948
|
{
|
|
7894
7949
|
"path": "skills/loom-handoff/.loom-runtime/shared/references/harness/review-execution.md",
|
|
7895
|
-
"bytes":
|
|
7896
|
-
"sha256": "
|
|
7950
|
+
"bytes": 8176,
|
|
7951
|
+
"sha256": "4890fc04cb55b035af441505c7fa89a2148355f284c5d9416ed6c9fb948f352f"
|
|
7897
7952
|
},
|
|
7898
7953
|
{
|
|
7899
7954
|
"path": "skills/loom-handoff/.loom-runtime/shared/references/harness/runtime-state.md",
|
|
@@ -7902,14 +7957,19 @@
|
|
|
7902
7957
|
},
|
|
7903
7958
|
{
|
|
7904
7959
|
"path": "skills/loom-handoff/.loom-runtime/shared/references/harness/status-surface-contract.md",
|
|
7905
|
-
"bytes":
|
|
7906
|
-
"sha256": "
|
|
7960
|
+
"bytes": 6658,
|
|
7961
|
+
"sha256": "dbb015ae66596a707c220e352df1052e6044a9d8c703943816f3e8dad1e74d61"
|
|
7907
7962
|
},
|
|
7908
7963
|
{
|
|
7909
7964
|
"path": "skills/loom-handoff/.loom-runtime/shared/references/harness/status-surface.md",
|
|
7910
7965
|
"bytes": 10227,
|
|
7911
7966
|
"sha256": "96b5f180c525de888b4b9bf29f0d3448fb26726859dc1c81f1de6e2d5b44eca7"
|
|
7912
7967
|
},
|
|
7968
|
+
{
|
|
7969
|
+
"path": "skills/loom-handoff/.loom-runtime/shared/references/harness/structured-event-evidence.md",
|
|
7970
|
+
"bytes": 2690,
|
|
7971
|
+
"sha256": "5fffaf5395f730e5d629a8c8ad11155d89d1a0663486890335d02be371646b66"
|
|
7972
|
+
},
|
|
7913
7973
|
{
|
|
7914
7974
|
"path": "skills/loom-handoff/.loom-runtime/shared/references/harness/work-item-contract.md",
|
|
7915
7975
|
"bytes": 3511,
|
|
@@ -7977,13 +8037,13 @@
|
|
|
7977
8037
|
},
|
|
7978
8038
|
{
|
|
7979
8039
|
"path": "skills/loom-handoff/.loom-runtime/shared/scripts/loom_check.py",
|
|
7980
|
-
"bytes":
|
|
7981
|
-
"sha256": "
|
|
8040
|
+
"bytes": 518004,
|
|
8041
|
+
"sha256": "e2a0d80f3b095780cf8a17a4fff5c61287ef2bfe737345b48016a54245d31de8"
|
|
7982
8042
|
},
|
|
7983
8043
|
{
|
|
7984
8044
|
"path": "skills/loom-handoff/.loom-runtime/shared/scripts/loom_flow.py",
|
|
7985
|
-
"bytes":
|
|
7986
|
-
"sha256": "
|
|
8045
|
+
"bytes": 419479,
|
|
8046
|
+
"sha256": "08035cff99ba0ba1875653344e60801148bde1c2c99ebff0e1d0eed7a57696d2"
|
|
7987
8047
|
},
|
|
7988
8048
|
{
|
|
7989
8049
|
"path": "skills/loom-handoff/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -8527,8 +8587,8 @@
|
|
|
8527
8587
|
},
|
|
8528
8588
|
{
|
|
8529
8589
|
"path": "skills/loom-init/.loom-runtime/shared/references/harness/host-action-contract.md",
|
|
8530
|
-
"bytes":
|
|
8531
|
-
"sha256": "
|
|
8590
|
+
"bytes": 10102,
|
|
8591
|
+
"sha256": "9eb4182bd8a544de1f0fe58ba98bd80247759a1938ca57516430f89f384c850d"
|
|
8532
8592
|
},
|
|
8533
8593
|
{
|
|
8534
8594
|
"path": "skills/loom-init/.loom-runtime/shared/references/harness/host-api-budget.md",
|
|
@@ -8577,8 +8637,8 @@
|
|
|
8577
8637
|
},
|
|
8578
8638
|
{
|
|
8579
8639
|
"path": "skills/loom-init/.loom-runtime/shared/references/harness/review-execution.md",
|
|
8580
|
-
"bytes":
|
|
8581
|
-
"sha256": "
|
|
8640
|
+
"bytes": 8176,
|
|
8641
|
+
"sha256": "4890fc04cb55b035af441505c7fa89a2148355f284c5d9416ed6c9fb948f352f"
|
|
8582
8642
|
},
|
|
8583
8643
|
{
|
|
8584
8644
|
"path": "skills/loom-init/.loom-runtime/shared/references/harness/runtime-state.md",
|
|
@@ -8587,14 +8647,19 @@
|
|
|
8587
8647
|
},
|
|
8588
8648
|
{
|
|
8589
8649
|
"path": "skills/loom-init/.loom-runtime/shared/references/harness/status-surface-contract.md",
|
|
8590
|
-
"bytes":
|
|
8591
|
-
"sha256": "
|
|
8650
|
+
"bytes": 6658,
|
|
8651
|
+
"sha256": "dbb015ae66596a707c220e352df1052e6044a9d8c703943816f3e8dad1e74d61"
|
|
8592
8652
|
},
|
|
8593
8653
|
{
|
|
8594
8654
|
"path": "skills/loom-init/.loom-runtime/shared/references/harness/status-surface.md",
|
|
8595
8655
|
"bytes": 10227,
|
|
8596
8656
|
"sha256": "96b5f180c525de888b4b9bf29f0d3448fb26726859dc1c81f1de6e2d5b44eca7"
|
|
8597
8657
|
},
|
|
8658
|
+
{
|
|
8659
|
+
"path": "skills/loom-init/.loom-runtime/shared/references/harness/structured-event-evidence.md",
|
|
8660
|
+
"bytes": 2690,
|
|
8661
|
+
"sha256": "5fffaf5395f730e5d629a8c8ad11155d89d1a0663486890335d02be371646b66"
|
|
8662
|
+
},
|
|
8598
8663
|
{
|
|
8599
8664
|
"path": "skills/loom-init/.loom-runtime/shared/references/harness/work-item-contract.md",
|
|
8600
8665
|
"bytes": 3511,
|
|
@@ -8662,13 +8727,13 @@
|
|
|
8662
8727
|
},
|
|
8663
8728
|
{
|
|
8664
8729
|
"path": "skills/loom-init/.loom-runtime/shared/scripts/loom_check.py",
|
|
8665
|
-
"bytes":
|
|
8666
|
-
"sha256": "
|
|
8730
|
+
"bytes": 518004,
|
|
8731
|
+
"sha256": "e2a0d80f3b095780cf8a17a4fff5c61287ef2bfe737345b48016a54245d31de8"
|
|
8667
8732
|
},
|
|
8668
8733
|
{
|
|
8669
8734
|
"path": "skills/loom-init/.loom-runtime/shared/scripts/loom_flow.py",
|
|
8670
|
-
"bytes":
|
|
8671
|
-
"sha256": "
|
|
8735
|
+
"bytes": 419479,
|
|
8736
|
+
"sha256": "08035cff99ba0ba1875653344e60801148bde1c2c99ebff0e1d0eed7a57696d2"
|
|
8672
8737
|
},
|
|
8673
8738
|
{
|
|
8674
8739
|
"path": "skills/loom-init/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -9217,8 +9282,8 @@
|
|
|
9217
9282
|
},
|
|
9218
9283
|
{
|
|
9219
9284
|
"path": "skills/loom-merge-ready/.loom-runtime/shared/references/harness/host-action-contract.md",
|
|
9220
|
-
"bytes":
|
|
9221
|
-
"sha256": "
|
|
9285
|
+
"bytes": 10102,
|
|
9286
|
+
"sha256": "9eb4182bd8a544de1f0fe58ba98bd80247759a1938ca57516430f89f384c850d"
|
|
9222
9287
|
},
|
|
9223
9288
|
{
|
|
9224
9289
|
"path": "skills/loom-merge-ready/.loom-runtime/shared/references/harness/host-api-budget.md",
|
|
@@ -9267,8 +9332,8 @@
|
|
|
9267
9332
|
},
|
|
9268
9333
|
{
|
|
9269
9334
|
"path": "skills/loom-merge-ready/.loom-runtime/shared/references/harness/review-execution.md",
|
|
9270
|
-
"bytes":
|
|
9271
|
-
"sha256": "
|
|
9335
|
+
"bytes": 8176,
|
|
9336
|
+
"sha256": "4890fc04cb55b035af441505c7fa89a2148355f284c5d9416ed6c9fb948f352f"
|
|
9272
9337
|
},
|
|
9273
9338
|
{
|
|
9274
9339
|
"path": "skills/loom-merge-ready/.loom-runtime/shared/references/harness/runtime-state.md",
|
|
@@ -9277,14 +9342,19 @@
|
|
|
9277
9342
|
},
|
|
9278
9343
|
{
|
|
9279
9344
|
"path": "skills/loom-merge-ready/.loom-runtime/shared/references/harness/status-surface-contract.md",
|
|
9280
|
-
"bytes":
|
|
9281
|
-
"sha256": "
|
|
9345
|
+
"bytes": 6658,
|
|
9346
|
+
"sha256": "dbb015ae66596a707c220e352df1052e6044a9d8c703943816f3e8dad1e74d61"
|
|
9282
9347
|
},
|
|
9283
9348
|
{
|
|
9284
9349
|
"path": "skills/loom-merge-ready/.loom-runtime/shared/references/harness/status-surface.md",
|
|
9285
9350
|
"bytes": 10227,
|
|
9286
9351
|
"sha256": "96b5f180c525de888b4b9bf29f0d3448fb26726859dc1c81f1de6e2d5b44eca7"
|
|
9287
9352
|
},
|
|
9353
|
+
{
|
|
9354
|
+
"path": "skills/loom-merge-ready/.loom-runtime/shared/references/harness/structured-event-evidence.md",
|
|
9355
|
+
"bytes": 2690,
|
|
9356
|
+
"sha256": "5fffaf5395f730e5d629a8c8ad11155d89d1a0663486890335d02be371646b66"
|
|
9357
|
+
},
|
|
9288
9358
|
{
|
|
9289
9359
|
"path": "skills/loom-merge-ready/.loom-runtime/shared/references/harness/work-item-contract.md",
|
|
9290
9360
|
"bytes": 3511,
|
|
@@ -9352,13 +9422,13 @@
|
|
|
9352
9422
|
},
|
|
9353
9423
|
{
|
|
9354
9424
|
"path": "skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_check.py",
|
|
9355
|
-
"bytes":
|
|
9356
|
-
"sha256": "
|
|
9425
|
+
"bytes": 518004,
|
|
9426
|
+
"sha256": "e2a0d80f3b095780cf8a17a4fff5c61287ef2bfe737345b48016a54245d31de8"
|
|
9357
9427
|
},
|
|
9358
9428
|
{
|
|
9359
9429
|
"path": "skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_flow.py",
|
|
9360
|
-
"bytes":
|
|
9361
|
-
"sha256": "
|
|
9430
|
+
"bytes": 419479,
|
|
9431
|
+
"sha256": "08035cff99ba0ba1875653344e60801148bde1c2c99ebff0e1d0eed7a57696d2"
|
|
9362
9432
|
},
|
|
9363
9433
|
{
|
|
9364
9434
|
"path": "skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -9902,8 +9972,8 @@
|
|
|
9902
9972
|
},
|
|
9903
9973
|
{
|
|
9904
9974
|
"path": "skills/loom-pre-review/.loom-runtime/shared/references/harness/host-action-contract.md",
|
|
9905
|
-
"bytes":
|
|
9906
|
-
"sha256": "
|
|
9975
|
+
"bytes": 10102,
|
|
9976
|
+
"sha256": "9eb4182bd8a544de1f0fe58ba98bd80247759a1938ca57516430f89f384c850d"
|
|
9907
9977
|
},
|
|
9908
9978
|
{
|
|
9909
9979
|
"path": "skills/loom-pre-review/.loom-runtime/shared/references/harness/host-api-budget.md",
|
|
@@ -9952,8 +10022,8 @@
|
|
|
9952
10022
|
},
|
|
9953
10023
|
{
|
|
9954
10024
|
"path": "skills/loom-pre-review/.loom-runtime/shared/references/harness/review-execution.md",
|
|
9955
|
-
"bytes":
|
|
9956
|
-
"sha256": "
|
|
10025
|
+
"bytes": 8176,
|
|
10026
|
+
"sha256": "4890fc04cb55b035af441505c7fa89a2148355f284c5d9416ed6c9fb948f352f"
|
|
9957
10027
|
},
|
|
9958
10028
|
{
|
|
9959
10029
|
"path": "skills/loom-pre-review/.loom-runtime/shared/references/harness/runtime-state.md",
|
|
@@ -9962,14 +10032,19 @@
|
|
|
9962
10032
|
},
|
|
9963
10033
|
{
|
|
9964
10034
|
"path": "skills/loom-pre-review/.loom-runtime/shared/references/harness/status-surface-contract.md",
|
|
9965
|
-
"bytes":
|
|
9966
|
-
"sha256": "
|
|
10035
|
+
"bytes": 6658,
|
|
10036
|
+
"sha256": "dbb015ae66596a707c220e352df1052e6044a9d8c703943816f3e8dad1e74d61"
|
|
9967
10037
|
},
|
|
9968
10038
|
{
|
|
9969
10039
|
"path": "skills/loom-pre-review/.loom-runtime/shared/references/harness/status-surface.md",
|
|
9970
10040
|
"bytes": 10227,
|
|
9971
10041
|
"sha256": "96b5f180c525de888b4b9bf29f0d3448fb26726859dc1c81f1de6e2d5b44eca7"
|
|
9972
10042
|
},
|
|
10043
|
+
{
|
|
10044
|
+
"path": "skills/loom-pre-review/.loom-runtime/shared/references/harness/structured-event-evidence.md",
|
|
10045
|
+
"bytes": 2690,
|
|
10046
|
+
"sha256": "5fffaf5395f730e5d629a8c8ad11155d89d1a0663486890335d02be371646b66"
|
|
10047
|
+
},
|
|
9973
10048
|
{
|
|
9974
10049
|
"path": "skills/loom-pre-review/.loom-runtime/shared/references/harness/work-item-contract.md",
|
|
9975
10050
|
"bytes": 3511,
|
|
@@ -10037,13 +10112,13 @@
|
|
|
10037
10112
|
},
|
|
10038
10113
|
{
|
|
10039
10114
|
"path": "skills/loom-pre-review/.loom-runtime/shared/scripts/loom_check.py",
|
|
10040
|
-
"bytes":
|
|
10041
|
-
"sha256": "
|
|
10115
|
+
"bytes": 518004,
|
|
10116
|
+
"sha256": "e2a0d80f3b095780cf8a17a4fff5c61287ef2bfe737345b48016a54245d31de8"
|
|
10042
10117
|
},
|
|
10043
10118
|
{
|
|
10044
10119
|
"path": "skills/loom-pre-review/.loom-runtime/shared/scripts/loom_flow.py",
|
|
10045
|
-
"bytes":
|
|
10046
|
-
"sha256": "
|
|
10120
|
+
"bytes": 419479,
|
|
10121
|
+
"sha256": "08035cff99ba0ba1875653344e60801148bde1c2c99ebff0e1d0eed7a57696d2"
|
|
10047
10122
|
},
|
|
10048
10123
|
{
|
|
10049
10124
|
"path": "skills/loom-pre-review/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -10587,8 +10662,8 @@
|
|
|
10587
10662
|
},
|
|
10588
10663
|
{
|
|
10589
10664
|
"path": "skills/loom-resume/.loom-runtime/shared/references/harness/host-action-contract.md",
|
|
10590
|
-
"bytes":
|
|
10591
|
-
"sha256": "
|
|
10665
|
+
"bytes": 10102,
|
|
10666
|
+
"sha256": "9eb4182bd8a544de1f0fe58ba98bd80247759a1938ca57516430f89f384c850d"
|
|
10592
10667
|
},
|
|
10593
10668
|
{
|
|
10594
10669
|
"path": "skills/loom-resume/.loom-runtime/shared/references/harness/host-api-budget.md",
|
|
@@ -10637,8 +10712,8 @@
|
|
|
10637
10712
|
},
|
|
10638
10713
|
{
|
|
10639
10714
|
"path": "skills/loom-resume/.loom-runtime/shared/references/harness/review-execution.md",
|
|
10640
|
-
"bytes":
|
|
10641
|
-
"sha256": "
|
|
10715
|
+
"bytes": 8176,
|
|
10716
|
+
"sha256": "4890fc04cb55b035af441505c7fa89a2148355f284c5d9416ed6c9fb948f352f"
|
|
10642
10717
|
},
|
|
10643
10718
|
{
|
|
10644
10719
|
"path": "skills/loom-resume/.loom-runtime/shared/references/harness/runtime-state.md",
|
|
@@ -10647,14 +10722,19 @@
|
|
|
10647
10722
|
},
|
|
10648
10723
|
{
|
|
10649
10724
|
"path": "skills/loom-resume/.loom-runtime/shared/references/harness/status-surface-contract.md",
|
|
10650
|
-
"bytes":
|
|
10651
|
-
"sha256": "
|
|
10725
|
+
"bytes": 6658,
|
|
10726
|
+
"sha256": "dbb015ae66596a707c220e352df1052e6044a9d8c703943816f3e8dad1e74d61"
|
|
10652
10727
|
},
|
|
10653
10728
|
{
|
|
10654
10729
|
"path": "skills/loom-resume/.loom-runtime/shared/references/harness/status-surface.md",
|
|
10655
10730
|
"bytes": 10227,
|
|
10656
10731
|
"sha256": "96b5f180c525de888b4b9bf29f0d3448fb26726859dc1c81f1de6e2d5b44eca7"
|
|
10657
10732
|
},
|
|
10733
|
+
{
|
|
10734
|
+
"path": "skills/loom-resume/.loom-runtime/shared/references/harness/structured-event-evidence.md",
|
|
10735
|
+
"bytes": 2690,
|
|
10736
|
+
"sha256": "5fffaf5395f730e5d629a8c8ad11155d89d1a0663486890335d02be371646b66"
|
|
10737
|
+
},
|
|
10658
10738
|
{
|
|
10659
10739
|
"path": "skills/loom-resume/.loom-runtime/shared/references/harness/work-item-contract.md",
|
|
10660
10740
|
"bytes": 3511,
|
|
@@ -10722,13 +10802,13 @@
|
|
|
10722
10802
|
},
|
|
10723
10803
|
{
|
|
10724
10804
|
"path": "skills/loom-resume/.loom-runtime/shared/scripts/loom_check.py",
|
|
10725
|
-
"bytes":
|
|
10726
|
-
"sha256": "
|
|
10805
|
+
"bytes": 518004,
|
|
10806
|
+
"sha256": "e2a0d80f3b095780cf8a17a4fff5c61287ef2bfe737345b48016a54245d31de8"
|
|
10727
10807
|
},
|
|
10728
10808
|
{
|
|
10729
10809
|
"path": "skills/loom-resume/.loom-runtime/shared/scripts/loom_flow.py",
|
|
10730
|
-
"bytes":
|
|
10731
|
-
"sha256": "
|
|
10810
|
+
"bytes": 419479,
|
|
10811
|
+
"sha256": "08035cff99ba0ba1875653344e60801148bde1c2c99ebff0e1d0eed7a57696d2"
|
|
10732
10812
|
},
|
|
10733
10813
|
{
|
|
10734
10814
|
"path": "skills/loom-resume/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -11272,8 +11352,8 @@
|
|
|
11272
11352
|
},
|
|
11273
11353
|
{
|
|
11274
11354
|
"path": "skills/loom-retire/.loom-runtime/shared/references/harness/host-action-contract.md",
|
|
11275
|
-
"bytes":
|
|
11276
|
-
"sha256": "
|
|
11355
|
+
"bytes": 10102,
|
|
11356
|
+
"sha256": "9eb4182bd8a544de1f0fe58ba98bd80247759a1938ca57516430f89f384c850d"
|
|
11277
11357
|
},
|
|
11278
11358
|
{
|
|
11279
11359
|
"path": "skills/loom-retire/.loom-runtime/shared/references/harness/host-api-budget.md",
|
|
@@ -11322,8 +11402,8 @@
|
|
|
11322
11402
|
},
|
|
11323
11403
|
{
|
|
11324
11404
|
"path": "skills/loom-retire/.loom-runtime/shared/references/harness/review-execution.md",
|
|
11325
|
-
"bytes":
|
|
11326
|
-
"sha256": "
|
|
11405
|
+
"bytes": 8176,
|
|
11406
|
+
"sha256": "4890fc04cb55b035af441505c7fa89a2148355f284c5d9416ed6c9fb948f352f"
|
|
11327
11407
|
},
|
|
11328
11408
|
{
|
|
11329
11409
|
"path": "skills/loom-retire/.loom-runtime/shared/references/harness/runtime-state.md",
|
|
@@ -11332,14 +11412,19 @@
|
|
|
11332
11412
|
},
|
|
11333
11413
|
{
|
|
11334
11414
|
"path": "skills/loom-retire/.loom-runtime/shared/references/harness/status-surface-contract.md",
|
|
11335
|
-
"bytes":
|
|
11336
|
-
"sha256": "
|
|
11415
|
+
"bytes": 6658,
|
|
11416
|
+
"sha256": "dbb015ae66596a707c220e352df1052e6044a9d8c703943816f3e8dad1e74d61"
|
|
11337
11417
|
},
|
|
11338
11418
|
{
|
|
11339
11419
|
"path": "skills/loom-retire/.loom-runtime/shared/references/harness/status-surface.md",
|
|
11340
11420
|
"bytes": 10227,
|
|
11341
11421
|
"sha256": "96b5f180c525de888b4b9bf29f0d3448fb26726859dc1c81f1de6e2d5b44eca7"
|
|
11342
11422
|
},
|
|
11423
|
+
{
|
|
11424
|
+
"path": "skills/loom-retire/.loom-runtime/shared/references/harness/structured-event-evidence.md",
|
|
11425
|
+
"bytes": 2690,
|
|
11426
|
+
"sha256": "5fffaf5395f730e5d629a8c8ad11155d89d1a0663486890335d02be371646b66"
|
|
11427
|
+
},
|
|
11343
11428
|
{
|
|
11344
11429
|
"path": "skills/loom-retire/.loom-runtime/shared/references/harness/work-item-contract.md",
|
|
11345
11430
|
"bytes": 3511,
|
|
@@ -11407,13 +11492,13 @@
|
|
|
11407
11492
|
},
|
|
11408
11493
|
{
|
|
11409
11494
|
"path": "skills/loom-retire/.loom-runtime/shared/scripts/loom_check.py",
|
|
11410
|
-
"bytes":
|
|
11411
|
-
"sha256": "
|
|
11495
|
+
"bytes": 518004,
|
|
11496
|
+
"sha256": "e2a0d80f3b095780cf8a17a4fff5c61287ef2bfe737345b48016a54245d31de8"
|
|
11412
11497
|
},
|
|
11413
11498
|
{
|
|
11414
11499
|
"path": "skills/loom-retire/.loom-runtime/shared/scripts/loom_flow.py",
|
|
11415
|
-
"bytes":
|
|
11416
|
-
"sha256": "
|
|
11500
|
+
"bytes": 419479,
|
|
11501
|
+
"sha256": "08035cff99ba0ba1875653344e60801148bde1c2c99ebff0e1d0eed7a57696d2"
|
|
11417
11502
|
},
|
|
11418
11503
|
{
|
|
11419
11504
|
"path": "skills/loom-retire/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -11957,8 +12042,8 @@
|
|
|
11957
12042
|
},
|
|
11958
12043
|
{
|
|
11959
12044
|
"path": "skills/loom-review/.loom-runtime/shared/references/harness/host-action-contract.md",
|
|
11960
|
-
"bytes":
|
|
11961
|
-
"sha256": "
|
|
12045
|
+
"bytes": 10102,
|
|
12046
|
+
"sha256": "9eb4182bd8a544de1f0fe58ba98bd80247759a1938ca57516430f89f384c850d"
|
|
11962
12047
|
},
|
|
11963
12048
|
{
|
|
11964
12049
|
"path": "skills/loom-review/.loom-runtime/shared/references/harness/host-api-budget.md",
|
|
@@ -12007,8 +12092,8 @@
|
|
|
12007
12092
|
},
|
|
12008
12093
|
{
|
|
12009
12094
|
"path": "skills/loom-review/.loom-runtime/shared/references/harness/review-execution.md",
|
|
12010
|
-
"bytes":
|
|
12011
|
-
"sha256": "
|
|
12095
|
+
"bytes": 8176,
|
|
12096
|
+
"sha256": "4890fc04cb55b035af441505c7fa89a2148355f284c5d9416ed6c9fb948f352f"
|
|
12012
12097
|
},
|
|
12013
12098
|
{
|
|
12014
12099
|
"path": "skills/loom-review/.loom-runtime/shared/references/harness/runtime-state.md",
|
|
@@ -12017,14 +12102,19 @@
|
|
|
12017
12102
|
},
|
|
12018
12103
|
{
|
|
12019
12104
|
"path": "skills/loom-review/.loom-runtime/shared/references/harness/status-surface-contract.md",
|
|
12020
|
-
"bytes":
|
|
12021
|
-
"sha256": "
|
|
12105
|
+
"bytes": 6658,
|
|
12106
|
+
"sha256": "dbb015ae66596a707c220e352df1052e6044a9d8c703943816f3e8dad1e74d61"
|
|
12022
12107
|
},
|
|
12023
12108
|
{
|
|
12024
12109
|
"path": "skills/loom-review/.loom-runtime/shared/references/harness/status-surface.md",
|
|
12025
12110
|
"bytes": 10227,
|
|
12026
12111
|
"sha256": "96b5f180c525de888b4b9bf29f0d3448fb26726859dc1c81f1de6e2d5b44eca7"
|
|
12027
12112
|
},
|
|
12113
|
+
{
|
|
12114
|
+
"path": "skills/loom-review/.loom-runtime/shared/references/harness/structured-event-evidence.md",
|
|
12115
|
+
"bytes": 2690,
|
|
12116
|
+
"sha256": "5fffaf5395f730e5d629a8c8ad11155d89d1a0663486890335d02be371646b66"
|
|
12117
|
+
},
|
|
12028
12118
|
{
|
|
12029
12119
|
"path": "skills/loom-review/.loom-runtime/shared/references/harness/work-item-contract.md",
|
|
12030
12120
|
"bytes": 3511,
|
|
@@ -12092,13 +12182,13 @@
|
|
|
12092
12182
|
},
|
|
12093
12183
|
{
|
|
12094
12184
|
"path": "skills/loom-review/.loom-runtime/shared/scripts/loom_check.py",
|
|
12095
|
-
"bytes":
|
|
12096
|
-
"sha256": "
|
|
12185
|
+
"bytes": 518004,
|
|
12186
|
+
"sha256": "e2a0d80f3b095780cf8a17a4fff5c61287ef2bfe737345b48016a54245d31de8"
|
|
12097
12187
|
},
|
|
12098
12188
|
{
|
|
12099
12189
|
"path": "skills/loom-review/.loom-runtime/shared/scripts/loom_flow.py",
|
|
12100
|
-
"bytes":
|
|
12101
|
-
"sha256": "
|
|
12190
|
+
"bytes": 419479,
|
|
12191
|
+
"sha256": "08035cff99ba0ba1875653344e60801148bde1c2c99ebff0e1d0eed7a57696d2"
|
|
12102
12192
|
},
|
|
12103
12193
|
{
|
|
12104
12194
|
"path": "skills/loom-review/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -12642,8 +12732,8 @@
|
|
|
12642
12732
|
},
|
|
12643
12733
|
{
|
|
12644
12734
|
"path": "skills/loom-spec-review/.loom-runtime/shared/references/harness/host-action-contract.md",
|
|
12645
|
-
"bytes":
|
|
12646
|
-
"sha256": "
|
|
12735
|
+
"bytes": 10102,
|
|
12736
|
+
"sha256": "9eb4182bd8a544de1f0fe58ba98bd80247759a1938ca57516430f89f384c850d"
|
|
12647
12737
|
},
|
|
12648
12738
|
{
|
|
12649
12739
|
"path": "skills/loom-spec-review/.loom-runtime/shared/references/harness/host-api-budget.md",
|
|
@@ -12692,8 +12782,8 @@
|
|
|
12692
12782
|
},
|
|
12693
12783
|
{
|
|
12694
12784
|
"path": "skills/loom-spec-review/.loom-runtime/shared/references/harness/review-execution.md",
|
|
12695
|
-
"bytes":
|
|
12696
|
-
"sha256": "
|
|
12785
|
+
"bytes": 8176,
|
|
12786
|
+
"sha256": "4890fc04cb55b035af441505c7fa89a2148355f284c5d9416ed6c9fb948f352f"
|
|
12697
12787
|
},
|
|
12698
12788
|
{
|
|
12699
12789
|
"path": "skills/loom-spec-review/.loom-runtime/shared/references/harness/runtime-state.md",
|
|
@@ -12702,14 +12792,19 @@
|
|
|
12702
12792
|
},
|
|
12703
12793
|
{
|
|
12704
12794
|
"path": "skills/loom-spec-review/.loom-runtime/shared/references/harness/status-surface-contract.md",
|
|
12705
|
-
"bytes":
|
|
12706
|
-
"sha256": "
|
|
12795
|
+
"bytes": 6658,
|
|
12796
|
+
"sha256": "dbb015ae66596a707c220e352df1052e6044a9d8c703943816f3e8dad1e74d61"
|
|
12707
12797
|
},
|
|
12708
12798
|
{
|
|
12709
12799
|
"path": "skills/loom-spec-review/.loom-runtime/shared/references/harness/status-surface.md",
|
|
12710
12800
|
"bytes": 10227,
|
|
12711
12801
|
"sha256": "96b5f180c525de888b4b9bf29f0d3448fb26726859dc1c81f1de6e2d5b44eca7"
|
|
12712
12802
|
},
|
|
12803
|
+
{
|
|
12804
|
+
"path": "skills/loom-spec-review/.loom-runtime/shared/references/harness/structured-event-evidence.md",
|
|
12805
|
+
"bytes": 2690,
|
|
12806
|
+
"sha256": "5fffaf5395f730e5d629a8c8ad11155d89d1a0663486890335d02be371646b66"
|
|
12807
|
+
},
|
|
12713
12808
|
{
|
|
12714
12809
|
"path": "skills/loom-spec-review/.loom-runtime/shared/references/harness/work-item-contract.md",
|
|
12715
12810
|
"bytes": 3511,
|
|
@@ -12777,13 +12872,13 @@
|
|
|
12777
12872
|
},
|
|
12778
12873
|
{
|
|
12779
12874
|
"path": "skills/loom-spec-review/.loom-runtime/shared/scripts/loom_check.py",
|
|
12780
|
-
"bytes":
|
|
12781
|
-
"sha256": "
|
|
12875
|
+
"bytes": 518004,
|
|
12876
|
+
"sha256": "e2a0d80f3b095780cf8a17a4fff5c61287ef2bfe737345b48016a54245d31de8"
|
|
12782
12877
|
},
|
|
12783
12878
|
{
|
|
12784
12879
|
"path": "skills/loom-spec-review/.loom-runtime/shared/scripts/loom_flow.py",
|
|
12785
|
-
"bytes":
|
|
12786
|
-
"sha256": "
|
|
12880
|
+
"bytes": 419479,
|
|
12881
|
+
"sha256": "08035cff99ba0ba1875653344e60801148bde1c2c99ebff0e1d0eed7a57696d2"
|
|
12787
12882
|
},
|
|
12788
12883
|
{
|
|
12789
12884
|
"path": "skills/loom-spec-review/.loom-runtime/shared/scripts/loom_init.py",
|