@mc-and-his-agents/loom-installer 0.1.96 → 0.1.98

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.
Files changed (71) hide show
  1. package/package.json +1 -1
  2. package/payload/manifest.json +141 -141
  3. package/payload/plugin/loom/skills/loom-adopt/.loom-runtime/shared/scripts/governance_surface.py +161 -11
  4. package/payload/plugin/loom/skills/loom-adopt/.loom-runtime/shared/scripts/loom_check.py +642 -12
  5. package/payload/plugin/loom/skills/loom-adopt/.loom-runtime/shared/scripts/loom_flow.py +198 -1
  6. package/payload/plugin/loom/skills/loom-build/.loom-runtime/shared/scripts/governance_surface.py +161 -11
  7. package/payload/plugin/loom/skills/loom-build/.loom-runtime/shared/scripts/loom_check.py +642 -12
  8. package/payload/plugin/loom/skills/loom-build/.loom-runtime/shared/scripts/loom_flow.py +198 -1
  9. package/payload/plugin/loom/skills/loom-handoff/.loom-runtime/shared/scripts/governance_surface.py +161 -11
  10. package/payload/plugin/loom/skills/loom-handoff/.loom-runtime/shared/scripts/loom_check.py +642 -12
  11. package/payload/plugin/loom/skills/loom-handoff/.loom-runtime/shared/scripts/loom_flow.py +198 -1
  12. package/payload/plugin/loom/skills/loom-init/.loom-runtime/shared/scripts/governance_surface.py +161 -11
  13. package/payload/plugin/loom/skills/loom-init/.loom-runtime/shared/scripts/loom_check.py +642 -12
  14. package/payload/plugin/loom/skills/loom-init/.loom-runtime/shared/scripts/loom_flow.py +198 -1
  15. package/payload/plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/scripts/governance_surface.py +161 -11
  16. package/payload/plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_check.py +642 -12
  17. package/payload/plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_flow.py +198 -1
  18. package/payload/plugin/loom/skills/loom-pre-review/.loom-runtime/shared/scripts/governance_surface.py +161 -11
  19. package/payload/plugin/loom/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_check.py +642 -12
  20. package/payload/plugin/loom/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_flow.py +198 -1
  21. package/payload/plugin/loom/skills/loom-resume/.loom-runtime/shared/scripts/governance_surface.py +161 -11
  22. package/payload/plugin/loom/skills/loom-resume/.loom-runtime/shared/scripts/loom_check.py +642 -12
  23. package/payload/plugin/loom/skills/loom-resume/.loom-runtime/shared/scripts/loom_flow.py +198 -1
  24. package/payload/plugin/loom/skills/loom-retire/.loom-runtime/shared/scripts/governance_surface.py +161 -11
  25. package/payload/plugin/loom/skills/loom-retire/.loom-runtime/shared/scripts/loom_check.py +642 -12
  26. package/payload/plugin/loom/skills/loom-retire/.loom-runtime/shared/scripts/loom_flow.py +198 -1
  27. package/payload/plugin/loom/skills/loom-review/.loom-runtime/shared/scripts/governance_surface.py +161 -11
  28. package/payload/plugin/loom/skills/loom-review/.loom-runtime/shared/scripts/loom_check.py +642 -12
  29. package/payload/plugin/loom/skills/loom-review/.loom-runtime/shared/scripts/loom_flow.py +198 -1
  30. package/payload/plugin/loom/skills/loom-spec-review/.loom-runtime/shared/scripts/governance_surface.py +161 -11
  31. package/payload/plugin/loom/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_check.py +642 -12
  32. package/payload/plugin/loom/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_flow.py +198 -1
  33. package/payload/plugin/loom/skills/loom-story/.loom-runtime/shared/scripts/governance_surface.py +161 -11
  34. package/payload/plugin/loom/skills/loom-story/.loom-runtime/shared/scripts/loom_check.py +642 -12
  35. package/payload/plugin/loom/skills/loom-story/.loom-runtime/shared/scripts/loom_flow.py +198 -1
  36. package/payload/plugin/loom/skills/shared/scripts/governance_surface.py +161 -11
  37. package/payload/plugin/loom/skills/shared/scripts/loom_check.py +642 -12
  38. package/payload/plugin/loom/skills/shared/scripts/loom_flow.py +198 -1
  39. package/payload/skills/loom-adopt/.loom-runtime/shared/scripts/governance_surface.py +161 -11
  40. package/payload/skills/loom-adopt/.loom-runtime/shared/scripts/loom_check.py +642 -12
  41. package/payload/skills/loom-adopt/.loom-runtime/shared/scripts/loom_flow.py +198 -1
  42. package/payload/skills/loom-build/.loom-runtime/shared/scripts/governance_surface.py +161 -11
  43. package/payload/skills/loom-build/.loom-runtime/shared/scripts/loom_check.py +642 -12
  44. package/payload/skills/loom-build/.loom-runtime/shared/scripts/loom_flow.py +198 -1
  45. package/payload/skills/loom-handoff/.loom-runtime/shared/scripts/governance_surface.py +161 -11
  46. package/payload/skills/loom-handoff/.loom-runtime/shared/scripts/loom_check.py +642 -12
  47. package/payload/skills/loom-handoff/.loom-runtime/shared/scripts/loom_flow.py +198 -1
  48. package/payload/skills/loom-init/.loom-runtime/shared/scripts/governance_surface.py +161 -11
  49. package/payload/skills/loom-init/.loom-runtime/shared/scripts/loom_check.py +642 -12
  50. package/payload/skills/loom-init/.loom-runtime/shared/scripts/loom_flow.py +198 -1
  51. package/payload/skills/loom-merge-ready/.loom-runtime/shared/scripts/governance_surface.py +161 -11
  52. package/payload/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_check.py +642 -12
  53. package/payload/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_flow.py +198 -1
  54. package/payload/skills/loom-pre-review/.loom-runtime/shared/scripts/governance_surface.py +161 -11
  55. package/payload/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_check.py +642 -12
  56. package/payload/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_flow.py +198 -1
  57. package/payload/skills/loom-resume/.loom-runtime/shared/scripts/governance_surface.py +161 -11
  58. package/payload/skills/loom-resume/.loom-runtime/shared/scripts/loom_check.py +642 -12
  59. package/payload/skills/loom-resume/.loom-runtime/shared/scripts/loom_flow.py +198 -1
  60. package/payload/skills/loom-retire/.loom-runtime/shared/scripts/governance_surface.py +161 -11
  61. package/payload/skills/loom-retire/.loom-runtime/shared/scripts/loom_check.py +642 -12
  62. package/payload/skills/loom-retire/.loom-runtime/shared/scripts/loom_flow.py +198 -1
  63. package/payload/skills/loom-review/.loom-runtime/shared/scripts/governance_surface.py +161 -11
  64. package/payload/skills/loom-review/.loom-runtime/shared/scripts/loom_check.py +642 -12
  65. package/payload/skills/loom-review/.loom-runtime/shared/scripts/loom_flow.py +198 -1
  66. package/payload/skills/loom-spec-review/.loom-runtime/shared/scripts/governance_surface.py +161 -11
  67. package/payload/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_check.py +642 -12
  68. package/payload/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_flow.py +198 -1
  69. package/payload/skills/loom-story/.loom-runtime/shared/scripts/governance_surface.py +161 -11
  70. package/payload/skills/loom-story/.loom-runtime/shared/scripts/loom_check.py +642 -12
  71. package/payload/skills/loom-story/.loom-runtime/shared/scripts/loom_flow.py +198 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mc-and-his-agents/loom-installer",
