@mc-and-his-agents/loom-installer 0.1.96 → 0.1.97
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 +141 -141
- package/payload/plugin/loom/skills/loom-adopt/.loom-runtime/shared/scripts/governance_surface.py +66 -0
- package/payload/plugin/loom/skills/loom-adopt/.loom-runtime/shared/scripts/loom_check.py +237 -0
- package/payload/plugin/loom/skills/loom-adopt/.loom-runtime/shared/scripts/loom_flow.py +67 -0
- package/payload/plugin/loom/skills/loom-build/.loom-runtime/shared/scripts/governance_surface.py +66 -0
- package/payload/plugin/loom/skills/loom-build/.loom-runtime/shared/scripts/loom_check.py +237 -0
- package/payload/plugin/loom/skills/loom-build/.loom-runtime/shared/scripts/loom_flow.py +67 -0
- package/payload/plugin/loom/skills/loom-handoff/.loom-runtime/shared/scripts/governance_surface.py +66 -0
- package/payload/plugin/loom/skills/loom-handoff/.loom-runtime/shared/scripts/loom_check.py +237 -0
- package/payload/plugin/loom/skills/loom-handoff/.loom-runtime/shared/scripts/loom_flow.py +67 -0
- package/payload/plugin/loom/skills/loom-init/.loom-runtime/shared/scripts/governance_surface.py +66 -0
- package/payload/plugin/loom/skills/loom-init/.loom-runtime/shared/scripts/loom_check.py +237 -0
- package/payload/plugin/loom/skills/loom-init/.loom-runtime/shared/scripts/loom_flow.py +67 -0
- package/payload/plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/scripts/governance_surface.py +66 -0
- package/payload/plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_check.py +237 -0
- package/payload/plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_flow.py +67 -0
- package/payload/plugin/loom/skills/loom-pre-review/.loom-runtime/shared/scripts/governance_surface.py +66 -0
- package/payload/plugin/loom/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_check.py +237 -0
- package/payload/plugin/loom/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_flow.py +67 -0
- package/payload/plugin/loom/skills/loom-resume/.loom-runtime/shared/scripts/governance_surface.py +66 -0
- package/payload/plugin/loom/skills/loom-resume/.loom-runtime/shared/scripts/loom_check.py +237 -0
- package/payload/plugin/loom/skills/loom-resume/.loom-runtime/shared/scripts/loom_flow.py +67 -0
- package/payload/plugin/loom/skills/loom-retire/.loom-runtime/shared/scripts/governance_surface.py +66 -0
- package/payload/plugin/loom/skills/loom-retire/.loom-runtime/shared/scripts/loom_check.py +237 -0
- package/payload/plugin/loom/skills/loom-retire/.loom-runtime/shared/scripts/loom_flow.py +67 -0
- package/payload/plugin/loom/skills/loom-review/.loom-runtime/shared/scripts/governance_surface.py +66 -0
- package/payload/plugin/loom/skills/loom-review/.loom-runtime/shared/scripts/loom_check.py +237 -0
- package/payload/plugin/loom/skills/loom-review/.loom-runtime/shared/scripts/loom_flow.py +67 -0
- package/payload/plugin/loom/skills/loom-spec-review/.loom-runtime/shared/scripts/governance_surface.py +66 -0
- package/payload/plugin/loom/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_check.py +237 -0
- package/payload/plugin/loom/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_flow.py +67 -0
- package/payload/plugin/loom/skills/loom-story/.loom-runtime/shared/scripts/governance_surface.py +66 -0
- package/payload/plugin/loom/skills/loom-story/.loom-runtime/shared/scripts/loom_check.py +237 -0
- package/payload/plugin/loom/skills/loom-story/.loom-runtime/shared/scripts/loom_flow.py +67 -0
- package/payload/plugin/loom/skills/shared/scripts/governance_surface.py +66 -0
- package/payload/plugin/loom/skills/shared/scripts/loom_check.py +237 -0
- package/payload/plugin/loom/skills/shared/scripts/loom_flow.py +67 -0
- package/payload/skills/loom-adopt/.loom-runtime/shared/scripts/governance_surface.py +66 -0
- package/payload/skills/loom-adopt/.loom-runtime/shared/scripts/loom_check.py +237 -0
- package/payload/skills/loom-adopt/.loom-runtime/shared/scripts/loom_flow.py +67 -0
- package/payload/skills/loom-build/.loom-runtime/shared/scripts/governance_surface.py +66 -0
- package/payload/skills/loom-build/.loom-runtime/shared/scripts/loom_check.py +237 -0
- package/payload/skills/loom-build/.loom-runtime/shared/scripts/loom_flow.py +67 -0
- package/payload/skills/loom-handoff/.loom-runtime/shared/scripts/governance_surface.py +66 -0
- package/payload/skills/loom-handoff/.loom-runtime/shared/scripts/loom_check.py +237 -0
- package/payload/skills/loom-handoff/.loom-runtime/shared/scripts/loom_flow.py +67 -0
- package/payload/skills/loom-init/.loom-runtime/shared/scripts/governance_surface.py +66 -0
- package/payload/skills/loom-init/.loom-runtime/shared/scripts/loom_check.py +237 -0
- package/payload/skills/loom-init/.loom-runtime/shared/scripts/loom_flow.py +67 -0
- package/payload/skills/loom-merge-ready/.loom-runtime/shared/scripts/governance_surface.py +66 -0
- package/payload/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_check.py +237 -0
- package/payload/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_flow.py +67 -0
- package/payload/skills/loom-pre-review/.loom-runtime/shared/scripts/governance_surface.py +66 -0
- package/payload/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_check.py +237 -0
- package/payload/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_flow.py +67 -0
- package/payload/skills/loom-resume/.loom-runtime/shared/scripts/governance_surface.py +66 -0
- package/payload/skills/loom-resume/.loom-runtime/shared/scripts/loom_check.py +237 -0
- package/payload/skills/loom-resume/.loom-runtime/shared/scripts/loom_flow.py +67 -0
- package/payload/skills/loom-retire/.loom-runtime/shared/scripts/governance_surface.py +66 -0
- package/payload/skills/loom-retire/.loom-runtime/shared/scripts/loom_check.py +237 -0
- package/payload/skills/loom-retire/.loom-runtime/shared/scripts/loom_flow.py +67 -0
- package/payload/skills/loom-review/.loom-runtime/shared/scripts/governance_surface.py +66 -0
- package/payload/skills/loom-review/.loom-runtime/shared/scripts/loom_check.py +237 -0
- package/payload/skills/loom-review/.loom-runtime/shared/scripts/loom_flow.py +67 -0
- package/payload/skills/loom-spec-review/.loom-runtime/shared/scripts/governance_surface.py +66 -0
- package/payload/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_check.py +237 -0
- package/payload/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_flow.py +67 -0
- package/payload/skills/loom-story/.loom-runtime/shared/scripts/governance_surface.py +66 -0
- package/payload/skills/loom-story/.loom-runtime/shared/scripts/loom_check.py +237 -0
- package/payload/skills/loom-story/.loom-runtime/shared/scripts/loom_flow.py +67 -0
package/package.json
CHANGED
package/payload/manifest.json
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
"schema_version": "loom-installer-payload/v1",
|
|
3
3
|
"loom_version": "v0.10.0",
|
|
4
4
|
"source_repository": "https://github.com/MC-and-his-Agents/Loom",
|
|
5
|
-
"source_commit": "
|
|
5
|
+
"source_commit": "1c5a764b20492c1e1d3048a39dbcb1f08a3b522a",
|
|
6
6
|
"source_ref": "main",
|
|
7
|
-
"built_at": "2026-05-
|
|
7
|
+
"built_at": "2026-05-13T17:47:38+08:00",
|
|
8
8
|
"version_context": {
|
|
9
9
|
"repo_version": "v0.10.0",
|
|
10
|
-
"installer_package_version": "0.1.
|
|
10
|
+
"installer_package_version": "0.1.97",
|
|
11
11
|
"plugin_surface_version": "0.4.0",
|
|
12
12
|
"host_adapter_version": "1.0.0",
|
|
13
13
|
"skills_registry_version": "1.6.0",
|
|
@@ -879,18 +879,18 @@
|
|
|
879
879
|
},
|
|
880
880
|
{
|
|
881
881
|
"path": "plugin/loom/skills/loom-adopt/.loom-runtime/shared/scripts/governance_surface.py",
|
|
882
|
-
"bytes":
|
|
883
|
-
"sha256": "
|
|
882
|
+
"bytes": 138894,
|
|
883
|
+
"sha256": "8bfc822dac5d7667c630665cb33848632131cb92d4408ea9e46f2786b5b6ff55"
|
|
884
884
|
},
|
|
885
885
|
{
|
|
886
886
|
"path": "plugin/loom/skills/loom-adopt/.loom-runtime/shared/scripts/loom_check.py",
|
|
887
|
-
"bytes":
|
|
888
|
-
"sha256": "
|
|
887
|
+
"bytes": 685161,
|
|
888
|
+
"sha256": "b59e39dea08f8b38addfa5ac17638ae5f58e0d13019638a76a39274b5ca51e5c"
|
|
889
889
|
},
|
|
890
890
|
{
|
|
891
891
|
"path": "plugin/loom/skills/loom-adopt/.loom-runtime/shared/scripts/loom_flow.py",
|
|
892
|
-
"bytes":
|
|
893
|
-
"sha256": "
|
|
892
|
+
"bytes": 553678,
|
|
893
|
+
"sha256": "3cd17e84ecc48b3901e49621abc9e3534ad415a51e75954337c38a2a49366ec7"
|
|
894
894
|
},
|
|
895
895
|
{
|
|
896
896
|
"path": "plugin/loom/skills/loom-adopt/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -1669,18 +1669,18 @@
|
|
|
1669
1669
|
},
|
|
1670
1670
|
{
|
|
1671
1671
|
"path": "plugin/loom/skills/loom-build/.loom-runtime/shared/scripts/governance_surface.py",
|
|
1672
|
-
"bytes":
|
|
1673
|
-
"sha256": "
|
|
1672
|
+
"bytes": 138894,
|
|
1673
|
+
"sha256": "8bfc822dac5d7667c630665cb33848632131cb92d4408ea9e46f2786b5b6ff55"
|
|
1674
1674
|
},
|
|
1675
1675
|
{
|
|
1676
1676
|
"path": "plugin/loom/skills/loom-build/.loom-runtime/shared/scripts/loom_check.py",
|
|
1677
|
-
"bytes":
|
|
1678
|
-
"sha256": "
|
|
1677
|
+
"bytes": 685161,
|
|
1678
|
+
"sha256": "b59e39dea08f8b38addfa5ac17638ae5f58e0d13019638a76a39274b5ca51e5c"
|
|
1679
1679
|
},
|
|
1680
1680
|
{
|
|
1681
1681
|
"path": "plugin/loom/skills/loom-build/.loom-runtime/shared/scripts/loom_flow.py",
|
|
1682
|
-
"bytes":
|
|
1683
|
-
"sha256": "
|
|
1682
|
+
"bytes": 553678,
|
|
1683
|
+
"sha256": "3cd17e84ecc48b3901e49621abc9e3534ad415a51e75954337c38a2a49366ec7"
|
|
1684
1684
|
},
|
|
1685
1685
|
{
|
|
1686
1686
|
"path": "plugin/loom/skills/loom-build/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -2459,18 +2459,18 @@
|
|
|
2459
2459
|
},
|
|
2460
2460
|
{
|
|
2461
2461
|
"path": "plugin/loom/skills/loom-handoff/.loom-runtime/shared/scripts/governance_surface.py",
|
|
2462
|
-
"bytes":
|
|
2463
|
-
"sha256": "
|
|
2462
|
+
"bytes": 138894,
|
|
2463
|
+
"sha256": "8bfc822dac5d7667c630665cb33848632131cb92d4408ea9e46f2786b5b6ff55"
|
|
2464
2464
|
},
|
|
2465
2465
|
{
|
|
2466
2466
|
"path": "plugin/loom/skills/loom-handoff/.loom-runtime/shared/scripts/loom_check.py",
|
|
2467
|
-
"bytes":
|
|
2468
|
-
"sha256": "
|
|
2467
|
+
"bytes": 685161,
|
|
2468
|
+
"sha256": "b59e39dea08f8b38addfa5ac17638ae5f58e0d13019638a76a39274b5ca51e5c"
|
|
2469
2469
|
},
|
|
2470
2470
|
{
|
|
2471
2471
|
"path": "plugin/loom/skills/loom-handoff/.loom-runtime/shared/scripts/loom_flow.py",
|
|
2472
|
-
"bytes":
|
|
2473
|
-
"sha256": "
|
|
2472
|
+
"bytes": 553678,
|
|
2473
|
+
"sha256": "3cd17e84ecc48b3901e49621abc9e3534ad415a51e75954337c38a2a49366ec7"
|
|
2474
2474
|
},
|
|
2475
2475
|
{
|
|
2476
2476
|
"path": "plugin/loom/skills/loom-handoff/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -3249,18 +3249,18 @@
|
|
|
3249
3249
|
},
|
|
3250
3250
|
{
|
|
3251
3251
|
"path": "plugin/loom/skills/loom-init/.loom-runtime/shared/scripts/governance_surface.py",
|
|
3252
|
-
"bytes":
|
|
3253
|
-
"sha256": "
|
|
3252
|
+
"bytes": 138894,
|
|
3253
|
+
"sha256": "8bfc822dac5d7667c630665cb33848632131cb92d4408ea9e46f2786b5b6ff55"
|
|
3254
3254
|
},
|
|
3255
3255
|
{
|
|
3256
3256
|
"path": "plugin/loom/skills/loom-init/.loom-runtime/shared/scripts/loom_check.py",
|
|
3257
|
-
"bytes":
|
|
3258
|
-
"sha256": "
|
|
3257
|
+
"bytes": 685161,
|
|
3258
|
+
"sha256": "b59e39dea08f8b38addfa5ac17638ae5f58e0d13019638a76a39274b5ca51e5c"
|
|
3259
3259
|
},
|
|
3260
3260
|
{
|
|
3261
3261
|
"path": "plugin/loom/skills/loom-init/.loom-runtime/shared/scripts/loom_flow.py",
|
|
3262
|
-
"bytes":
|
|
3263
|
-
"sha256": "
|
|
3262
|
+
"bytes": 553678,
|
|
3263
|
+
"sha256": "3cd17e84ecc48b3901e49621abc9e3534ad415a51e75954337c38a2a49366ec7"
|
|
3264
3264
|
},
|
|
3265
3265
|
{
|
|
3266
3266
|
"path": "plugin/loom/skills/loom-init/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -4044,18 +4044,18 @@
|
|
|
4044
4044
|
},
|
|
4045
4045
|
{
|
|
4046
4046
|
"path": "plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/scripts/governance_surface.py",
|
|
4047
|
-
"bytes":
|
|
4048
|
-
"sha256": "
|
|
4047
|
+
"bytes": 138894,
|
|
4048
|
+
"sha256": "8bfc822dac5d7667c630665cb33848632131cb92d4408ea9e46f2786b5b6ff55"
|
|
4049
4049
|
},
|
|
4050
4050
|
{
|
|
4051
4051
|
"path": "plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_check.py",
|
|
4052
|
-
"bytes":
|
|
4053
|
-
"sha256": "
|
|
4052
|
+
"bytes": 685161,
|
|
4053
|
+
"sha256": "b59e39dea08f8b38addfa5ac17638ae5f58e0d13019638a76a39274b5ca51e5c"
|
|
4054
4054
|
},
|
|
4055
4055
|
{
|
|
4056
4056
|
"path": "plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_flow.py",
|
|
4057
|
-
"bytes":
|
|
4058
|
-
"sha256": "
|
|
4057
|
+
"bytes": 553678,
|
|
4058
|
+
"sha256": "3cd17e84ecc48b3901e49621abc9e3534ad415a51e75954337c38a2a49366ec7"
|
|
4059
4059
|
},
|
|
4060
4060
|
{
|
|
4061
4061
|
"path": "plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -4834,18 +4834,18 @@
|
|
|
4834
4834
|
},
|
|
4835
4835
|
{
|
|
4836
4836
|
"path": "plugin/loom/skills/loom-pre-review/.loom-runtime/shared/scripts/governance_surface.py",
|
|
4837
|
-
"bytes":
|
|
4838
|
-
"sha256": "
|
|
4837
|
+
"bytes": 138894,
|
|
4838
|
+
"sha256": "8bfc822dac5d7667c630665cb33848632131cb92d4408ea9e46f2786b5b6ff55"
|
|
4839
4839
|
},
|
|
4840
4840
|
{
|
|
4841
4841
|
"path": "plugin/loom/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_check.py",
|
|
4842
|
-
"bytes":
|
|
4843
|
-
"sha256": "
|
|
4842
|
+
"bytes": 685161,
|
|
4843
|
+
"sha256": "b59e39dea08f8b38addfa5ac17638ae5f58e0d13019638a76a39274b5ca51e5c"
|
|
4844
4844
|
},
|
|
4845
4845
|
{
|
|
4846
4846
|
"path": "plugin/loom/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_flow.py",
|
|
4847
|
-
"bytes":
|
|
4848
|
-
"sha256": "
|
|
4847
|
+
"bytes": 553678,
|
|
4848
|
+
"sha256": "3cd17e84ecc48b3901e49621abc9e3534ad415a51e75954337c38a2a49366ec7"
|
|
4849
4849
|
},
|
|
4850
4850
|
{
|
|
4851
4851
|
"path": "plugin/loom/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -5624,18 +5624,18 @@
|
|
|
5624
5624
|
},
|
|
5625
5625
|
{
|
|
5626
5626
|
"path": "plugin/loom/skills/loom-resume/.loom-runtime/shared/scripts/governance_surface.py",
|
|
5627
|
-
"bytes":
|
|
5628
|
-
"sha256": "
|
|
5627
|
+
"bytes": 138894,
|
|
5628
|
+
"sha256": "8bfc822dac5d7667c630665cb33848632131cb92d4408ea9e46f2786b5b6ff55"
|
|
5629
5629
|
},
|
|
5630
5630
|
{
|
|
5631
5631
|
"path": "plugin/loom/skills/loom-resume/.loom-runtime/shared/scripts/loom_check.py",
|
|
5632
|
-
"bytes":
|
|
5633
|
-
"sha256": "
|
|
5632
|
+
"bytes": 685161,
|
|
5633
|
+
"sha256": "b59e39dea08f8b38addfa5ac17638ae5f58e0d13019638a76a39274b5ca51e5c"
|
|
5634
5634
|
},
|
|
5635
5635
|
{
|
|
5636
5636
|
"path": "plugin/loom/skills/loom-resume/.loom-runtime/shared/scripts/loom_flow.py",
|
|
5637
|
-
"bytes":
|
|
5638
|
-
"sha256": "
|
|
5637
|
+
"bytes": 553678,
|
|
5638
|
+
"sha256": "3cd17e84ecc48b3901e49621abc9e3534ad415a51e75954337c38a2a49366ec7"
|
|
5639
5639
|
},
|
|
5640
5640
|
{
|
|
5641
5641
|
"path": "plugin/loom/skills/loom-resume/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -6414,18 +6414,18 @@
|
|
|
6414
6414
|
},
|
|
6415
6415
|
{
|
|
6416
6416
|
"path": "plugin/loom/skills/loom-retire/.loom-runtime/shared/scripts/governance_surface.py",
|
|
6417
|
-
"bytes":
|
|
6418
|
-
"sha256": "
|
|
6417
|
+
"bytes": 138894,
|
|
6418
|
+
"sha256": "8bfc822dac5d7667c630665cb33848632131cb92d4408ea9e46f2786b5b6ff55"
|
|
6419
6419
|
},
|
|
6420
6420
|
{
|
|
6421
6421
|
"path": "plugin/loom/skills/loom-retire/.loom-runtime/shared/scripts/loom_check.py",
|
|
6422
|
-
"bytes":
|
|
6423
|
-
"sha256": "
|
|
6422
|
+
"bytes": 685161,
|
|
6423
|
+
"sha256": "b59e39dea08f8b38addfa5ac17638ae5f58e0d13019638a76a39274b5ca51e5c"
|
|
6424
6424
|
},
|
|
6425
6425
|
{
|
|
6426
6426
|
"path": "plugin/loom/skills/loom-retire/.loom-runtime/shared/scripts/loom_flow.py",
|
|
6427
|
-
"bytes":
|
|
6428
|
-
"sha256": "
|
|
6427
|
+
"bytes": 553678,
|
|
6428
|
+
"sha256": "3cd17e84ecc48b3901e49621abc9e3534ad415a51e75954337c38a2a49366ec7"
|
|
6429
6429
|
},
|
|
6430
6430
|
{
|
|
6431
6431
|
"path": "plugin/loom/skills/loom-retire/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -7204,18 +7204,18 @@
|
|
|
7204
7204
|
},
|
|
7205
7205
|
{
|
|
7206
7206
|
"path": "plugin/loom/skills/loom-review/.loom-runtime/shared/scripts/governance_surface.py",
|
|
7207
|
-
"bytes":
|
|
7208
|
-
"sha256": "
|
|
7207
|
+
"bytes": 138894,
|
|
7208
|
+
"sha256": "8bfc822dac5d7667c630665cb33848632131cb92d4408ea9e46f2786b5b6ff55"
|
|
7209
7209
|
},
|
|
7210
7210
|
{
|
|
7211
7211
|
"path": "plugin/loom/skills/loom-review/.loom-runtime/shared/scripts/loom_check.py",
|
|
7212
|
-
"bytes":
|
|
7213
|
-
"sha256": "
|
|
7212
|
+
"bytes": 685161,
|
|
7213
|
+
"sha256": "b59e39dea08f8b38addfa5ac17638ae5f58e0d13019638a76a39274b5ca51e5c"
|
|
7214
7214
|
},
|
|
7215
7215
|
{
|
|
7216
7216
|
"path": "plugin/loom/skills/loom-review/.loom-runtime/shared/scripts/loom_flow.py",
|
|
7217
|
-
"bytes":
|
|
7218
|
-
"sha256": "
|
|
7217
|
+
"bytes": 553678,
|
|
7218
|
+
"sha256": "3cd17e84ecc48b3901e49621abc9e3534ad415a51e75954337c38a2a49366ec7"
|
|
7219
7219
|
},
|
|
7220
7220
|
{
|
|
7221
7221
|
"path": "plugin/loom/skills/loom-review/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -7994,18 +7994,18 @@
|
|
|
7994
7994
|
},
|
|
7995
7995
|
{
|
|
7996
7996
|
"path": "plugin/loom/skills/loom-spec-review/.loom-runtime/shared/scripts/governance_surface.py",
|
|
7997
|
-
"bytes":
|
|
7998
|
-
"sha256": "
|
|
7997
|
+
"bytes": 138894,
|
|
7998
|
+
"sha256": "8bfc822dac5d7667c630665cb33848632131cb92d4408ea9e46f2786b5b6ff55"
|
|
7999
7999
|
},
|
|
8000
8000
|
{
|
|
8001
8001
|
"path": "plugin/loom/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_check.py",
|
|
8002
|
-
"bytes":
|
|
8003
|
-
"sha256": "
|
|
8002
|
+
"bytes": 685161,
|
|
8003
|
+
"sha256": "b59e39dea08f8b38addfa5ac17638ae5f58e0d13019638a76a39274b5ca51e5c"
|
|
8004
8004
|
},
|
|
8005
8005
|
{
|
|
8006
8006
|
"path": "plugin/loom/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_flow.py",
|
|
8007
|
-
"bytes":
|
|
8008
|
-
"sha256": "
|
|
8007
|
+
"bytes": 553678,
|
|
8008
|
+
"sha256": "3cd17e84ecc48b3901e49621abc9e3534ad415a51e75954337c38a2a49366ec7"
|
|
8009
8009
|
},
|
|
8010
8010
|
{
|
|
8011
8011
|
"path": "plugin/loom/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -8784,18 +8784,18 @@
|
|
|
8784
8784
|
},
|
|
8785
8785
|
{
|
|
8786
8786
|
"path": "plugin/loom/skills/loom-story/.loom-runtime/shared/scripts/governance_surface.py",
|
|
8787
|
-
"bytes":
|
|
8788
|
-
"sha256": "
|
|
8787
|
+
"bytes": 138894,
|
|
8788
|
+
"sha256": "8bfc822dac5d7667c630665cb33848632131cb92d4408ea9e46f2786b5b6ff55"
|
|
8789
8789
|
},
|
|
8790
8790
|
{
|
|
8791
8791
|
"path": "plugin/loom/skills/loom-story/.loom-runtime/shared/scripts/loom_check.py",
|
|
8792
|
-
"bytes":
|
|
8793
|
-
"sha256": "
|
|
8792
|
+
"bytes": 685161,
|
|
8793
|
+
"sha256": "b59e39dea08f8b38addfa5ac17638ae5f58e0d13019638a76a39274b5ca51e5c"
|
|
8794
8794
|
},
|
|
8795
8795
|
{
|
|
8796
8796
|
"path": "plugin/loom/skills/loom-story/.loom-runtime/shared/scripts/loom_flow.py",
|
|
8797
|
-
"bytes":
|
|
8798
|
-
"sha256": "
|
|
8797
|
+
"bytes": 553678,
|
|
8798
|
+
"sha256": "3cd17e84ecc48b3901e49621abc9e3534ad415a51e75954337c38a2a49366ec7"
|
|
8799
8799
|
},
|
|
8800
8800
|
{
|
|
8801
8801
|
"path": "plugin/loom/skills/loom-story/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -9229,18 +9229,18 @@
|
|
|
9229
9229
|
},
|
|
9230
9230
|
{
|
|
9231
9231
|
"path": "plugin/loom/skills/shared/scripts/governance_surface.py",
|
|
9232
|
-
"bytes":
|
|
9233
|
-
"sha256": "
|
|
9232
|
+
"bytes": 138894,
|
|
9233
|
+
"sha256": "8bfc822dac5d7667c630665cb33848632131cb92d4408ea9e46f2786b5b6ff55"
|
|
9234
9234
|
},
|
|
9235
9235
|
{
|
|
9236
9236
|
"path": "plugin/loom/skills/shared/scripts/loom_check.py",
|
|
9237
|
-
"bytes":
|
|
9238
|
-
"sha256": "
|
|
9237
|
+
"bytes": 685161,
|
|
9238
|
+
"sha256": "b59e39dea08f8b38addfa5ac17638ae5f58e0d13019638a76a39274b5ca51e5c"
|
|
9239
9239
|
},
|
|
9240
9240
|
{
|
|
9241
9241
|
"path": "plugin/loom/skills/shared/scripts/loom_flow.py",
|
|
9242
|
-
"bytes":
|
|
9243
|
-
"sha256": "
|
|
9242
|
+
"bytes": 553678,
|
|
9243
|
+
"sha256": "3cd17e84ecc48b3901e49621abc9e3534ad415a51e75954337c38a2a49366ec7"
|
|
9244
9244
|
},
|
|
9245
9245
|
{
|
|
9246
9246
|
"path": "plugin/loom/skills/shared/scripts/loom_init.py",
|
|
@@ -9984,18 +9984,18 @@
|
|
|
9984
9984
|
},
|
|
9985
9985
|
{
|
|
9986
9986
|
"path": "skills/loom-adopt/.loom-runtime/shared/scripts/governance_surface.py",
|
|
9987
|
-
"bytes":
|
|
9988
|
-
"sha256": "
|
|
9987
|
+
"bytes": 138894,
|
|
9988
|
+
"sha256": "8bfc822dac5d7667c630665cb33848632131cb92d4408ea9e46f2786b5b6ff55"
|
|
9989
9989
|
},
|
|
9990
9990
|
{
|
|
9991
9991
|
"path": "skills/loom-adopt/.loom-runtime/shared/scripts/loom_check.py",
|
|
9992
|
-
"bytes":
|
|
9993
|
-
"sha256": "
|
|
9992
|
+
"bytes": 685161,
|
|
9993
|
+
"sha256": "b59e39dea08f8b38addfa5ac17638ae5f58e0d13019638a76a39274b5ca51e5c"
|
|
9994
9994
|
},
|
|
9995
9995
|
{
|
|
9996
9996
|
"path": "skills/loom-adopt/.loom-runtime/shared/scripts/loom_flow.py",
|
|
9997
|
-
"bytes":
|
|
9998
|
-
"sha256": "
|
|
9997
|
+
"bytes": 553678,
|
|
9998
|
+
"sha256": "3cd17e84ecc48b3901e49621abc9e3534ad415a51e75954337c38a2a49366ec7"
|
|
9999
9999
|
},
|
|
10000
10000
|
{
|
|
10001
10001
|
"path": "skills/loom-adopt/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -10774,18 +10774,18 @@
|
|
|
10774
10774
|
},
|
|
10775
10775
|
{
|
|
10776
10776
|
"path": "skills/loom-build/.loom-runtime/shared/scripts/governance_surface.py",
|
|
10777
|
-
"bytes":
|
|
10778
|
-
"sha256": "
|
|
10777
|
+
"bytes": 138894,
|
|
10778
|
+
"sha256": "8bfc822dac5d7667c630665cb33848632131cb92d4408ea9e46f2786b5b6ff55"
|
|
10779
10779
|
},
|
|
10780
10780
|
{
|
|
10781
10781
|
"path": "skills/loom-build/.loom-runtime/shared/scripts/loom_check.py",
|
|
10782
|
-
"bytes":
|
|
10783
|
-
"sha256": "
|
|
10782
|
+
"bytes": 685161,
|
|
10783
|
+
"sha256": "b59e39dea08f8b38addfa5ac17638ae5f58e0d13019638a76a39274b5ca51e5c"
|
|
10784
10784
|
},
|
|
10785
10785
|
{
|
|
10786
10786
|
"path": "skills/loom-build/.loom-runtime/shared/scripts/loom_flow.py",
|
|
10787
|
-
"bytes":
|
|
10788
|
-
"sha256": "
|
|
10787
|
+
"bytes": 553678,
|
|
10788
|
+
"sha256": "3cd17e84ecc48b3901e49621abc9e3534ad415a51e75954337c38a2a49366ec7"
|
|
10789
10789
|
},
|
|
10790
10790
|
{
|
|
10791
10791
|
"path": "skills/loom-build/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -11564,18 +11564,18 @@
|
|
|
11564
11564
|
},
|
|
11565
11565
|
{
|
|
11566
11566
|
"path": "skills/loom-handoff/.loom-runtime/shared/scripts/governance_surface.py",
|
|
11567
|
-
"bytes":
|
|
11568
|
-
"sha256": "
|
|
11567
|
+
"bytes": 138894,
|
|
11568
|
+
"sha256": "8bfc822dac5d7667c630665cb33848632131cb92d4408ea9e46f2786b5b6ff55"
|
|
11569
11569
|
},
|
|
11570
11570
|
{
|
|
11571
11571
|
"path": "skills/loom-handoff/.loom-runtime/shared/scripts/loom_check.py",
|
|
11572
|
-
"bytes":
|
|
11573
|
-
"sha256": "
|
|
11572
|
+
"bytes": 685161,
|
|
11573
|
+
"sha256": "b59e39dea08f8b38addfa5ac17638ae5f58e0d13019638a76a39274b5ca51e5c"
|
|
11574
11574
|
},
|
|
11575
11575
|
{
|
|
11576
11576
|
"path": "skills/loom-handoff/.loom-runtime/shared/scripts/loom_flow.py",
|
|
11577
|
-
"bytes":
|
|
11578
|
-
"sha256": "
|
|
11577
|
+
"bytes": 553678,
|
|
11578
|
+
"sha256": "3cd17e84ecc48b3901e49621abc9e3534ad415a51e75954337c38a2a49366ec7"
|
|
11579
11579
|
},
|
|
11580
11580
|
{
|
|
11581
11581
|
"path": "skills/loom-handoff/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -12354,18 +12354,18 @@
|
|
|
12354
12354
|
},
|
|
12355
12355
|
{
|
|
12356
12356
|
"path": "skills/loom-init/.loom-runtime/shared/scripts/governance_surface.py",
|
|
12357
|
-
"bytes":
|
|
12358
|
-
"sha256": "
|
|
12357
|
+
"bytes": 138894,
|
|
12358
|
+
"sha256": "8bfc822dac5d7667c630665cb33848632131cb92d4408ea9e46f2786b5b6ff55"
|
|
12359
12359
|
},
|
|
12360
12360
|
{
|
|
12361
12361
|
"path": "skills/loom-init/.loom-runtime/shared/scripts/loom_check.py",
|
|
12362
|
-
"bytes":
|
|
12363
|
-
"sha256": "
|
|
12362
|
+
"bytes": 685161,
|
|
12363
|
+
"sha256": "b59e39dea08f8b38addfa5ac17638ae5f58e0d13019638a76a39274b5ca51e5c"
|
|
12364
12364
|
},
|
|
12365
12365
|
{
|
|
12366
12366
|
"path": "skills/loom-init/.loom-runtime/shared/scripts/loom_flow.py",
|
|
12367
|
-
"bytes":
|
|
12368
|
-
"sha256": "
|
|
12367
|
+
"bytes": 553678,
|
|
12368
|
+
"sha256": "3cd17e84ecc48b3901e49621abc9e3534ad415a51e75954337c38a2a49366ec7"
|
|
12369
12369
|
},
|
|
12370
12370
|
{
|
|
12371
12371
|
"path": "skills/loom-init/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -13149,18 +13149,18 @@
|
|
|
13149
13149
|
},
|
|
13150
13150
|
{
|
|
13151
13151
|
"path": "skills/loom-merge-ready/.loom-runtime/shared/scripts/governance_surface.py",
|
|
13152
|
-
"bytes":
|
|
13153
|
-
"sha256": "
|
|
13152
|
+
"bytes": 138894,
|
|
13153
|
+
"sha256": "8bfc822dac5d7667c630665cb33848632131cb92d4408ea9e46f2786b5b6ff55"
|
|
13154
13154
|
},
|
|
13155
13155
|
{
|
|
13156
13156
|
"path": "skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_check.py",
|
|
13157
|
-
"bytes":
|
|
13158
|
-
"sha256": "
|
|
13157
|
+
"bytes": 685161,
|
|
13158
|
+
"sha256": "b59e39dea08f8b38addfa5ac17638ae5f58e0d13019638a76a39274b5ca51e5c"
|
|
13159
13159
|
},
|
|
13160
13160
|
{
|
|
13161
13161
|
"path": "skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_flow.py",
|
|
13162
|
-
"bytes":
|
|
13163
|
-
"sha256": "
|
|
13162
|
+
"bytes": 553678,
|
|
13163
|
+
"sha256": "3cd17e84ecc48b3901e49621abc9e3534ad415a51e75954337c38a2a49366ec7"
|
|
13164
13164
|
},
|
|
13165
13165
|
{
|
|
13166
13166
|
"path": "skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -13939,18 +13939,18 @@
|
|
|
13939
13939
|
},
|
|
13940
13940
|
{
|
|
13941
13941
|
"path": "skills/loom-pre-review/.loom-runtime/shared/scripts/governance_surface.py",
|
|
13942
|
-
"bytes":
|
|
13943
|
-
"sha256": "
|
|
13942
|
+
"bytes": 138894,
|
|
13943
|
+
"sha256": "8bfc822dac5d7667c630665cb33848632131cb92d4408ea9e46f2786b5b6ff55"
|
|
13944
13944
|
},
|
|
13945
13945
|
{
|
|
13946
13946
|
"path": "skills/loom-pre-review/.loom-runtime/shared/scripts/loom_check.py",
|
|
13947
|
-
"bytes":
|
|
13948
|
-
"sha256": "
|
|
13947
|
+
"bytes": 685161,
|
|
13948
|
+
"sha256": "b59e39dea08f8b38addfa5ac17638ae5f58e0d13019638a76a39274b5ca51e5c"
|
|
13949
13949
|
},
|
|
13950
13950
|
{
|
|
13951
13951
|
"path": "skills/loom-pre-review/.loom-runtime/shared/scripts/loom_flow.py",
|
|
13952
|
-
"bytes":
|
|
13953
|
-
"sha256": "
|
|
13952
|
+
"bytes": 553678,
|
|
13953
|
+
"sha256": "3cd17e84ecc48b3901e49621abc9e3534ad415a51e75954337c38a2a49366ec7"
|
|
13954
13954
|
},
|
|
13955
13955
|
{
|
|
13956
13956
|
"path": "skills/loom-pre-review/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -14729,18 +14729,18 @@
|
|
|
14729
14729
|
},
|
|
14730
14730
|
{
|
|
14731
14731
|
"path": "skills/loom-resume/.loom-runtime/shared/scripts/governance_surface.py",
|
|
14732
|
-
"bytes":
|
|
14733
|
-
"sha256": "
|
|
14732
|
+
"bytes": 138894,
|
|
14733
|
+
"sha256": "8bfc822dac5d7667c630665cb33848632131cb92d4408ea9e46f2786b5b6ff55"
|
|
14734
14734
|
},
|
|
14735
14735
|
{
|
|
14736
14736
|
"path": "skills/loom-resume/.loom-runtime/shared/scripts/loom_check.py",
|
|
14737
|
-
"bytes":
|
|
14738
|
-
"sha256": "
|
|
14737
|
+
"bytes": 685161,
|
|
14738
|
+
"sha256": "b59e39dea08f8b38addfa5ac17638ae5f58e0d13019638a76a39274b5ca51e5c"
|
|
14739
14739
|
},
|
|
14740
14740
|
{
|
|
14741
14741
|
"path": "skills/loom-resume/.loom-runtime/shared/scripts/loom_flow.py",
|
|
14742
|
-
"bytes":
|
|
14743
|
-
"sha256": "
|
|
14742
|
+
"bytes": 553678,
|
|
14743
|
+
"sha256": "3cd17e84ecc48b3901e49621abc9e3534ad415a51e75954337c38a2a49366ec7"
|
|
14744
14744
|
},
|
|
14745
14745
|
{
|
|
14746
14746
|
"path": "skills/loom-resume/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -15519,18 +15519,18 @@
|
|
|
15519
15519
|
},
|
|
15520
15520
|
{
|
|
15521
15521
|
"path": "skills/loom-retire/.loom-runtime/shared/scripts/governance_surface.py",
|
|
15522
|
-
"bytes":
|
|
15523
|
-
"sha256": "
|
|
15522
|
+
"bytes": 138894,
|
|
15523
|
+
"sha256": "8bfc822dac5d7667c630665cb33848632131cb92d4408ea9e46f2786b5b6ff55"
|
|
15524
15524
|
},
|
|
15525
15525
|
{
|
|
15526
15526
|
"path": "skills/loom-retire/.loom-runtime/shared/scripts/loom_check.py",
|
|
15527
|
-
"bytes":
|
|
15528
|
-
"sha256": "
|
|
15527
|
+
"bytes": 685161,
|
|
15528
|
+
"sha256": "b59e39dea08f8b38addfa5ac17638ae5f58e0d13019638a76a39274b5ca51e5c"
|
|
15529
15529
|
},
|
|
15530
15530
|
{
|
|
15531
15531
|
"path": "skills/loom-retire/.loom-runtime/shared/scripts/loom_flow.py",
|
|
15532
|
-
"bytes":
|
|
15533
|
-
"sha256": "
|
|
15532
|
+
"bytes": 553678,
|
|
15533
|
+
"sha256": "3cd17e84ecc48b3901e49621abc9e3534ad415a51e75954337c38a2a49366ec7"
|
|
15534
15534
|
},
|
|
15535
15535
|
{
|
|
15536
15536
|
"path": "skills/loom-retire/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -16309,18 +16309,18 @@
|
|
|
16309
16309
|
},
|
|
16310
16310
|
{
|
|
16311
16311
|
"path": "skills/loom-review/.loom-runtime/shared/scripts/governance_surface.py",
|
|
16312
|
-
"bytes":
|
|
16313
|
-
"sha256": "
|
|
16312
|
+
"bytes": 138894,
|
|
16313
|
+
"sha256": "8bfc822dac5d7667c630665cb33848632131cb92d4408ea9e46f2786b5b6ff55"
|
|
16314
16314
|
},
|
|
16315
16315
|
{
|
|
16316
16316
|
"path": "skills/loom-review/.loom-runtime/shared/scripts/loom_check.py",
|
|
16317
|
-
"bytes":
|
|
16318
|
-
"sha256": "
|
|
16317
|
+
"bytes": 685161,
|
|
16318
|
+
"sha256": "b59e39dea08f8b38addfa5ac17638ae5f58e0d13019638a76a39274b5ca51e5c"
|
|
16319
16319
|
},
|
|
16320
16320
|
{
|
|
16321
16321
|
"path": "skills/loom-review/.loom-runtime/shared/scripts/loom_flow.py",
|
|
16322
|
-
"bytes":
|
|
16323
|
-
"sha256": "
|
|
16322
|
+
"bytes": 553678,
|
|
16323
|
+
"sha256": "3cd17e84ecc48b3901e49621abc9e3534ad415a51e75954337c38a2a49366ec7"
|
|
16324
16324
|
},
|
|
16325
16325
|
{
|
|
16326
16326
|
"path": "skills/loom-review/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -17099,18 +17099,18 @@
|
|
|
17099
17099
|
},
|
|
17100
17100
|
{
|
|
17101
17101
|
"path": "skills/loom-spec-review/.loom-runtime/shared/scripts/governance_surface.py",
|
|
17102
|
-
"bytes":
|
|
17103
|
-
"sha256": "
|
|
17102
|
+
"bytes": 138894,
|
|
17103
|
+
"sha256": "8bfc822dac5d7667c630665cb33848632131cb92d4408ea9e46f2786b5b6ff55"
|
|
17104
17104
|
},
|
|
17105
17105
|
{
|
|
17106
17106
|
"path": "skills/loom-spec-review/.loom-runtime/shared/scripts/loom_check.py",
|
|
17107
|
-
"bytes":
|
|
17108
|
-
"sha256": "
|
|
17107
|
+
"bytes": 685161,
|
|
17108
|
+
"sha256": "b59e39dea08f8b38addfa5ac17638ae5f58e0d13019638a76a39274b5ca51e5c"
|
|
17109
17109
|
},
|
|
17110
17110
|
{
|
|
17111
17111
|
"path": "skills/loom-spec-review/.loom-runtime/shared/scripts/loom_flow.py",
|
|
17112
|
-
"bytes":
|
|
17113
|
-
"sha256": "
|
|
17112
|
+
"bytes": 553678,
|
|
17113
|
+
"sha256": "3cd17e84ecc48b3901e49621abc9e3534ad415a51e75954337c38a2a49366ec7"
|
|
17114
17114
|
},
|
|
17115
17115
|
{
|
|
17116
17116
|
"path": "skills/loom-spec-review/.loom-runtime/shared/scripts/loom_init.py",
|
|
@@ -17889,18 +17889,18 @@
|
|
|
17889
17889
|
},
|
|
17890
17890
|
{
|
|
17891
17891
|
"path": "skills/loom-story/.loom-runtime/shared/scripts/governance_surface.py",
|
|
17892
|
-
"bytes":
|
|
17893
|
-
"sha256": "
|
|
17892
|
+
"bytes": 138894,
|
|
17893
|
+
"sha256": "8bfc822dac5d7667c630665cb33848632131cb92d4408ea9e46f2786b5b6ff55"
|
|
17894
17894
|
},
|
|
17895
17895
|
{
|
|
17896
17896
|
"path": "skills/loom-story/.loom-runtime/shared/scripts/loom_check.py",
|
|
17897
|
-
"bytes":
|
|
17898
|
-
"sha256": "
|
|
17897
|
+
"bytes": 685161,
|
|
17898
|
+
"sha256": "b59e39dea08f8b38addfa5ac17638ae5f58e0d13019638a76a39274b5ca51e5c"
|
|
17899
17899
|
},
|
|
17900
17900
|
{
|
|
17901
17901
|
"path": "skills/loom-story/.loom-runtime/shared/scripts/loom_flow.py",
|
|
17902
|
-
"bytes":
|
|
17903
|
-
"sha256": "
|
|
17902
|
+
"bytes": 553678,
|
|
17903
|
+
"sha256": "3cd17e84ecc48b3901e49621abc9e3534ad415a51e75954337c38a2a49366ec7"
|
|
17904
17904
|
},
|
|
17905
17905
|
{
|
|
17906
17906
|
"path": "skills/loom-story/.loom-runtime/shared/scripts/loom_init.py",
|