@mc-and-his-agents/loom-installer 0.1.72 → 0.1.74

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 (135) hide show
  1. package/package.json +1 -1
  2. package/payload/manifest.json +383 -193
  3. package/payload/plugin/loom/skills/loom-adopt/.loom-runtime/shared/references/harness/dynamic-tool-handshake.md +17 -0
  4. package/payload/plugin/loom/skills/loom-adopt/.loom-runtime/shared/references/harness/execution-attempt.md +21 -0
  5. package/payload/plugin/loom/skills/loom-adopt/.loom-runtime/shared/references/harness/status-surface.md +19 -1
  6. package/payload/plugin/loom/skills/loom-adopt/.loom-runtime/shared/scripts/governance_surface.py +207 -2
  7. package/payload/plugin/loom/skills/loom-adopt/.loom-runtime/shared/scripts/loom_check.py +358 -1
  8. package/payload/plugin/loom/skills/loom-adopt/.loom-runtime/shared/scripts/loom_flow.py +466 -3
  9. package/payload/plugin/loom/skills/loom-adopt/.loom-runtime/shared/scripts/loom_status.py +10 -0
  10. package/payload/plugin/loom/skills/loom-handoff/.loom-runtime/shared/references/harness/dynamic-tool-handshake.md +17 -0
  11. package/payload/plugin/loom/skills/loom-handoff/.loom-runtime/shared/references/harness/execution-attempt.md +21 -0
  12. package/payload/plugin/loom/skills/loom-handoff/.loom-runtime/shared/references/harness/status-surface.md +19 -1
  13. package/payload/plugin/loom/skills/loom-handoff/.loom-runtime/shared/scripts/governance_surface.py +207 -2
  14. package/payload/plugin/loom/skills/loom-handoff/.loom-runtime/shared/scripts/loom_check.py +358 -1
  15. package/payload/plugin/loom/skills/loom-handoff/.loom-runtime/shared/scripts/loom_flow.py +466 -3
  16. package/payload/plugin/loom/skills/loom-handoff/.loom-runtime/shared/scripts/loom_status.py +10 -0
  17. package/payload/plugin/loom/skills/loom-init/.loom-runtime/shared/references/harness/dynamic-tool-handshake.md +17 -0
  18. package/payload/plugin/loom/skills/loom-init/.loom-runtime/shared/references/harness/execution-attempt.md +21 -0
  19. package/payload/plugin/loom/skills/loom-init/.loom-runtime/shared/references/harness/status-surface.md +19 -1
  20. package/payload/plugin/loom/skills/loom-init/.loom-runtime/shared/scripts/governance_surface.py +207 -2
  21. package/payload/plugin/loom/skills/loom-init/.loom-runtime/shared/scripts/loom_check.py +358 -1
  22. package/payload/plugin/loom/skills/loom-init/.loom-runtime/shared/scripts/loom_flow.py +466 -3
  23. package/payload/plugin/loom/skills/loom-init/.loom-runtime/shared/scripts/loom_status.py +10 -0
  24. package/payload/plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/references/harness/dynamic-tool-handshake.md +17 -0
  25. package/payload/plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/references/harness/execution-attempt.md +21 -0
  26. package/payload/plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/references/harness/status-surface.md +19 -1
  27. package/payload/plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/scripts/governance_surface.py +207 -2
  28. package/payload/plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_check.py +358 -1
  29. package/payload/plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_flow.py +466 -3
  30. package/payload/plugin/loom/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_status.py +10 -0
  31. package/payload/plugin/loom/skills/loom-pre-review/.loom-runtime/shared/references/harness/dynamic-tool-handshake.md +17 -0
  32. package/payload/plugin/loom/skills/loom-pre-review/.loom-runtime/shared/references/harness/execution-attempt.md +21 -0
  33. package/payload/plugin/loom/skills/loom-pre-review/.loom-runtime/shared/references/harness/status-surface.md +19 -1
  34. package/payload/plugin/loom/skills/loom-pre-review/.loom-runtime/shared/scripts/governance_surface.py +207 -2
  35. package/payload/plugin/loom/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_check.py +358 -1
  36. package/payload/plugin/loom/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_flow.py +466 -3
  37. package/payload/plugin/loom/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_status.py +10 -0
  38. package/payload/plugin/loom/skills/loom-resume/.loom-runtime/shared/references/harness/dynamic-tool-handshake.md +17 -0
  39. package/payload/plugin/loom/skills/loom-resume/.loom-runtime/shared/references/harness/execution-attempt.md +21 -0
  40. package/payload/plugin/loom/skills/loom-resume/.loom-runtime/shared/references/harness/status-surface.md +19 -1
  41. package/payload/plugin/loom/skills/loom-resume/.loom-runtime/shared/scripts/governance_surface.py +207 -2
  42. package/payload/plugin/loom/skills/loom-resume/.loom-runtime/shared/scripts/loom_check.py +358 -1
  43. package/payload/plugin/loom/skills/loom-resume/.loom-runtime/shared/scripts/loom_flow.py +466 -3
  44. package/payload/plugin/loom/skills/loom-resume/.loom-runtime/shared/scripts/loom_status.py +10 -0
  45. package/payload/plugin/loom/skills/loom-retire/.loom-runtime/shared/references/harness/dynamic-tool-handshake.md +17 -0
  46. package/payload/plugin/loom/skills/loom-retire/.loom-runtime/shared/references/harness/execution-attempt.md +21 -0
  47. package/payload/plugin/loom/skills/loom-retire/.loom-runtime/shared/references/harness/status-surface.md +19 -1
  48. package/payload/plugin/loom/skills/loom-retire/.loom-runtime/shared/scripts/governance_surface.py +207 -2
  49. package/payload/plugin/loom/skills/loom-retire/.loom-runtime/shared/scripts/loom_check.py +358 -1
  50. package/payload/plugin/loom/skills/loom-retire/.loom-runtime/shared/scripts/loom_flow.py +466 -3
  51. package/payload/plugin/loom/skills/loom-retire/.loom-runtime/shared/scripts/loom_status.py +10 -0
  52. package/payload/plugin/loom/skills/loom-review/.loom-runtime/shared/references/harness/dynamic-tool-handshake.md +17 -0
  53. package/payload/plugin/loom/skills/loom-review/.loom-runtime/shared/references/harness/execution-attempt.md +21 -0
  54. package/payload/plugin/loom/skills/loom-review/.loom-runtime/shared/references/harness/status-surface.md +19 -1
  55. package/payload/plugin/loom/skills/loom-review/.loom-runtime/shared/scripts/governance_surface.py +207 -2
  56. package/payload/plugin/loom/skills/loom-review/.loom-runtime/shared/scripts/loom_check.py +358 -1
  57. package/payload/plugin/loom/skills/loom-review/.loom-runtime/shared/scripts/loom_flow.py +466 -3
  58. package/payload/plugin/loom/skills/loom-review/.loom-runtime/shared/scripts/loom_status.py +10 -0
  59. package/payload/plugin/loom/skills/loom-spec-review/.loom-runtime/shared/references/harness/dynamic-tool-handshake.md +17 -0
  60. package/payload/plugin/loom/skills/loom-spec-review/.loom-runtime/shared/references/harness/execution-attempt.md +21 -0
  61. package/payload/plugin/loom/skills/loom-spec-review/.loom-runtime/shared/references/harness/status-surface.md +19 -1
  62. package/payload/plugin/loom/skills/loom-spec-review/.loom-runtime/shared/scripts/governance_surface.py +207 -2
  63. package/payload/plugin/loom/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_check.py +358 -1
  64. package/payload/plugin/loom/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_flow.py +466 -3
  65. package/payload/plugin/loom/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_status.py +10 -0
  66. package/payload/plugin/loom/skills/shared/references/harness/dynamic-tool-handshake.md +17 -0
  67. package/payload/plugin/loom/skills/shared/references/harness/execution-attempt.md +21 -0
  68. package/payload/plugin/loom/skills/shared/references/harness/status-surface.md +19 -1
  69. package/payload/plugin/loom/skills/shared/scripts/governance_surface.py +207 -2
  70. package/payload/plugin/loom/skills/shared/scripts/loom_check.py +358 -1
  71. package/payload/plugin/loom/skills/shared/scripts/loom_flow.py +466 -3
  72. package/payload/plugin/loom/skills/shared/scripts/loom_status.py +10 -0
  73. package/payload/skills/loom-adopt/.loom-runtime/shared/references/harness/dynamic-tool-handshake.md +17 -0
  74. package/payload/skills/loom-adopt/.loom-runtime/shared/references/harness/execution-attempt.md +21 -0
  75. package/payload/skills/loom-adopt/.loom-runtime/shared/references/harness/status-surface.md +19 -1
  76. package/payload/skills/loom-adopt/.loom-runtime/shared/scripts/governance_surface.py +207 -2
  77. package/payload/skills/loom-adopt/.loom-runtime/shared/scripts/loom_check.py +358 -1
  78. package/payload/skills/loom-adopt/.loom-runtime/shared/scripts/loom_flow.py +466 -3
  79. package/payload/skills/loom-adopt/.loom-runtime/shared/scripts/loom_status.py +10 -0
  80. package/payload/skills/loom-handoff/.loom-runtime/shared/references/harness/dynamic-tool-handshake.md +17 -0
  81. package/payload/skills/loom-handoff/.loom-runtime/shared/references/harness/execution-attempt.md +21 -0
  82. package/payload/skills/loom-handoff/.loom-runtime/shared/references/harness/status-surface.md +19 -1
  83. package/payload/skills/loom-handoff/.loom-runtime/shared/scripts/governance_surface.py +207 -2
  84. package/payload/skills/loom-handoff/.loom-runtime/shared/scripts/loom_check.py +358 -1
  85. package/payload/skills/loom-handoff/.loom-runtime/shared/scripts/loom_flow.py +466 -3
  86. package/payload/skills/loom-handoff/.loom-runtime/shared/scripts/loom_status.py +10 -0
  87. package/payload/skills/loom-init/.loom-runtime/shared/references/harness/dynamic-tool-handshake.md +17 -0
  88. package/payload/skills/loom-init/.loom-runtime/shared/references/harness/execution-attempt.md +21 -0
  89. package/payload/skills/loom-init/.loom-runtime/shared/references/harness/status-surface.md +19 -1
  90. package/payload/skills/loom-init/.loom-runtime/shared/scripts/governance_surface.py +207 -2
  91. package/payload/skills/loom-init/.loom-runtime/shared/scripts/loom_check.py +358 -1
  92. package/payload/skills/loom-init/.loom-runtime/shared/scripts/loom_flow.py +466 -3
  93. package/payload/skills/loom-init/.loom-runtime/shared/scripts/loom_status.py +10 -0
  94. package/payload/skills/loom-merge-ready/.loom-runtime/shared/references/harness/dynamic-tool-handshake.md +17 -0
  95. package/payload/skills/loom-merge-ready/.loom-runtime/shared/references/harness/execution-attempt.md +21 -0
  96. package/payload/skills/loom-merge-ready/.loom-runtime/shared/references/harness/status-surface.md +19 -1
  97. package/payload/skills/loom-merge-ready/.loom-runtime/shared/scripts/governance_surface.py +207 -2
  98. package/payload/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_check.py +358 -1
  99. package/payload/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_flow.py +466 -3
  100. package/payload/skills/loom-merge-ready/.loom-runtime/shared/scripts/loom_status.py +10 -0
  101. package/payload/skills/loom-pre-review/.loom-runtime/shared/references/harness/dynamic-tool-handshake.md +17 -0
  102. package/payload/skills/loom-pre-review/.loom-runtime/shared/references/harness/execution-attempt.md +21 -0
  103. package/payload/skills/loom-pre-review/.loom-runtime/shared/references/harness/status-surface.md +19 -1
  104. package/payload/skills/loom-pre-review/.loom-runtime/shared/scripts/governance_surface.py +207 -2
  105. package/payload/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_check.py +358 -1
  106. package/payload/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_flow.py +466 -3
  107. package/payload/skills/loom-pre-review/.loom-runtime/shared/scripts/loom_status.py +10 -0
  108. package/payload/skills/loom-resume/.loom-runtime/shared/references/harness/dynamic-tool-handshake.md +17 -0
  109. package/payload/skills/loom-resume/.loom-runtime/shared/references/harness/execution-attempt.md +21 -0
  110. package/payload/skills/loom-resume/.loom-runtime/shared/references/harness/status-surface.md +19 -1
  111. package/payload/skills/loom-resume/.loom-runtime/shared/scripts/governance_surface.py +207 -2
  112. package/payload/skills/loom-resume/.loom-runtime/shared/scripts/loom_check.py +358 -1
  113. package/payload/skills/loom-resume/.loom-runtime/shared/scripts/loom_flow.py +466 -3
  114. package/payload/skills/loom-resume/.loom-runtime/shared/scripts/loom_status.py +10 -0
  115. package/payload/skills/loom-retire/.loom-runtime/shared/references/harness/dynamic-tool-handshake.md +17 -0
  116. package/payload/skills/loom-retire/.loom-runtime/shared/references/harness/execution-attempt.md +21 -0
  117. package/payload/skills/loom-retire/.loom-runtime/shared/references/harness/status-surface.md +19 -1
  118. package/payload/skills/loom-retire/.loom-runtime/shared/scripts/governance_surface.py +207 -2
  119. package/payload/skills/loom-retire/.loom-runtime/shared/scripts/loom_check.py +358 -1
  120. package/payload/skills/loom-retire/.loom-runtime/shared/scripts/loom_flow.py +466 -3
  121. package/payload/skills/loom-retire/.loom-runtime/shared/scripts/loom_status.py +10 -0
  122. package/payload/skills/loom-review/.loom-runtime/shared/references/harness/dynamic-tool-handshake.md +17 -0
  123. package/payload/skills/loom-review/.loom-runtime/shared/references/harness/execution-attempt.md +21 -0
  124. package/payload/skills/loom-review/.loom-runtime/shared/references/harness/status-surface.md +19 -1
  125. package/payload/skills/loom-review/.loom-runtime/shared/scripts/governance_surface.py +207 -2
  126. package/payload/skills/loom-review/.loom-runtime/shared/scripts/loom_check.py +358 -1
  127. package/payload/skills/loom-review/.loom-runtime/shared/scripts/loom_flow.py +466 -3
  128. package/payload/skills/loom-review/.loom-runtime/shared/scripts/loom_status.py +10 -0
  129. package/payload/skills/loom-spec-review/.loom-runtime/shared/references/harness/dynamic-tool-handshake.md +17 -0
  130. package/payload/skills/loom-spec-review/.loom-runtime/shared/references/harness/execution-attempt.md +21 -0
  131. package/payload/skills/loom-spec-review/.loom-runtime/shared/references/harness/status-surface.md +19 -1
  132. package/payload/skills/loom-spec-review/.loom-runtime/shared/scripts/governance_surface.py +207 -2
  133. package/payload/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_check.py +358 -1
  134. package/payload/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_flow.py +466 -3
  135. package/payload/skills/loom-spec-review/.loom-runtime/shared/scripts/loom_status.py +10 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mc-and-his-agents/loom-installer",
3
- "version": "0.1.72",
3
+ "version": "0.1.74",
4
4
  "description": "Node installer for Loom plugin and single-skill installation surfaces.",
5
5
  "type": "module",
6
6
  "bin": {