3
- "version": "0.1.96",
3
+ "version": "0.1.98",
4
4
  "description": "Node installer for Loom plugin and single-skill installation surfaces.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -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": "60adbec28227533037a8ba08d2be3b1bc8a977b2",
5
+ "source_commit": "6dca372c1182f02afea195f86e4f6924a4017ff6",
6
6
  "source_ref": "main",
7
- "built_at": "2026-05-12T17:18:33+08:00",
7
+ "built_at": "2026-05-13T18:36:30+08:00",
8
8
  "version_context": {
9
9
  "repo_version": "v0.10.0",
10
- "installer_package_version": "0.1.96",
10
+ "installer_package_version": "0.1.98",
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": 135603,
883
- "sha256": "afeb00660708ab3a99a3571bfe614141a516d92f9c9284e8e5fef62c21816575"
882
+ "bytes": 142434,
883
+ "sha256": "fd72b7020a50c894a528c43b25eaa9a6143999b28daa11f8df6131b1c593dc9c"
884
884
  },
885
885
  {
886
886
  "path": "plugin/loom/skills/loom-adopt/.loom-runtime/shared/scripts/loom_check.py",
887
- "bytes": 673413,
888
- "sha256": "3ac4103d8d88557e308729da9350cfd2cf3708ae57218db28583088a469f217e"
887
+ "bytes": 705993,
888
+ "sha256": "93313d7949f85217f4f7504cd670a438a6d7835d762b108ed871d12d2ec98d9f"
889
889
  },
890
890
  {
891
891
  "path": "plugin/loom/skills/loom-adopt/.loom-runtime/shared/scripts/loom_flow.py",
892
- "bytes": 551006,
893
- "sha256": "7e806f8514100117bca8b8cbb40f66ba1289d54974468b73607e8790b728d435"
892
+ "bytes": 559886,
893
+ "sha256": "fcbdf8f08bb8bc515367a7eb04a976f22109e95efa90e95ff3bdb66c53b9fe39"
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": 135603,
1673
- "sha256": "afeb00660708ab3a99a3571bfe614141a516d92f9c9284e8e5fef62c21816575"
1672
+ "bytes": 142434,
1673
+ "sha256": "fd72b7020a50c894a528c43b25eaa9a6143999b28daa11f8df6131b1c593dc9c"
1674
1674
  },
1675
1675
  {
1676
1676
  "path": "plugin/loom/skills/loom-build/.loom-runtime/shared/scripts/loom_check.py",
1677
- "bytes": 673413,
1678
- "sha256": "3ac4103d8d88557e308729da9350cfd2cf3708ae57218db28583088a469f217e"
1677
+ "bytes": 705993,
1678
+ "sha256": "93313d7949f85217f4f7504cd670a438a6d7835d762b108ed871d12d2ec98d9f"
1679
1679
  },
1680
1680
  {
1681
1681
  "path": "plugin/loom/skills/loom-build/.loom-runtime/shared/scripts/loom_flow.py",
1682
- "bytes": 551006,
1683
- "sha256": "7e806f8514100117bca8b8cbb40f66ba1289d54974468b73607e8790b728d435"
1682
+ "bytes": 559886,
1683
+ "sha256": "fcbdf8f08bb8bc515367a7eb04a976f22109e95efa90e95ff3bdb66c53b9fe39"
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": 135603,
2463
- "sha256": "afeb00660708ab3a99a3571bfe614141a516d92f9c9284e8e5fef62c21816575"
2462
+ "bytes": 142434,
2463
+ "sha256": "fd72b7020a50c894a528c43b25eaa9a6143999b28daa11f8df6131b1c593dc9c"
2464
2464
  },
2465
2465
  {
2466
2466
  "path": "plugin/loom/skills/loom-handoff/.loom-runtime/shared/scripts/loom_check.py",
2467
- "bytes": 673413,
2468
- "sha256": "3ac4103d8d88557e308729da9350cfd2cf3708ae57218db28583088a469f217e"
2467
+ "bytes": 705993,
2468
+ "sha256": "93313d7949f85217f4f7504cd670a438a6d7835d762b108ed871d12d2ec98d9f"
2469
2469
  },
2470
2470
  {
2471
2471
  "path": "plugin/loom/skills/loom-handoff/.loom-runtime/shared/scripts/loom_flow.py",
2472
- "bytes": 551006,
2473
- "sha256": "7e806f8514100117bca8b8cbb40f66ba1289d54974468b73607e8790b728d435"
2472
+ "bytes": 559886,
2473
+ "sha256": "fcbdf8f08bb8bc515367a7eb04a976f22109e95efa90e95ff3bdb66c53b9fe39"
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": 135603,
3253
- "sha256": "afeb00660708ab3a99a3571bfe614141a516d92f9c9284e8e5fef62c21816575"
3252
+ "bytes": 142434,
3253
+ "sha256": "fd72b7020a50c894a528c43b25eaa9a6143999b28daa11f8df6131b1c593dc9c"
3254
3254
  },
3255
3255
  {
3256
3256
  "path": "plugin/loom/skills/loom-init/.loom-runtime/shared/scripts/loom_check.py",
3257
- "bytes": 673413,
3258
- "sha256": "3ac4103d8d88557e308729da9350cfd2cf3708ae57218db28583088a469f217e"
3257
+ "bytes": 705993,
3258
+ "sha256": "93313d7949f85217f4f7504cd670a438a6d7835d762b108ed871d12d2ec98d9f"
3259
3259
  },
3260
3260
  {
3261
3261
  "path": "plugin/loom/skills/loom-init/.loom-runtime/shared/scripts/loom_flow.py",
3262
- "bytes": 551006,
3263
- "sha256": "7e806f8514100117bca8b8cbb40f66ba1289d54974468b73607e8790b728d435"
3262
+ "bytes": 559886,
3263
+ "sha256": "fcbdf8f08bb8bc515367a7eb04a976f22109e95efa90e95ff3bdb66c53b9fe39"
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": 135603,
4048
- "sha256": "afeb00660708ab3a99a3571bfe614141a516d92f9c9284e8e5fef62c21816575"
4047
+ "bytes": 142434,
4048
+ "sha256": "fd72b7020a50c894a528c43b25eaa9a6143999b28daa11f8df6131b1c593dc9c"
4049
4049
  },
4050
4050
  {
4051
4051
  "path": "plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_check.py",
4052
- "bytes": 673413,
4053
- "sha256": "3ac4103d8d88557e308729da9350cfd2cf3708ae57218db28583088a469f217e"
4052
+ "bytes": 705993,
4053
+ "sha256": "93313d7949f85217f4f7504cd670a438a6d7835d762b108ed871d12d2ec98d9f"
4054
4054
  },
4055
4055
  {
4056
4056
  "path": "plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_flow.py",
4057
- "bytes": 551006,
4058
- "sha256": "7e806f8514100117bca8b8cbb40f66ba1289d54974468b73607e8790b728d435"
4057
+ "bytes": 559886,
4058
+ "sha256": "fcbdf8f08bb8bc515367a7eb04a976f22109e95efa90e95ff3bdb66c53b9fe39"
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": 135603,
4838
- "sha256": "afeb00660708ab3a99a3571bfe614141a516d92f9c9284e8e5fef62c21816575"
4837
+ "bytes": 142434,
4838
+ "sha256": "fd72b7020a50c894a528c43b25eaa9a6143999b28daa11f8df6131b1c593dc9c"
4839
4839
  },
4840
4840
  {
4841
4841
  "path": "plugin/loom/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_check.py",
4842
- "bytes": 673413,
4843
- "sha256": "3ac4103d8d88557e308729da9350cfd2cf3708ae57218db28583088a469f217e"
4842
+ "bytes": 705993,
4843
+ "sha256": "93313d7949f85217f4f7504cd670a438a6d7835d762b108ed871d12d2ec98d9f"
4844
4844
  },
4845
4845
  {
4846
4846
  "path": "plugin/loom/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_flow.py",
4847
- "bytes": 551006,
4848
- "sha256": "7e806f8514100117bca8b8cbb40f66ba1289d54974468b73607e8790b728d435"
4847
+ "bytes": 559886,
4848
+ "sha256": "fcbdf8f08bb8bc515367a7eb04a976f22109e95efa90e95ff3bdb66c53b9fe39"
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": 135603,
5628
- "sha256": "afeb00660708ab3a99a3571bfe614141a516d92f9c9284e8e5fef62c21816575"
5627
+ "bytes": 142434,
5628
+ "sha256": "fd72b7020a50c894a528c43b25eaa9a6143999b28daa11f8df6131b1c593dc9c"
5629
5629
  },
5630
5630
  {
5631
5631
  "path": "plugin/loom/skills/loom-resume/.loom-runtime/shared/scripts/loom_check.py",
5632
- "bytes": 673413,
5633
- "sha256": "3ac4103d8d88557e308729da9350cfd2cf3708ae57218db28583088a469f217e"
5632
+ "bytes": 705993,
5633
+ "sha256": "93313d7949f85217f4f7504cd670a438a6d7835d762b108ed871d12d2ec98d9f"
5634
5634
  },
5635
5635
  {
5636
5636
  "path": "plugin/loom/skills/loom-resume/.loom-runtime/shared/scripts/loom_flow.py",
5637
- "bytes": 551006,
5638
- "sha256": "7e806f8514100117bca8b8cbb40f66ba1289d54974468b73607e8790b728d435"
5637
+ "bytes": 559886,
5638
+ "sha256": "fcbdf8f08bb8bc515367a7eb04a976f22109e95efa90e95ff3bdb66c53b9fe39"
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": 135603,
6418
- "sha256": "afeb00660708ab3a99a3571bfe614141a516d92f9c9284e8e5fef62c21816575"
6417
+ "bytes": 142434,
6418
+ "sha256": "fd72b7020a50c894a528c43b25eaa9a6143999b28daa11f8df6131b1c593dc9c"
6419
6419
  },
6420
6420
  {
6421
6421
  "path": "plugin/loom/skills/loom-retire/.loom-runtime/shared/scripts/loom_check.py",
6422
- "bytes": 673413,
6423
- "sha256": "3ac4103d8d88557e308729da9350cfd2cf3708ae57218db28583088a469f217e"
6422
+ "bytes": 705993,
6423
+ "sha256": "93313d7949f85217f4f7504cd670a438a6d7835d762b108ed871d12d2ec98d9f"
6424
6424
  },
6425
6425
  {
6426
6426
  "path": "plugin/loom/skills/loom-retire/.loom-runtime/shared/scripts/loom_flow.py",
6427
- "bytes": 551006,
6428
- "sha256": "7e806f8514100117bca8b8cbb40f66ba1289d54974468b73607e8790b728d435"
6427
+ "bytes": 559886,
6428
+ "sha256": "fcbdf8f08bb8bc515367a7eb04a976f22109e95efa90e95ff3bdb66c53b9fe39"
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": 135603,
7208
- "sha256": "afeb00660708ab3a99a3571bfe614141a516d92f9c9284e8e5fef62c21816575"
7207
+ "bytes": 142434,
7208
+ "sha256": "fd72b7020a50c894a528c43b25eaa9a6143999b28daa11f8df6131b1c593dc9c"
7209
7209
  },
7210
7210
  {
7211
7211
  "path": "plugin/loom/skills/loom-review/.loom-runtime/shared/scripts/loom_check.py",
7212
- "bytes": 673413,
7213
- "sha256": "3ac4103d8d88557e308729da9350cfd2cf3708ae57218db28583088a469f217e"
7212
+ "bytes": 705993,
7213
+ "sha256": "93313d7949f85217f4f7504cd670a438a6d7835d762b108ed871d12d2ec98d9f"
7214
7214
  },
7215
7215
  {
7216
7216
  "path": "plugin/loom/skills/loom-review/.loom-runtime/shared/scripts/loom_flow.py",
7217
- "bytes": 551006,
7218
- "sha256": "7e806f8514100117bca8b8cbb40f66ba1289d54974468b73607e8790b728d435"
7217
+ "bytes": 559886,
7218
+ "sha256": "fcbdf8f08bb8bc515367a7eb04a976f22109e95efa90e95ff3bdb66c53b9fe39"
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": 135603,
7998
- "sha256": "afeb00660708ab3a99a3571bfe614141a516d92f9c9284e8e5fef62c21816575"
7997
+ "bytes": 142434,
7998
+ "sha256": "fd72b7020a50c894a528c43b25eaa9a6143999b28daa11f8df6131b1c593dc9c"
7999
7999
  },
8000
8000
  {
8001
8001
  "path": "plugin/loom/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_check.py",
8002
- "bytes": 673413,
8003
- "sha256": "3ac4103d8d88557e308729da9350cfd2cf3708ae57218db28583088a469f217e"
8002
+ "bytes": 705993,
8003
+ "sha256": "93313d7949f85217f4f7504cd670a438a6d7835d762b108ed871d12d2ec98d9f"
8004
8004
  },
8005
8005
  {
8006
8006
  "path": "plugin/loom/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_flow.py",
8007
- "bytes": 551006,
8008
- "sha256": "7e806f8514100117bca8b8cbb40f66ba1289d54974468b73607e8790b728d435"
8007
+ "bytes": 559886,
8008
+ "sha256": "fcbdf8f08bb8bc515367a7eb04a976f22109e95efa90e95ff3bdb66c53b9fe39"
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": 135603,
8788
- "sha256": "afeb00660708ab3a99a3571bfe614141a516d92f9c9284e8e5fef62c21816575"
8787
+ "bytes": 142434,
8788
+ "sha256": "fd72b7020a50c894a528c43b25eaa9a6143999b28daa11f8df6131b1c593dc9c"
8789
8789
  },
8790
8790
  {
8791
8791
  "path": "plugin/loom/skills/loom-story/.loom-runtime/shared/scripts/loom_check.py",
8792
- "bytes": 673413,
8793
- "sha256": "3ac4103d8d88557e308729da9350cfd2cf3708ae57218db28583088a469f217e"
8792
+ "bytes": 705993,
8793
+ "sha256": "93313d7949f85217f4f7504cd670a438a6d7835d762b108ed871d12d2ec98d9f"
8794
8794
  },
8795
8795
  {
8796
8796
  "path": "plugin/loom/skills/loom-story/.loom-runtime/shared/scripts/loom_flow.py",
8797
- "bytes": 551006,
8798
- "sha256": "7e806f8514100117bca8b8cbb40f66ba1289d54974468b73607e8790b728d435"
8797
+ "bytes": 559886,
8798
+ "sha256": "fcbdf8f08bb8bc515367a7eb04a976f22109e95efa90e95ff3bdb66c53b9fe39"
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": 135603,
9233
- "sha256": "afeb00660708ab3a99a3571bfe614141a516d92f9c9284e8e5fef62c21816575"
9232
+ "bytes": 142434,
9233
+ "sha256": "fd72b7020a50c894a528c43b25eaa9a6143999b28daa11f8df6131b1c593dc9c"
9234
9234
  },
9235
9235
  {
9236
9236
  "path": "plugin/loom/skills/shared/scripts/loom_check.py",
9237
- "bytes": 673413,
9238
- "sha256": "3ac4103d8d88557e308729da9350cfd2cf3708ae57218db28583088a469f217e"
9237
+ "bytes": 705993,
9238
+ "sha256": "93313d7949f85217f4f7504cd670a438a6d7835d762b108ed871d12d2ec98d9f"
9239
9239
  },
9240
9240
  {
9241
9241
  "path": "plugin/loom/skills/shared/scripts/loom_flow.py",
9242
- "bytes": 551006,
9243
- "sha256": "7e806f8514100117bca8b8cbb40f66ba1289d54974468b73607e8790b728d435"
9242
+ "bytes": 559886,
9243
+ "sha256": "fcbdf8f08bb8bc515367a7eb04a976f22109e95efa90e95ff3bdb66c53b9fe39"
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": 135603,
9988
- "sha256": "afeb00660708ab3a99a3571bfe614141a516d92f9c9284e8e5fef62c21816575"
9987
+ "bytes": 142434,
9988
+ "sha256": "fd72b7020a50c894a528c43b25eaa9a6143999b28daa11f8df6131b1c593dc9c"
9989
9989
  },
9990
9990
  {
9991
9991
  "path": "skills/loom-adopt/.loom-runtime/shared/scripts/loom_check.py",
9992
- "bytes": 673413,
9993
- "sha256": "3ac4103d8d88557e308729da9350cfd2cf3708ae57218db28583088a469f217e"
9992
+ "bytes": 705993,
9993
+ "sha256": "93313d7949f85217f4f7504cd670a438a6d7835d762b108ed871d12d2ec98d9f"
9994
9994
  },
9995
9995
  {
9996
9996
  "path": "skills/loom-adopt/.loom-runtime/shared/scripts/loom_flow.py",
9997
- "bytes": 551006,
9998
- "sha256": "7e806f8514100117bca8b8cbb40f66ba1289d54974468b73607e8790b728d435"
9997
+ "bytes": 559886,
9998
+ "sha256": "fcbdf8f08bb8bc515367a7eb04a976f22109e95efa90e95ff3bdb66c53b9fe39"
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": 135603,
10778
- "sha256": "afeb00660708ab3a99a3571bfe614141a516d92f9c9284e8e5fef62c21816575"
10777
+ "bytes": 142434,
10778
+ "sha256": "fd72b7020a50c894a528c43b25eaa9a6143999b28daa11f8df6131b1c593dc9c"
10779
10779
  },
10780
10780
  {
10781
10781
  "path": "skills/loom-build/.loom-runtime/shared/scripts/loom_check.py",
10782
- "bytes": 673413,
10783
- "sha256": "3ac4103d8d88557e308729da9350cfd2cf3708ae57218db28583088a469f217e"
10782
+ "bytes": 705993,
10783
+ "sha256": "93313d7949f85217f4f7504cd670a438a6d7835d762b108ed871d12d2ec98d9f"
10784
10784
  },
10785
10785
  {
10786
10786
  "path": "skills/loom-build/.loom-runtime/shared/scripts/loom_flow.py",
10787
- "bytes": 551006,
10788
- "sha256": "7e806f8514100117bca8b8cbb40f66ba1289d54974468b73607e8790b728d435"
10787
+ "bytes": 559886,
10788
+ "sha256": "fcbdf8f08bb8bc515367a7eb04a976f22109e95efa90e95ff3bdb66c53b9fe39"
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": 135603,
11568
- "sha256": "afeb00660708ab3a99a3571bfe614141a516d92f9c9284e8e5fef62c21816575"
11567
+ "bytes": 142434,
11568
+ "sha256": "fd72b7020a50c894a528c43b25eaa9a6143999b28daa11f8df6131b1c593dc9c"
11569
11569
  },
11570
11570
  {
11571
11571
  "path": "skills/loom-handoff/.loom-runtime/shared/scripts/loom_check.py",
11572
- "bytes": 673413,
11573
- "sha256": "3ac4103d8d88557e308729da9350cfd2cf3708ae57218db28583088a469f217e"
11572
+ "bytes": 705993,
11573
+ "sha256": "93313d7949f85217f4f7504cd670a438a6d7835d762b108ed871d12d2ec98d9f"
11574
11574
  },
11575
11575
  {
11576
11576
  "path": "skills/loom-handoff/.loom-runtime/shared/scripts/loom_flow.py",
11577
- "bytes": 551006,
11578
- "sha256": "7e806f8514100117bca8b8cbb40f66ba1289d54974468b73607e8790b728d435"
11577
+ "bytes": 559886,
11578
+ "sha256": "fcbdf8f08bb8bc515367a7eb04a976f22109e95efa90e95ff3bdb66c53b9fe39"
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": 135603,
12358
- "sha256": "afeb00660708ab3a99a3571bfe614141a516d92f9c9284e8e5fef62c21816575"
12357
+ "bytes": 142434,
12358
+ "sha256": "fd72b7020a50c894a528c43b25eaa9a6143999b28daa11f8df6131b1c593dc9c"
12359
12359
  },
12360
12360
  {
12361
12361
  "path": "skills/loom-init/.loom-runtime/shared/scripts/loom_check.py",
12362
- "bytes": 673413,
12363
- "sha256": "3ac4103d8d88557e308729da9350cfd2cf3708ae57218db28583088a469f217e"
12362
+ "bytes": 705993,
12363
+ "sha256": "93313d7949f85217f4f7504cd670a438a6d7835d762b108ed871d12d2ec98d9f"
12364
12364
  },
12365
12365
  {
12366
12366
  "path": "skills/loom-init/.loom-runtime/shared/scripts/loom_flow.py",
12367
- "bytes": 551006,
12368
- "sha256": "7e806f8514100117bca8b8cbb40f66ba1289d54974468b73607e8790b728d435"
12367
+ "bytes": 559886,
12368
+ "sha256": "fcbdf8f08bb8bc515367a7eb04a976f22109e95efa90e95ff3bdb66c53b9fe39"
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": 135603,
13153
- "sha256": "afeb00660708ab3a99a3571bfe614141a516d92f9c9284e8e5fef62c21816575"
13152
+ "bytes": 142434,
13153
+ "sha256": "fd72b7020a50c894a528c43b25eaa9a6143999b28daa11f8df6131b1c593dc9c"
13154
13154
  },
13155
13155
  {
13156
13156
  "path": "skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_check.py",
13157
- "bytes": 673413,
13158
- "sha256": "3ac4103d8d88557e308729da9350cfd2cf3708ae57218db28583088a469f217e"
13157
+ "bytes": 705993,
13158
+ "sha256": "93313d7949f85217f4f7504cd670a438a6d7835d762b108ed871d12d2ec98d9f"
13159
13159
  },
13160
13160
  {
13161
13161
  "path": "skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_flow.py",
13162
- "bytes": 551006,
13163
- "sha256": "7e806f8514100117bca8b8cbb40f66ba1289d54974468b73607e8790b728d435"
13162
+ "bytes": 559886,
13163
+ "sha256": "fcbdf8f08bb8bc515367a7eb04a976f22109e95efa90e95ff3bdb66c53b9fe39"
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": 135603,
13943
- "sha256": "afeb00660708ab3a99a3571bfe614141a516d92f9c9284e8e5fef62c21816575"
13942
+ "bytes": 142434,
13943
+ "sha256": "fd72b7020a50c894a528c43b25eaa9a6143999b28daa11f8df6131b1c593dc9c"
13944
13944
  },
13945
13945
  {
13946
13946
  "path": "skills/loom-pre-review/.loom-runtime/shared/scripts/loom_check.py",
13947
- "bytes": 673413,
13948
- "sha256": "3ac4103d8d88557e308729da9350cfd2cf3708ae57218db28583088a469f217e"
13947
+ "bytes": 705993,
13948
+ "sha256": "93313d7949f85217f4f7504cd670a438a6d7835d762b108ed871d12d2ec98d9f"
13949
13949
  },
13950
13950
  {
13951
13951
  "path": "skills/loom-pre-review/.loom-runtime/shared/scripts/loom_flow.py",
13952
- "bytes": 551006,
13953
- "sha256": "7e806f8514100117bca8b8cbb40f66ba1289d54974468b73607e8790b728d435"
13952
+ "bytes": 559886,
13953
+ "sha256": "fcbdf8f08bb8bc515367a7eb04a976f22109e95efa90e95ff3bdb66c53b9fe39"
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": 135603,
14733
- "sha256": "afeb00660708ab3a99a3571bfe614141a516d92f9c9284e8e5fef62c21816575"
14732
+ "bytes": 142434,
14733
+ "sha256": "fd72b7020a50c894a528c43b25eaa9a6143999b28daa11f8df6131b1c593dc9c"
14734
14734
  },
14735
14735
  {
14736
14736
  "path": "skills/loom-resume/.loom-runtime/shared/scripts/loom_check.py",
14737
- "bytes": 673413,
14738
- "sha256": "3ac4103d8d88557e308729da9350cfd2cf3708ae57218db28583088a469f217e"
14737
+ "bytes": 705993,
14738
+ "sha256": "93313d7949f85217f4f7504cd670a438a6d7835d762b108ed871d12d2ec98d9f"
14739
14739
  },
14740
14740
  {
14741
14741
  "path": "skills/loom-resume/.loom-runtime/shared/scripts/loom_flow.py",
14742
- "bytes": 551006,
14743
- "sha256": "7e806f8514100117bca8b8cbb40f66ba1289d54974468b73607e8790b728d435"
14742
+ "bytes": 559886,
14743
+ "sha256": "fcbdf8f08bb8bc515367a7eb04a976f22109e95efa90e95ff3bdb66c53b9fe39"
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": 135603,
15523
- "sha256": "afeb00660708ab3a99a3571bfe614141a516d92f9c9284e8e5fef62c21816575"
15522
+ "bytes": 142434,
15523
+ "sha256": "fd72b7020a50c894a528c43b25eaa9a6143999b28daa11f8df6131b1c593dc9c"
15524
15524
  },
15525
15525
  {
15526
15526
  "path": "skills/loom-retire/.loom-runtime/shared/scripts/loom_check.py",
15527
- "bytes": 673413,
15528
- "sha256": "3ac4103d8d88557e308729da9350cfd2cf3708ae57218db28583088a469f217e"
15527
+ "bytes": 705993,
15528
+ "sha256": "93313d7949f85217f4f7504cd670a438a6d7835d762b108ed871d12d2ec98d9f"
15529
15529
  },
15530
15530
  {
15531
15531
  "path": "skills/loom-retire/.loom-runtime/shared/scripts/loom_flow.py",
15532
- "bytes": 551006,
15533
- "sha256": "7e806f8514100117bca8b8cbb40f66ba1289d54974468b73607e8790b728d435"
15532
+ "bytes": 559886,
15533
+ "sha256": "fcbdf8f08bb8bc515367a7eb04a976f22109e95efa90e95ff3bdb66c53b9fe39"
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": 135603,
16313
- "sha256": "afeb00660708ab3a99a3571bfe614141a516d92f9c9284e8e5fef62c21816575"
16312
+ "bytes": 142434,
16313
+ "sha256": "fd72b7020a50c894a528c43b25eaa9a6143999b28daa11f8df6131b1c593dc9c"
16314
16314
  },
16315
16315
  {
16316
16316
  "path": "skills/loom-review/.loom-runtime/shared/scripts/loom_check.py",
16317
- "bytes": 673413,
16318
- "sha256": "3ac4103d8d88557e308729da9350cfd2cf3708ae57218db28583088a469f217e"
16317
+ "bytes": 705993,
16318
+ "sha256": "93313d7949f85217f4f7504cd670a438a6d7835d762b108ed871d12d2ec98d9f"
16319
16319
  },
16320
16320
  {
16321
16321
  "path": "skills/loom-review/.loom-runtime/shared/scripts/loom_flow.py",
16322
- "bytes": 551006,
16323
- "sha256": "7e806f8514100117bca8b8cbb40f66ba1289d54974468b73607e8790b728d435"
16322
+ "bytes": 559886,
16323
+ "sha256": "fcbdf8f08bb8bc515367a7eb04a976f22109e95efa90e95ff3bdb66c53b9fe39"
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": 135603,
17103
- "sha256": "afeb00660708ab3a99a3571bfe614141a516d92f9c9284e8e5fef62c21816575"
17102
+ "bytes": 142434,
17103
+ "sha256": "fd72b7020a50c894a528c43b25eaa9a6143999b28daa11f8df6131b1c593dc9c"
17104
17104
  },
17105
17105
  {
17106
17106
  "path": "skills/loom-spec-review/.loom-runtime/shared/scripts/loom_check.py",
17107
- "bytes": 673413,
17108
- "sha256": "3ac4103d8d88557e308729da9350cfd2cf3708ae57218db28583088a469f217e"
17107
+ "bytes": 705993,
17108
+ "sha256": "93313d7949f85217f4f7504cd670a438a6d7835d762b108ed871d12d2ec98d9f"
17109
17109
  },
17110
17110
  {
17111
17111
  "path": "skills/loom-spec-review/.loom-runtime/shared/scripts/loom_flow.py",
17112
- "bytes": 551006,
17113
- "sha256": "7e806f8514100117bca8b8cbb40f66ba1289d54974468b73607e8790b728d435"
17112
+ "bytes": 559886,
17113
+ "sha256": "fcbdf8f08bb8bc515367a7eb04a976f22109e95efa90e95ff3bdb66c53b9fe39"
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": 135603,
17893
- "sha256": "afeb00660708ab3a99a3571bfe614141a516d92f9c9284e8e5fef62c21816575"
17892
+ "bytes": 142434,
17893
+ "sha256": "fd72b7020a50c894a528c43b25eaa9a6143999b28daa11f8df6131b1c593dc9c"
17894
17894
  },
17895
17895
  {
17896
17896
  "path": "skills/loom-story/.loom-runtime/shared/scripts/loom_check.py",
17897
- "bytes": 673413,
17898
- "sha256": "3ac4103d8d88557e308729da9350cfd2cf3708ae57218db28583088a469f217e"
17897
+ "bytes": 705993,
17898
+ "sha256": "93313d7949f85217f4f7504cd670a438a6d7835d762b108ed871d12d2ec98d9f"
17899
17899
  },
17900
17900
  {
17901
17901
  "path": "skills/loom-story/.loom-runtime/shared/scripts/loom_flow.py",
17902
- "bytes": 551006,
17903
- "sha256": "7e806f8514100117bca8b8cbb40f66ba1289d54974468b73607e8790b728d435"
17902
+ "bytes": 559886,
17903
+ "sha256": "fcbdf8f08bb8bc515367a7eb04a976f22109e95efa90e95ff3bdb66c53b9fe39"
17904
17904
  },
17905
17905
  {
17906
17906
  "path": "skills/loom-story/.loom-runtime/shared/scripts/loom_init.py",