@hunter-harness/workflow-harness 0.2.34 → 0.2.36

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 (226) hide show
  1. package/harness/bundles/general/claude-code/.harness-build.json +1 -1
  2. package/harness/bundles/general/claude-code/contracts/build-profile-v3.schema.json +147 -0
  3. package/harness/bundles/general/claude-code/contracts/doctor-capability.schema.json +43 -0
  4. package/harness/bundles/general/claude-code/contracts/external-platform-observation.schema.json +62 -0
  5. package/harness/bundles/general/claude-code/harness-archive/SKILL.md +1 -1
  6. package/harness/bundles/general/claude-code/harness-codebase-map/SKILL.md +1 -1
  7. package/harness/bundles/general/claude-code/harness-knowledge-ingest/SKILL.md +1 -1
  8. package/harness/bundles/general/claude-code/harness-knowledge-ingest/scripts/harness_knowledge.py +24 -1
  9. package/harness/bundles/general/claude-code/harness-knowledge-query/SKILL.md +1 -1
  10. package/harness/bundles/general/claude-code/harness-plan/SKILL.md +1 -1
  11. package/harness/bundles/general/claude-code/harness-review/SKILL.md +1 -1
  12. package/harness/bundles/general/claude-code/harness-run/SKILL.md +1 -1
  13. package/harness/bundles/general/claude-code/harness-submit/SKILL.md +1 -1
  14. package/harness/bundles/general/claude-code/harness-sync/SKILL.md +1 -1
  15. package/harness/bundles/general/claude-code/harness-sync/reference.md +2 -2
  16. package/harness/bundles/general/claude-code/harness-test/SKILL.md +1 -1
  17. package/harness/bundles/general/claude-code/harness-test/pitfalls.md +1 -1
  18. package/harness/bundles/general/claude-code/protocols/ci-layering-protocol.md +22 -0
  19. package/harness/bundles/general/claude-code/protocols/external-platform-protocol.md +27 -0
  20. package/harness/bundles/general/claude-code/protocols/memory-closeout-protocol.md +21 -0
  21. package/harness/bundles/general/claude-code/protocols/registry-governance-protocol.md +31 -0
  22. package/harness/bundles/general/claude-code/protocols/verification-graph-protocol.md +26 -0
  23. package/harness/bundles/general/claude-code/scripts/harness_archive.py +24 -12
  24. package/harness/bundles/general/claude-code/scripts/harness_ledger.py +121 -12
  25. package/harness/bundles/general/claude-code/scripts/harness_preflight.py +2 -2
  26. package/harness/bundles/general/claude-code/scripts/harness_profile.py +308 -23
  27. package/harness/bundles/general/codebuddy/.harness-build.json +1 -1
  28. package/harness/bundles/general/codebuddy/contracts/build-profile-v3.schema.json +147 -0
  29. package/harness/bundles/general/codebuddy/contracts/doctor-capability.schema.json +43 -0
  30. package/harness/bundles/general/codebuddy/contracts/external-platform-observation.schema.json +62 -0
  31. package/harness/bundles/general/codebuddy/harness-archive/SKILL.md +1 -1
  32. package/harness/bundles/general/codebuddy/harness-codebase-map/SKILL.md +1 -1
  33. package/harness/bundles/general/codebuddy/harness-knowledge-ingest/SKILL.md +1 -1
  34. package/harness/bundles/general/codebuddy/harness-knowledge-ingest/scripts/harness_knowledge.py +24 -1
  35. package/harness/bundles/general/codebuddy/harness-knowledge-query/SKILL.md +1 -1
  36. package/harness/bundles/general/codebuddy/harness-plan/SKILL.md +1 -1
  37. package/harness/bundles/general/codebuddy/harness-review/SKILL.md +1 -1
  38. package/harness/bundles/general/codebuddy/harness-run/SKILL.md +1 -1
  39. package/harness/bundles/general/codebuddy/harness-submit/SKILL.md +1 -1
  40. package/harness/bundles/general/codebuddy/harness-sync/SKILL.md +1 -1
  41. package/harness/bundles/general/codebuddy/harness-sync/reference.md +2 -2
  42. package/harness/bundles/general/codebuddy/harness-test/SKILL.md +1 -1
  43. package/harness/bundles/general/codebuddy/harness-test/pitfalls.md +1 -1
  44. package/harness/bundles/general/codebuddy/protocols/ci-layering-protocol.md +22 -0
  45. package/harness/bundles/general/codebuddy/protocols/external-platform-protocol.md +27 -0
  46. package/harness/bundles/general/codebuddy/protocols/memory-closeout-protocol.md +21 -0
  47. package/harness/bundles/general/codebuddy/protocols/registry-governance-protocol.md +31 -0
  48. package/harness/bundles/general/codebuddy/protocols/verification-graph-protocol.md +26 -0
  49. package/harness/bundles/general/codebuddy/scripts/harness_archive.py +24 -12
  50. package/harness/bundles/general/codebuddy/scripts/harness_ledger.py +121 -12
  51. package/harness/bundles/general/codebuddy/scripts/harness_preflight.py +2 -2
  52. package/harness/bundles/general/codebuddy/scripts/harness_profile.py +308 -23
  53. package/harness/bundles/general/codex/.harness-build.json +1 -1
  54. package/harness/bundles/general/codex/contracts/build-profile-v3.schema.json +147 -0
  55. package/harness/bundles/general/codex/contracts/doctor-capability.schema.json +43 -0
  56. package/harness/bundles/general/codex/contracts/external-platform-observation.schema.json +62 -0
  57. package/harness/bundles/general/codex/harness-archive/SKILL.md +1 -1
  58. package/harness/bundles/general/codex/harness-codebase-map/SKILL.md +1 -1
  59. package/harness/bundles/general/codex/harness-knowledge-ingest/SKILL.md +1 -1
  60. package/harness/bundles/general/codex/harness-knowledge-ingest/scripts/harness_knowledge.py +24 -1
  61. package/harness/bundles/general/codex/harness-knowledge-query/SKILL.md +1 -1
  62. package/harness/bundles/general/codex/harness-plan/SKILL.md +1 -1
  63. package/harness/bundles/general/codex/harness-review/SKILL.md +1 -1
  64. package/harness/bundles/general/codex/harness-run/SKILL.md +1 -1
  65. package/harness/bundles/general/codex/harness-submit/SKILL.md +1 -1
  66. package/harness/bundles/general/codex/harness-sync/SKILL.md +1 -1
  67. package/harness/bundles/general/codex/harness-sync/reference.md +2 -2
  68. package/harness/bundles/general/codex/harness-test/SKILL.md +1 -1
  69. package/harness/bundles/general/codex/harness-test/pitfalls.md +1 -1
  70. package/harness/bundles/general/codex/protocols/ci-layering-protocol.md +22 -0
  71. package/harness/bundles/general/codex/protocols/external-platform-protocol.md +27 -0
  72. package/harness/bundles/general/codex/protocols/memory-closeout-protocol.md +21 -0
  73. package/harness/bundles/general/codex/protocols/registry-governance-protocol.md +31 -0
  74. package/harness/bundles/general/codex/protocols/verification-graph-protocol.md +26 -0
  75. package/harness/bundles/general/codex/scripts/harness_archive.py +24 -12
  76. package/harness/bundles/general/codex/scripts/harness_ledger.py +121 -12
  77. package/harness/bundles/general/codex/scripts/harness_preflight.py +2 -2
  78. package/harness/bundles/general/codex/scripts/harness_profile.py +308 -23
  79. package/harness/bundles/general/cursor/.harness-build.json +1 -1
  80. package/harness/bundles/general/cursor/contracts/build-profile-v3.schema.json +147 -0
  81. package/harness/bundles/general/cursor/contracts/doctor-capability.schema.json +43 -0
  82. package/harness/bundles/general/cursor/contracts/external-platform-observation.schema.json +62 -0
  83. package/harness/bundles/general/cursor/harness-archive/SKILL.md +1 -1
  84. package/harness/bundles/general/cursor/harness-codebase-map/SKILL.md +1 -1
  85. package/harness/bundles/general/cursor/harness-knowledge-ingest/SKILL.md +1 -1
  86. package/harness/bundles/general/cursor/harness-knowledge-ingest/scripts/harness_knowledge.py +24 -1
  87. package/harness/bundles/general/cursor/harness-knowledge-query/SKILL.md +1 -1
  88. package/harness/bundles/general/cursor/harness-plan/SKILL.md +1 -1
  89. package/harness/bundles/general/cursor/harness-review/SKILL.md +1 -1
  90. package/harness/bundles/general/cursor/harness-run/SKILL.md +1 -1
  91. package/harness/bundles/general/cursor/harness-submit/SKILL.md +1 -1
  92. package/harness/bundles/general/cursor/harness-sync/SKILL.md +1 -1
  93. package/harness/bundles/general/cursor/harness-sync/reference.md +2 -2
  94. package/harness/bundles/general/cursor/harness-test/SKILL.md +1 -1
  95. package/harness/bundles/general/cursor/harness-test/pitfalls.md +1 -1
  96. package/harness/bundles/general/cursor/protocols/ci-layering-protocol.md +22 -0
  97. package/harness/bundles/general/cursor/protocols/external-platform-protocol.md +27 -0
  98. package/harness/bundles/general/cursor/protocols/memory-closeout-protocol.md +21 -0
  99. package/harness/bundles/general/cursor/protocols/registry-governance-protocol.md +31 -0
  100. package/harness/bundles/general/cursor/protocols/verification-graph-protocol.md +26 -0
  101. package/harness/bundles/general/cursor/scripts/harness_archive.py +24 -12
  102. package/harness/bundles/general/cursor/scripts/harness_ledger.py +121 -12
  103. package/harness/bundles/general/cursor/scripts/harness_preflight.py +2 -2
  104. package/harness/bundles/general/cursor/scripts/harness_profile.py +308 -23
  105. package/harness/bundles/java/claude-code/.harness-build.json +1 -1
  106. package/harness/bundles/java/claude-code/contracts/build-profile-v3.schema.json +147 -0
  107. package/harness/bundles/java/claude-code/contracts/doctor-capability.schema.json +43 -0
  108. package/harness/bundles/java/claude-code/contracts/external-platform-observation.schema.json +62 -0
  109. package/harness/bundles/java/claude-code/harness-apidoc/SKILL.md +1 -1
  110. package/harness/bundles/java/claude-code/harness-archive/SKILL.md +1 -1
  111. package/harness/bundles/java/claude-code/harness-codebase-map/SKILL.md +1 -1
  112. package/harness/bundles/java/claude-code/harness-knowledge-ingest/SKILL.md +1 -1
  113. package/harness/bundles/java/claude-code/harness-knowledge-ingest/scripts/harness_knowledge.py +24 -1
  114. package/harness/bundles/java/claude-code/harness-knowledge-query/SKILL.md +1 -1
  115. package/harness/bundles/java/claude-code/harness-package/SKILL.md +1 -1
  116. package/harness/bundles/java/claude-code/harness-plan/SKILL.md +1 -1
  117. package/harness/bundles/java/claude-code/harness-review/SKILL.md +1 -1
  118. package/harness/bundles/java/claude-code/harness-run/SKILL.md +1 -1
  119. package/harness/bundles/java/claude-code/harness-submit/SKILL.md +1 -1
  120. package/harness/bundles/java/claude-code/harness-sync/SKILL.md +1 -1
  121. package/harness/bundles/java/claude-code/harness-sync/reference.md +2 -2
  122. package/harness/bundles/java/claude-code/harness-test/SKILL.md +1 -1
  123. package/harness/bundles/java/claude-code/harness-test/pitfalls.md +1 -1
  124. package/harness/bundles/java/claude-code/protocols/ci-layering-protocol.md +22 -0
  125. package/harness/bundles/java/claude-code/protocols/external-platform-protocol.md +27 -0
  126. package/harness/bundles/java/claude-code/protocols/memory-closeout-protocol.md +21 -0
  127. package/harness/bundles/java/claude-code/protocols/registry-governance-protocol.md +31 -0
  128. package/harness/bundles/java/claude-code/protocols/verification-graph-protocol.md +26 -0
  129. package/harness/bundles/java/claude-code/scripts/harness_archive.py +24 -12
  130. package/harness/bundles/java/claude-code/scripts/harness_ledger.py +121 -12
  131. package/harness/bundles/java/claude-code/scripts/harness_preflight.py +2 -2
  132. package/harness/bundles/java/claude-code/scripts/harness_profile.py +308 -23
  133. package/harness/bundles/java/codebuddy/.harness-build.json +1 -1
  134. package/harness/bundles/java/codebuddy/contracts/build-profile-v3.schema.json +147 -0
  135. package/harness/bundles/java/codebuddy/contracts/doctor-capability.schema.json +43 -0
  136. package/harness/bundles/java/codebuddy/contracts/external-platform-observation.schema.json +62 -0
  137. package/harness/bundles/java/codebuddy/harness-apidoc/SKILL.md +1 -1
  138. package/harness/bundles/java/codebuddy/harness-archive/SKILL.md +1 -1
  139. package/harness/bundles/java/codebuddy/harness-codebase-map/SKILL.md +1 -1
  140. package/harness/bundles/java/codebuddy/harness-knowledge-ingest/SKILL.md +1 -1
  141. package/harness/bundles/java/codebuddy/harness-knowledge-ingest/scripts/harness_knowledge.py +24 -1
  142. package/harness/bundles/java/codebuddy/harness-knowledge-query/SKILL.md +1 -1
  143. package/harness/bundles/java/codebuddy/harness-package/SKILL.md +1 -1
  144. package/harness/bundles/java/codebuddy/harness-plan/SKILL.md +1 -1
  145. package/harness/bundles/java/codebuddy/harness-review/SKILL.md +1 -1
  146. package/harness/bundles/java/codebuddy/harness-run/SKILL.md +1 -1
  147. package/harness/bundles/java/codebuddy/harness-submit/SKILL.md +1 -1
  148. package/harness/bundles/java/codebuddy/harness-sync/SKILL.md +1 -1
  149. package/harness/bundles/java/codebuddy/harness-sync/reference.md +2 -2
  150. package/harness/bundles/java/codebuddy/harness-test/SKILL.md +1 -1
  151. package/harness/bundles/java/codebuddy/harness-test/pitfalls.md +1 -1
  152. package/harness/bundles/java/codebuddy/protocols/ci-layering-protocol.md +22 -0
  153. package/harness/bundles/java/codebuddy/protocols/external-platform-protocol.md +27 -0
  154. package/harness/bundles/java/codebuddy/protocols/memory-closeout-protocol.md +21 -0
  155. package/harness/bundles/java/codebuddy/protocols/registry-governance-protocol.md +31 -0
  156. package/harness/bundles/java/codebuddy/protocols/verification-graph-protocol.md +26 -0
  157. package/harness/bundles/java/codebuddy/scripts/harness_archive.py +24 -12
  158. package/harness/bundles/java/codebuddy/scripts/harness_ledger.py +121 -12
  159. package/harness/bundles/java/codebuddy/scripts/harness_preflight.py +2 -2
  160. package/harness/bundles/java/codebuddy/scripts/harness_profile.py +308 -23
  161. package/harness/bundles/java/codex/.harness-build.json +1 -1
  162. package/harness/bundles/java/codex/contracts/build-profile-v3.schema.json +147 -0
  163. package/harness/bundles/java/codex/contracts/doctor-capability.schema.json +43 -0
  164. package/harness/bundles/java/codex/contracts/external-platform-observation.schema.json +62 -0
  165. package/harness/bundles/java/codex/harness-apidoc/SKILL.md +1 -1
  166. package/harness/bundles/java/codex/harness-archive/SKILL.md +1 -1
  167. package/harness/bundles/java/codex/harness-codebase-map/SKILL.md +1 -1
  168. package/harness/bundles/java/codex/harness-knowledge-ingest/SKILL.md +1 -1
  169. package/harness/bundles/java/codex/harness-knowledge-ingest/scripts/harness_knowledge.py +24 -1
  170. package/harness/bundles/java/codex/harness-knowledge-query/SKILL.md +1 -1
  171. package/harness/bundles/java/codex/harness-package/SKILL.md +1 -1
  172. package/harness/bundles/java/codex/harness-plan/SKILL.md +1 -1
  173. package/harness/bundles/java/codex/harness-review/SKILL.md +1 -1
  174. package/harness/bundles/java/codex/harness-run/SKILL.md +1 -1
  175. package/harness/bundles/java/codex/harness-submit/SKILL.md +1 -1
  176. package/harness/bundles/java/codex/harness-sync/SKILL.md +1 -1
  177. package/harness/bundles/java/codex/harness-sync/reference.md +2 -2
  178. package/harness/bundles/java/codex/harness-test/SKILL.md +1 -1
  179. package/harness/bundles/java/codex/harness-test/pitfalls.md +1 -1
  180. package/harness/bundles/java/codex/protocols/ci-layering-protocol.md +22 -0
  181. package/harness/bundles/java/codex/protocols/external-platform-protocol.md +27 -0
  182. package/harness/bundles/java/codex/protocols/memory-closeout-protocol.md +21 -0
  183. package/harness/bundles/java/codex/protocols/registry-governance-protocol.md +31 -0
  184. package/harness/bundles/java/codex/protocols/verification-graph-protocol.md +26 -0
  185. package/harness/bundles/java/codex/scripts/harness_archive.py +24 -12
  186. package/harness/bundles/java/codex/scripts/harness_ledger.py +121 -12
  187. package/harness/bundles/java/codex/scripts/harness_preflight.py +2 -2
  188. package/harness/bundles/java/codex/scripts/harness_profile.py +308 -23
  189. package/harness/bundles/java/cursor/.harness-build.json +1 -1
  190. package/harness/bundles/java/cursor/contracts/build-profile-v3.schema.json +147 -0
  191. package/harness/bundles/java/cursor/contracts/doctor-capability.schema.json +43 -0
  192. package/harness/bundles/java/cursor/contracts/external-platform-observation.schema.json +62 -0
  193. package/harness/bundles/java/cursor/harness-apidoc/SKILL.md +1 -1
  194. package/harness/bundles/java/cursor/harness-archive/SKILL.md +1 -1
  195. package/harness/bundles/java/cursor/harness-codebase-map/SKILL.md +1 -1
  196. package/harness/bundles/java/cursor/harness-knowledge-ingest/SKILL.md +1 -1
  197. package/harness/bundles/java/cursor/harness-knowledge-ingest/scripts/harness_knowledge.py +24 -1
  198. package/harness/bundles/java/cursor/harness-knowledge-query/SKILL.md +1 -1
  199. package/harness/bundles/java/cursor/harness-package/SKILL.md +1 -1
  200. package/harness/bundles/java/cursor/harness-plan/SKILL.md +1 -1
  201. package/harness/bundles/java/cursor/harness-review/SKILL.md +1 -1
  202. package/harness/bundles/java/cursor/harness-run/SKILL.md +1 -1
  203. package/harness/bundles/java/cursor/harness-submit/SKILL.md +1 -1
  204. package/harness/bundles/java/cursor/harness-sync/SKILL.md +1 -1
  205. package/harness/bundles/java/cursor/harness-sync/reference.md +2 -2
  206. package/harness/bundles/java/cursor/harness-test/SKILL.md +1 -1
  207. package/harness/bundles/java/cursor/harness-test/pitfalls.md +1 -1
  208. package/harness/bundles/java/cursor/protocols/ci-layering-protocol.md +22 -0
  209. package/harness/bundles/java/cursor/protocols/external-platform-protocol.md +27 -0
  210. package/harness/bundles/java/cursor/protocols/memory-closeout-protocol.md +21 -0
  211. package/harness/bundles/java/cursor/protocols/registry-governance-protocol.md +31 -0
  212. package/harness/bundles/java/cursor/protocols/verification-graph-protocol.md +26 -0
  213. package/harness/bundles/java/cursor/scripts/harness_archive.py +24 -12
  214. package/harness/bundles/java/cursor/scripts/harness_ledger.py +121 -12
  215. package/harness/bundles/java/cursor/scripts/harness_preflight.py +2 -2
  216. package/harness/bundles/java/cursor/scripts/harness_profile.py +308 -23
  217. package/harness/manifests/general/claude-code.json +58 -20
  218. package/harness/manifests/general/codebuddy.json +58 -20
  219. package/harness/manifests/general/codex.json +58 -20
  220. package/harness/manifests/general/cursor.json +58 -20
  221. package/harness/manifests/java/claude-code.json +60 -22
  222. package/harness/manifests/java/codebuddy.json +60 -22
  223. package/harness/manifests/java/codex.json +60 -22
  224. package/harness/manifests/java/cursor.json +60 -22
  225. package/hunter-workflow-family.json +17 -5
  226. package/package.json +1 -1
@@ -4,19 +4,25 @@
4
4
  "adapter": "claude-code",
5
5
  "bundle_version": "0.2.26",
6
6
  "requires": {
7
- "minimumCliVersion": "0.2.36",
7
+ "minimumCliVersion": "0.2.38",
8
8
  "capabilities": [
9
9
  "sync@1",
10
10
  "rules-sync@1",
11
11
  "rules-review@1",
12
- "knowledge-sync@2"
12
+ "knowledge-sync@2",
13
+ "build-profile@3",
14
+ "verification-graph@1",
15
+ "external-convergence@1",
16
+ "codegraph-status@1",
17
+ "doctor-capability@1",
18
+ "registry-governance@1"
13
19
  ]
14
20
  },
15
21
  "generator": "harness_deploy.py",
16
22
  "files": [
17
23
  {
18
24
  "path": ".harness-build.json",
19
- "sha256": "e16236e730fcce9858b84ea86b55805981fd412f5c382e715703974c5c77f620"
25
+ "sha256": "bb4f94d0b4b2c5c25322d9690d3979538b94d2013e0b7dd994c63020577edfae"
20
26
  },
21
27
  {
22
28
  "path": "agents/harness-evaluator.md",
@@ -34,10 +40,22 @@
34
40
  "path": "CONTEXT.md",
35
41
  "sha256": "4838854cc45e8bd47552fb34e41cadca3121eeaa4597196568f35e25534d5a33"
36
42
  },
43
+ {
44
+ "path": "contracts/build-profile-v3.schema.json",
45
+ "sha256": "4bce197283c749a79a12bdefa85dbb6506656478806c629270594d52ecc6c14c"
46
+ },
37
47
  {
38
48
  "path": "contracts/ci-metrics.schema.json",
39
49
  "sha256": "63e05a5ee620069dac7f63ab5780a07900114534c201e3f449b1bd8de9365757"
40
50
  },
51
+ {
52
+ "path": "contracts/doctor-capability.schema.json",
53
+ "sha256": "c735afeffa740689d6a460a10b038f32b07c5eb34d07dd4ae17c18d1d74c3206"
54
+ },
55
+ {
56
+ "path": "contracts/external-platform-observation.schema.json",
57
+ "sha256": "5b364237b5be669d3239b616628f43c4e01c98764ad1d8b7154f14477f2ff654"
58
+ },
41
59
  {
42
60
  "path": "contracts/workflow-policy.json",
43
61
  "sha256": "c979394cdecc6a1a8cfec4d319c8539c90d93e17eac6c66c388efdeec28446a5"
@@ -56,7 +74,7 @@
56
74
  },
57
75
  {
58
76
  "path": "harness-archive/SKILL.md",
59
- "sha256": "aaa9d9ec4353d4a0526026699dd68598b2378ea28d88ff9cf1df12b104b0066d"
77
+ "sha256": "88aad31686c18d79b49c4061b631d8dffe9bd60c1767976bfb7b179a9b525f18"
60
78
  },
61
79
  {
62
80
  "path": "harness-archive/templates/render-summary.mjs",
@@ -76,7 +94,7 @@
76
94
  },
77
95
  {
78
96
  "path": "harness-codebase-map/SKILL.md",
79
- "sha256": "b7c1cbebfc69ff38a3417dd0e5c7f8db67379a4a1b101c3906e91996052731b3"
97
+ "sha256": "5d1aed46da64799aa2ad38bb8c3c35a21a5c3d8c781e57195a32fb0da7ad0391"
80
98
  },
81
99
  {
82
100
  "path": "harness-codebase-map/templates/ARCHITECTURE.md",
@@ -136,15 +154,15 @@
136
154
  },
137
155
  {
138
156
  "path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
139
- "sha256": "891e0d7b10ba2e0a608e818d5c4fef62117a808fe271af8b59731f889452e1b9"
157
+ "sha256": "4c83c3282b956143de287e6817f34687457c98f456f71749e2ad6ac4546a2498"
140
158
  },
141
159
  {
142
160
  "path": "harness-knowledge-ingest/SKILL.md",
143
- "sha256": "9e191548081c33b14318799ec1f718cbfea05a2b6ff18fa19d96394dd45c0d02"
161
+ "sha256": "22162a41500a1e4f0771629fbc37410ada942f5a489645e3975b1f388942d235"
144
162
  },
145
163
  {
146
164
  "path": "harness-knowledge-query/SKILL.md",
147
- "sha256": "ea1fe5faec9012cd9dbada3db5517928dc6d6283687326dfd2134257543ddc07"
165
+ "sha256": "4fa6b91eec4a8e233c3b767a97e2b1827586e1fe6e2055d06986c75e486a3469"
148
166
  },
149
167
  {
150
168
  "path": "harness-plan/checklist.md",
@@ -160,7 +178,7 @@
160
178
  },
161
179
  {
162
180
  "path": "harness-plan/SKILL.md",
163
- "sha256": "4caf6065d2d723d09c6ec71beee291748dd8f4b4327bfd754ed94abe85f92b1f"
181
+ "sha256": "6f7d2687ee2492e759aa975ab00689e31242a05bb456d3dd91f825b3e142909a"
164
182
  },
165
183
  {
166
184
  "path": "harness-review/checklist.md",
@@ -176,7 +194,7 @@
176
194
  },
177
195
  {
178
196
  "path": "harness-review/SKILL.md",
179
- "sha256": "a0ac46fb8ebdcff447bd24b6dbf6c5b343f4e7208353d9790a76167b77848c28"
197
+ "sha256": "6a0407834a74365836c6d99b7f5e33de70857abe78a086f974ca28d350dee581"
180
198
  },
181
199
  {
182
200
  "path": "harness-run/checklist.md",
@@ -192,7 +210,7 @@
192
210
  },
193
211
  {
194
212
  "path": "harness-run/SKILL.md",
195
- "sha256": "e4db9aaf1986dc10746ac5a6a83a56291079aaacbb1d8a6eb929f11e1f3c78a0"
213
+ "sha256": "310b408f4bea82c4b65f3964bfe9a22cb4a15526175f90b99c4ac28e5bbff714"
196
214
  },
197
215
  {
198
216
  "path": "harness-submit/checklist.md",
@@ -204,15 +222,15 @@
204
222
  },
205
223
  {
206
224
  "path": "harness-submit/SKILL.md",
207
- "sha256": "88828d9e90f226624be8ba4be0f03f72b5fc0b605d33ede4074d1672ed7b5b6b"
225
+ "sha256": "0f88cde7969a07e3fb303d7276bba4100a1739d465fd4c6a39d88c6d4519c1b3"
208
226
  },
209
227
  {
210
228
  "path": "harness-sync/reference.md",
211
- "sha256": "9d0be464bd32b14d9b0199988c46d44c83ef1e887dbbd4b85d640ee256818cd4"
229
+ "sha256": "e11bb410b602a5a8c3d1c14808b5407d46c982b39b6be2961b60b6ab3546af81"
212
230
  },
213
231
  {
214
232
  "path": "harness-sync/SKILL.md",
215
- "sha256": "e723586704a27fd5ac6a71d3c7c83f276ae98179864ef8414cc9a8f23f4c737b"
233
+ "sha256": "c747cfb8bb46f65f5299ffbfe2f00f445f7ff04080df67edf70c416aa8bf2a71"
216
234
  },
217
235
  {
218
236
  "path": "harness-test/checklist.md",
@@ -224,7 +242,7 @@
224
242
  },
225
243
  {
226
244
  "path": "harness-test/pitfalls.md",
227
- "sha256": "c96afa8739598a2a5977ed2e734e42d1b330901528df4651f33ec20c0295ec42"
245
+ "sha256": "2b14fc907885f0f4f5ec5d97e4c6f78fbd83bf1b1368c058b9154a3180c7e761"
228
246
  },
229
247
  {
230
248
  "path": "harness-test/reference.md",
@@ -236,20 +254,32 @@
236
254
  },
237
255
  {
238
256
  "path": "harness-test/SKILL.md",
239
- "sha256": "46b055cd48c9849066b53deeaa4eccda84fba7a20f323ce8bbbf5a534b22488d"
257
+ "sha256": "bc00673f756d8671bfc178faa8fdd94bcce5aed20ae26451c1fc5dc2b0873593"
240
258
  },
241
259
  {
242
260
  "path": "protocols/archive-report-protocol.md",
243
261
  "sha256": "c6677d730908580dfc58f954df6c950327a4928e283290e24d9ad715a5e54ae5"
244
262
  },
263
+ {
264
+ "path": "protocols/ci-layering-protocol.md",
265
+ "sha256": "52d953e9818dfd87736461204a9ce5f8fa08082b1b6f45b5e8aee9bb4482274c"
266
+ },
245
267
  {
246
268
  "path": "protocols/evidence-based-reporting-protocol.md",
247
269
  "sha256": "f78ea87823c0935a3033175b393582319da433cf4226e1705070b20d53890ba2"
248
270
  },
271
+ {
272
+ "path": "protocols/external-platform-protocol.md",
273
+ "sha256": "6893e3b6a5615ee3eda567952797f91f4d2fcec59c1f8fd947e472a4c1f6ed71"
274
+ },
249
275
  {
250
276
  "path": "protocols/ledger-protocol.md",
251
277
  "sha256": "56608039fd1babd469cb36b0f1c3d0871df460ddc36ef11c80d96218979f5217"
252
278
  },
279
+ {
280
+ "path": "protocols/memory-closeout-protocol.md",
281
+ "sha256": "abcace86782a66e1d522d339d2bebdaafa5a5452b5b9239dae4d3d3aa6a60bdc"
282
+ },
253
283
  {
254
284
  "path": "protocols/model-routing-protocol.md",
255
285
  "sha256": "1ce493d7dcc7a0c32b07b2d0118fdca40d72ca2487a63566f3c997293269f06e"
@@ -258,6 +288,10 @@
258
288
  "path": "protocols/powershell-protocol.md",
259
289
  "sha256": "f723f18eee08125e75f387e655f7e604eb603f636cd6809dd6b5948748f32d04"
260
290
  },
291
+ {
292
+ "path": "protocols/registry-governance-protocol.md",
293
+ "sha256": "b0a0c9d0d1aca114f5a92dd782e13e12af3277574d474d4fd69a80ea5be377c3"
294
+ },
261
295
  {
262
296
  "path": "protocols/report-pipeline-protocol.md",
263
297
  "sha256": "46ade8806083f2b83b41099976555291f01c44990977fc7eb968007dee5a653d"
@@ -274,6 +308,10 @@
274
308
  "path": "protocols/submit-protocol.md",
275
309
  "sha256": "01465556bd00fe01f91f315fd3eb365099eb3dd2e111331ba70c103a37794543"
276
310
  },
311
+ {
312
+ "path": "protocols/verification-graph-protocol.md",
313
+ "sha256": "f34b3dbcfb09ce0f3cbf56a22bda1b25afef305b6f57b90138ba7b366511f402"
314
+ },
277
315
  {
278
316
  "path": "README.md",
279
317
  "sha256": "0b2cd9f95c49abdc3b250219b7f885fce3a78248cccc859f1f186d862af1f201"
@@ -284,7 +322,7 @@
284
322
  },
285
323
  {
286
324
  "path": "scripts/harness_archive.py",
287
- "sha256": "7f1f03bdc35f1d2bebb895670fdf563b9ffa0fe4727ae45a68abba84e7e50ad7"
325
+ "sha256": "77b77ccbea2ec201294eb13763f90ca7bb2fc8f1fbdb4456e455d02bbcc78309"
288
326
  },
289
327
  {
290
328
  "path": "scripts/harness_change.py",
@@ -320,7 +358,7 @@
320
358
  },
321
359
  {
322
360
  "path": "scripts/harness_ledger.py",
323
- "sha256": "85b96dbc3d750443f989bff994d894d0a7b9dccd2e53401b54481782e1ea6ae5"
361
+ "sha256": "ffb7aa2f63b86edf74730dcf44cb530266bda2a8064bada11cd8240651b634e5"
324
362
  },
325
363
  {
326
364
  "path": "scripts/harness_migration_head.py",
@@ -344,11 +382,11 @@
344
382
  },
345
383
  {
346
384
  "path": "scripts/harness_preflight.py",
347
- "sha256": "ce1d3ddb0f81e33172f8dddbeb66c7d8407ac3f6742b56f139d5fc406f9973bb"
385
+ "sha256": "f4df5ebb1e0dc811076d801a037f84f04210bfe60cd058eea93fd4a84eefd95c"
348
386
  },
349
387
  {
350
388
  "path": "scripts/harness_profile.py",
351
- "sha256": "6d52450b57d0a6eb21ab8f6116e5e3d14bd5cd6c668f518c895bf0f723e62826"
389
+ "sha256": "cad15c1143a3fe42aa76e45ccf821dc212c2df281cbea21d0dcfde44f4ca26c7"
352
390
  },
353
391
  {
354
392
  "path": "scripts/harness_report_model.py",
@@ -4,19 +4,25 @@
4
4
  "adapter": "codebuddy",
5
5
  "bundle_version": "0.2.26",
6
6
  "requires": {
7
- "minimumCliVersion": "0.2.36",
7
+ "minimumCliVersion": "0.2.38",
8
8
  "capabilities": [
9
9
  "sync@1",
10
10
  "rules-sync@1",
11
11
  "rules-review@1",
12
- "knowledge-sync@2"
12
+ "knowledge-sync@2",
13
+ "build-profile@3",
14
+ "verification-graph@1",
15
+ "external-convergence@1",
16
+ "codegraph-status@1",
17
+ "doctor-capability@1",
18
+ "registry-governance@1"
13
19
  ]
14
20
  },
15
21
  "generator": "harness_deploy.py",
16
22
  "files": [
17
23
  {
18
24
  "path": ".harness-build.json",
19
- "sha256": "8fbe6ee09077bb9e7c9edceaaf40c075e638837d5630ebba8057bc66fbf4838d"
25
+ "sha256": "da39e9d61c838a42130c7eeb934f4c29b68b6c7deb25eed4804586bf813e1001"
20
26
  },
21
27
  {
22
28
  "path": "agents/harness-evaluator.md",
@@ -34,10 +40,22 @@
34
40
  "path": "CONTEXT.md",
35
41
  "sha256": "4838854cc45e8bd47552fb34e41cadca3121eeaa4597196568f35e25534d5a33"
36
42
  },
43
+ {
44
+ "path": "contracts/build-profile-v3.schema.json",
45
+ "sha256": "4bce197283c749a79a12bdefa85dbb6506656478806c629270594d52ecc6c14c"
46
+ },
37
47
  {
38
48
  "path": "contracts/ci-metrics.schema.json",
39
49
  "sha256": "63e05a5ee620069dac7f63ab5780a07900114534c201e3f449b1bd8de9365757"
40
50
  },
51
+ {
52
+ "path": "contracts/doctor-capability.schema.json",
53
+ "sha256": "c735afeffa740689d6a460a10b038f32b07c5eb34d07dd4ae17c18d1d74c3206"
54
+ },
55
+ {
56
+ "path": "contracts/external-platform-observation.schema.json",
57
+ "sha256": "5b364237b5be669d3239b616628f43c4e01c98764ad1d8b7154f14477f2ff654"
58
+ },
41
59
  {
42
60
  "path": "contracts/workflow-policy.json",
43
61
  "sha256": "c979394cdecc6a1a8cfec4d319c8539c90d93e17eac6c66c388efdeec28446a5"
@@ -56,7 +74,7 @@
56
74
  },
57
75
  {
58
76
  "path": "harness-archive/SKILL.md",
59
- "sha256": "5af5a30cd1084e4cc23a26c09789ef02c1a078530d8b80623b9199fbe60d5d7d"
77
+ "sha256": "1d579409139a0583279234c76b1be55fa8c905c89130c4403d6956a00c6180ef"
60
78
  },
61
79
  {
62
80
  "path": "harness-archive/templates/render-summary.mjs",
@@ -76,7 +94,7 @@
76
94
  },
77
95
  {
78
96
  "path": "harness-codebase-map/SKILL.md",
79
- "sha256": "74d5c186b5b35b8b1302e064872ab811492c9161cc4deee81b39d29b2b262b91"
97
+ "sha256": "d4544a836f4a943def266b7fdf4693182de04248b93c669ffa56302efb827e6f"
80
98
  },
81
99
  {
82
100
  "path": "harness-codebase-map/templates/ARCHITECTURE.md",
@@ -136,15 +154,15 @@
136
154
  },
137
155
  {
138
156
  "path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
139
- "sha256": "891e0d7b10ba2e0a608e818d5c4fef62117a808fe271af8b59731f889452e1b9"
157
+ "sha256": "4c83c3282b956143de287e6817f34687457c98f456f71749e2ad6ac4546a2498"
140
158
  },
141
159
  {
142
160
  "path": "harness-knowledge-ingest/SKILL.md",
143
- "sha256": "85923964c4ec466a94bb7344c637dea41456894ca85ae1d0c398a85e0cfeb3dc"
161
+ "sha256": "223a3ffb8b4a94c1f054cd44381f6e345c097dc133424ee5f10587906aabec3a"
144
162
  },
145
163
  {
146
164
  "path": "harness-knowledge-query/SKILL.md",
147
- "sha256": "835ca89d7898c23c054c579b6a4b469c4799f5a672109a69900dc9cf89e6bc4b"
165
+ "sha256": "73365c663a146325676fe46fba3d8bec4dbb5f05895a493faa90fe258d39fbe8"
148
166
  },
149
167
  {
150
168
  "path": "harness-plan/checklist.md",
@@ -160,7 +178,7 @@
160
178
  },
161
179
  {
162
180
  "path": "harness-plan/SKILL.md",
163
- "sha256": "44201c0b54e63e60f6b91afccb84cbf2b4ae47f8fb4f2792b9f3faf13b7785f4"
181
+ "sha256": "56e85a2309e4a6721dc2e9f495b95e665abd3488de4a6f0b9e62be0699e1ec1e"
164
182
  },
165
183
  {
166
184
  "path": "harness-review/checklist.md",
@@ -176,7 +194,7 @@
176
194
  },
177
195
  {
178
196
  "path": "harness-review/SKILL.md",
179
- "sha256": "387477f5d524a674533777925407ea40fd5089bbed8bf89245bd448294316574"
197
+ "sha256": "73657d7ae976f04e651ea6ad002ba09feaf5324b66b7e6d6678052b759ea47fc"
180
198
  },
181
199
  {
182
200
  "path": "harness-run/checklist.md",
@@ -192,7 +210,7 @@
192
210
  },
193
211
  {
194
212
  "path": "harness-run/SKILL.md",
195
- "sha256": "4c7d80a0dd96c0a847a219996ea3a0a4e43b26e7dba14045ec5a1e45c3710d83"
213
+ "sha256": "ff87360ded93608de9ec00fb4ff110c2ab25cc7cd57fb47323262d6ebf2f54f0"
196
214
  },
197
215
  {
198
216
  "path": "harness-submit/checklist.md",
@@ -204,15 +222,15 @@
204
222
  },
205
223
  {
206
224
  "path": "harness-submit/SKILL.md",
207
- "sha256": "a5b11a67fe1955dc0e91726ac30682469431c297f9049e25d5c681bbf908e3a7"
225
+ "sha256": "39c2c4b9b72d332e9ed60e8eb6a981a2ad50ad0033d53014092c30bc7848553d"
208
226
  },
209
227
  {
210
228
  "path": "harness-sync/reference.md",
211
- "sha256": "9d0be464bd32b14d9b0199988c46d44c83ef1e887dbbd4b85d640ee256818cd4"
229
+ "sha256": "e11bb410b602a5a8c3d1c14808b5407d46c982b39b6be2961b60b6ab3546af81"
212
230
  },
213
231
  {
214
232
  "path": "harness-sync/SKILL.md",
215
- "sha256": "58cddcc731bb1900e441ed1147240999f00208d97e2fb06ffc8d5f7397be33f4"
233
+ "sha256": "9e6a716dbb838982179e7d260c8146308126067afd722ecc700c42481140992a"
216
234
  },
217
235
  {
218
236
  "path": "harness-test/checklist.md",
@@ -224,7 +242,7 @@
224
242
  },
225
243
  {
226
244
  "path": "harness-test/pitfalls.md",
227
- "sha256": "c96afa8739598a2a5977ed2e734e42d1b330901528df4651f33ec20c0295ec42"
245
+ "sha256": "2b14fc907885f0f4f5ec5d97e4c6f78fbd83bf1b1368c058b9154a3180c7e761"
228
246
  },
229
247
  {
230
248
  "path": "harness-test/reference.md",
@@ -236,20 +254,32 @@
236
254
  },
237
255
  {
238
256
  "path": "harness-test/SKILL.md",
239
- "sha256": "387fbbad8f90a416a18c538caba4308009c5d498a8fab506670984e48ca27775"
257
+ "sha256": "cf7a505bd4fb6316063e1880ad4b93219fcbe7768fd3b83430bc6ae545765fe3"
240
258
  },
241
259
  {
242
260
  "path": "protocols/archive-report-protocol.md",
243
261
  "sha256": "c6677d730908580dfc58f954df6c950327a4928e283290e24d9ad715a5e54ae5"
244
262
  },
263
+ {
264
+ "path": "protocols/ci-layering-protocol.md",
265
+ "sha256": "52d953e9818dfd87736461204a9ce5f8fa08082b1b6f45b5e8aee9bb4482274c"
266
+ },
245
267
  {
246
268
  "path": "protocols/evidence-based-reporting-protocol.md",
247
269
  "sha256": "f78ea87823c0935a3033175b393582319da433cf4226e1705070b20d53890ba2"
248
270
  },
271
+ {
272
+ "path": "protocols/external-platform-protocol.md",
273
+ "sha256": "6893e3b6a5615ee3eda567952797f91f4d2fcec59c1f8fd947e472a4c1f6ed71"
274
+ },
249
275
  {
250
276
  "path": "protocols/ledger-protocol.md",
251
277
  "sha256": "56608039fd1babd469cb36b0f1c3d0871df460ddc36ef11c80d96218979f5217"
252
278
  },
279
+ {
280
+ "path": "protocols/memory-closeout-protocol.md",
281
+ "sha256": "abcace86782a66e1d522d339d2bebdaafa5a5452b5b9239dae4d3d3aa6a60bdc"
282
+ },
253
283
  {
254
284
  "path": "protocols/model-routing-protocol.md",
255
285
  "sha256": "1ce493d7dcc7a0c32b07b2d0118fdca40d72ca2487a63566f3c997293269f06e"
@@ -258,6 +288,10 @@
258
288
  "path": "protocols/powershell-protocol.md",
259
289
  "sha256": "f723f18eee08125e75f387e655f7e604eb603f636cd6809dd6b5948748f32d04"
260
290
  },
291
+ {
292
+ "path": "protocols/registry-governance-protocol.md",
293
+ "sha256": "b0a0c9d0d1aca114f5a92dd782e13e12af3277574d474d4fd69a80ea5be377c3"
294
+ },
261
295
  {
262
296
  "path": "protocols/report-pipeline-protocol.md",
263
297
  "sha256": "46ade8806083f2b83b41099976555291f01c44990977fc7eb968007dee5a653d"
@@ -274,6 +308,10 @@
274
308
  "path": "protocols/submit-protocol.md",
275
309
  "sha256": "01465556bd00fe01f91f315fd3eb365099eb3dd2e111331ba70c103a37794543"
276
310
  },
311
+ {
312
+ "path": "protocols/verification-graph-protocol.md",
313
+ "sha256": "f34b3dbcfb09ce0f3cbf56a22bda1b25afef305b6f57b90138ba7b366511f402"
314
+ },
277
315
  {
278
316
  "path": "README.md",
279
317
  "sha256": "0b2cd9f95c49abdc3b250219b7f885fce3a78248cccc859f1f186d862af1f201"
@@ -284,7 +322,7 @@
284
322
  },
285
323
  {
286
324
  "path": "scripts/harness_archive.py",
287
- "sha256": "7f1f03bdc35f1d2bebb895670fdf563b9ffa0fe4727ae45a68abba84e7e50ad7"
325
+ "sha256": "77b77ccbea2ec201294eb13763f90ca7bb2fc8f1fbdb4456e455d02bbcc78309"
288
326
  },
289
327
  {
290
328
  "path": "scripts/harness_change.py",
@@ -320,7 +358,7 @@
320
358
  },
321
359
  {
322
360
  "path": "scripts/harness_ledger.py",
323
- "sha256": "85b96dbc3d750443f989bff994d894d0a7b9dccd2e53401b54481782e1ea6ae5"
361
+ "sha256": "ffb7aa2f63b86edf74730dcf44cb530266bda2a8064bada11cd8240651b634e5"
324
362
  },
325
363
  {
326
364
  "path": "scripts/harness_migration_head.py",
@@ -344,11 +382,11 @@
344
382
  },
345
383
  {
346
384
  "path": "scripts/harness_preflight.py",
347
- "sha256": "ce1d3ddb0f81e33172f8dddbeb66c7d8407ac3f6742b56f139d5fc406f9973bb"
385
+ "sha256": "f4df5ebb1e0dc811076d801a037f84f04210bfe60cd058eea93fd4a84eefd95c"
348
386
  },
349
387
  {
350
388
  "path": "scripts/harness_profile.py",
351
- "sha256": "6d52450b57d0a6eb21ab8f6116e5e3d14bd5cd6c668f518c895bf0f723e62826"
389
+ "sha256": "cad15c1143a3fe42aa76e45ccf821dc212c2df281cbea21d0dcfde44f4ca26c7"
352
390
  },
353
391
  {
354
392
  "path": "scripts/harness_report_model.py",
@@ -4,28 +4,46 @@
4
4
  "adapter": "codex",
5
5
  "bundle_version": "0.2.26",
6
6
  "requires": {
7
- "minimumCliVersion": "0.2.36",
7
+ "minimumCliVersion": "0.2.38",
8
8
  "capabilities": [
9
9
  "sync@1",
10
10
  "rules-sync@1",
11
11
  "rules-review@1",
12
- "knowledge-sync@2"
12
+ "knowledge-sync@2",
13
+ "build-profile@3",
14
+ "verification-graph@1",
15
+ "external-convergence@1",
16
+ "codegraph-status@1",
17
+ "doctor-capability@1",
18
+ "registry-governance@1"
13
19
  ]
14
20
  },
15
21
  "generator": "harness_deploy.py",
16
22
  "files": [
17
23
  {
18
24
  "path": ".harness-build.json",
19
- "sha256": "78ea8ae1fb2ba2219526bd7a0df1aa485639475b4aa2dbdaf5a50c28b40f2eb8"
25
+ "sha256": "74f7e5ff13a246fad26edc386a247a3ccb78a417e12e44c8594037160a3f2f29"
20
26
  },
21
27
  {
22
28
  "path": "CONTEXT.md",
23
29
  "sha256": "4838854cc45e8bd47552fb34e41cadca3121eeaa4597196568f35e25534d5a33"
24
30
  },
31
+ {
32
+ "path": "contracts/build-profile-v3.schema.json",
33
+ "sha256": "4bce197283c749a79a12bdefa85dbb6506656478806c629270594d52ecc6c14c"
34
+ },
25
35
  {
26
36
  "path": "contracts/ci-metrics.schema.json",
27
37
  "sha256": "63e05a5ee620069dac7f63ab5780a07900114534c201e3f449b1bd8de9365757"
28
38
  },
39
+ {
40
+ "path": "contracts/doctor-capability.schema.json",
41
+ "sha256": "c735afeffa740689d6a460a10b038f32b07c5eb34d07dd4ae17c18d1d74c3206"
42
+ },
43
+ {
44
+ "path": "contracts/external-platform-observation.schema.json",
45
+ "sha256": "5b364237b5be669d3239b616628f43c4e01c98764ad1d8b7154f14477f2ff654"
46
+ },
29
47
  {
30
48
  "path": "contracts/workflow-policy.json",
31
49
  "sha256": "c979394cdecc6a1a8cfec4d319c8539c90d93e17eac6c66c388efdeec28446a5"
@@ -44,7 +62,7 @@
44
62
  },
45
63
  {
46
64
  "path": "harness-archive/SKILL.md",
47
- "sha256": "4cdd79a36a80a2fbd0e934b22ce17c3fd7ee4a6a0cee5d2726847f1da1ac52ba"
65
+ "sha256": "30b67cdf313afab9038d5cfcdb305fd2f8a98fe31cc8795e51814a946bb10ac2"
48
66
  },
49
67
  {
50
68
  "path": "harness-archive/templates/render-summary.mjs",
@@ -64,7 +82,7 @@
64
82
  },
65
83
  {
66
84
  "path": "harness-codebase-map/SKILL.md",
67
- "sha256": "e629f0f108491c79c25afe5390e71092a5352bf47ce91eef1d46f854eefca1a4"
85
+ "sha256": "aa2f26387c7ec260ba9aa23f9088e277064ee6e6ba89a01d42021fc12374f396"
68
86
  },
69
87
  {
70
88
  "path": "harness-codebase-map/templates/ARCHITECTURE.md",
@@ -124,15 +142,15 @@
124
142
  },
125
143
  {
126
144
  "path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
127
- "sha256": "891e0d7b10ba2e0a608e818d5c4fef62117a808fe271af8b59731f889452e1b9"
145
+ "sha256": "4c83c3282b956143de287e6817f34687457c98f456f71749e2ad6ac4546a2498"
128
146
  },
129
147
  {
130
148
  "path": "harness-knowledge-ingest/SKILL.md",
131
- "sha256": "2115e4fc448ef6de3fea5c75af6db6a0a14e6830b63bb46048020d7f376b04ea"
149
+ "sha256": "1a354f02d80d7ef9a50c16ebecee3ad521331ff7585569eaa2b67f5360edbd6b"
132
150
  },
133
151
  {
134
152
  "path": "harness-knowledge-query/SKILL.md",
135
- "sha256": "663f92a1baf5f8e54928d85c41130dff4730f5182e591259b221d00f757a4939"
153
+ "sha256": "b8bea08c288ba3c8e8785fe4a240f5c1b881d6bbd9dba5db4266484e7339e53c"
136
154
  },
137
155
  {
138
156
  "path": "harness-plan/checklist.md",
@@ -148,7 +166,7 @@
148
166
  },
149
167
  {
150
168
  "path": "harness-plan/SKILL.md",
151
- "sha256": "10ff9627ccbf871e1d7cea8f51cff2c8adc7d7478677ea188e426cdf349acac4"
169
+ "sha256": "6998c39710e9d28cc1cf5623861fe98486037b0f77ec41bd13f286379bd73b5e"
152
170
  },
153
171
  {
154
172
  "path": "harness-review/checklist.md",
@@ -164,7 +182,7 @@
164
182
  },
165
183
  {
166
184
  "path": "harness-review/SKILL.md",
167
- "sha256": "f7073ce677cfdc580a8e5f123c7fc8b01d09d8d75941837dd4a03ff66f00d8fd"
185
+ "sha256": "eaffa11f253c19713fa324dc9ba17befafb483f971ec01fcd0a56a70e853433e"
168
186
  },
169
187
  {
170
188
  "path": "harness-run/checklist.md",
@@ -180,7 +198,7 @@
180
198
  },
181
199
  {
182
200
  "path": "harness-run/SKILL.md",
183
- "sha256": "482843c7d90097fa0a979537769c470c08e71b4d838621ef289105b522bfc668"
201
+ "sha256": "70e9b9d20f023637a97b90406b9463e450455f35db32501a138b35b73f9e4e5b"
184
202
  },
185
203
  {
186
204
  "path": "harness-submit/checklist.md",
@@ -192,15 +210,15 @@
192
210
  },
193
211
  {
194
212
  "path": "harness-submit/SKILL.md",
195
- "sha256": "ccdbb997fb3e140e8b84a5d9338a6340b49dd99518e89e6296f717689d842338"
213
+ "sha256": "9fd2c73a8ea739f87827b4f791c3513609b72d8f7084d67b174b211e04cd344d"
196
214
  },
197
215
  {
198
216
  "path": "harness-sync/reference.md",
199
- "sha256": "9d0be464bd32b14d9b0199988c46d44c83ef1e887dbbd4b85d640ee256818cd4"
217
+ "sha256": "e11bb410b602a5a8c3d1c14808b5407d46c982b39b6be2961b60b6ab3546af81"
200
218
  },
201
219
  {
202
220
  "path": "harness-sync/SKILL.md",
203
- "sha256": "f6db41eae2905afdca85e9b6d7beea7470921b9a88b935cfb8eb65d45d96f426"
221
+ "sha256": "bc7c5424afc4b84b5a5c26e0d39f58c960370c5abd1a4f83e86cecca389b50a8"
204
222
  },
205
223
  {
206
224
  "path": "harness-test/checklist.md",
@@ -212,7 +230,7 @@
212
230
  },
213
231
  {
214
232
  "path": "harness-test/pitfalls.md",
215
- "sha256": "c96afa8739598a2a5977ed2e734e42d1b330901528df4651f33ec20c0295ec42"
233
+ "sha256": "2b14fc907885f0f4f5ec5d97e4c6f78fbd83bf1b1368c058b9154a3180c7e761"
216
234
  },
217
235
  {
218
236
  "path": "harness-test/reference.md",
@@ -224,20 +242,32 @@
224
242
  },
225
243
  {
226
244
  "path": "harness-test/SKILL.md",
227
- "sha256": "98819c412a72a95e33ca78372b578de9faf76c4f1b03d5819cd731f78f7aac4f"
245
+ "sha256": "434c9938794523f9da2e1d7afd7afb92bc29ed49f764863724fcf53fb2971b4d"
228
246
  },
229
247
  {
230
248
  "path": "protocols/archive-report-protocol.md",
231
249
  "sha256": "c6677d730908580dfc58f954df6c950327a4928e283290e24d9ad715a5e54ae5"
232
250
  },
251
+ {
252
+ "path": "protocols/ci-layering-protocol.md",
253
+ "sha256": "52d953e9818dfd87736461204a9ce5f8fa08082b1b6f45b5e8aee9bb4482274c"
254
+ },
233
255
  {
234
256
  "path": "protocols/evidence-based-reporting-protocol.md",
235
257
  "sha256": "f78ea87823c0935a3033175b393582319da433cf4226e1705070b20d53890ba2"
236
258
  },
259
+ {
260
+ "path": "protocols/external-platform-protocol.md",
261
+ "sha256": "6893e3b6a5615ee3eda567952797f91f4d2fcec59c1f8fd947e472a4c1f6ed71"
262
+ },
237
263
  {
238
264
  "path": "protocols/ledger-protocol.md",
239
265
  "sha256": "56608039fd1babd469cb36b0f1c3d0871df460ddc36ef11c80d96218979f5217"
240
266
  },
267
+ {
268
+ "path": "protocols/memory-closeout-protocol.md",
269
+ "sha256": "abcace86782a66e1d522d339d2bebdaafa5a5452b5b9239dae4d3d3aa6a60bdc"
270
+ },
241
271
  {
242
272
  "path": "protocols/model-routing-protocol.md",
243
273
  "sha256": "1ce493d7dcc7a0c32b07b2d0118fdca40d72ca2487a63566f3c997293269f06e"
@@ -246,6 +276,10 @@
246
276
  "path": "protocols/powershell-protocol.md",
247
277
  "sha256": "f723f18eee08125e75f387e655f7e604eb603f636cd6809dd6b5948748f32d04"
248
278
  },
279
+ {
280
+ "path": "protocols/registry-governance-protocol.md",
281
+ "sha256": "b0a0c9d0d1aca114f5a92dd782e13e12af3277574d474d4fd69a80ea5be377c3"
282
+ },
249
283
  {
250
284
  "path": "protocols/report-pipeline-protocol.md",
251
285
  "sha256": "46ade8806083f2b83b41099976555291f01c44990977fc7eb968007dee5a653d"
@@ -262,6 +296,10 @@
262
296
  "path": "protocols/submit-protocol.md",
263
297
  "sha256": "01465556bd00fe01f91f315fd3eb365099eb3dd2e111331ba70c103a37794543"
264
298
  },
299
+ {
300
+ "path": "protocols/verification-graph-protocol.md",
301
+ "sha256": "f34b3dbcfb09ce0f3cbf56a22bda1b25afef305b6f57b90138ba7b366511f402"
302
+ },
265
303
  {
266
304
  "path": "README.md",
267
305
  "sha256": "0b2cd9f95c49abdc3b250219b7f885fce3a78248cccc859f1f186d862af1f201"
@@ -272,7 +310,7 @@
272
310
  },
273
311
  {
274
312
  "path": "scripts/harness_archive.py",
275
- "sha256": "7f1f03bdc35f1d2bebb895670fdf563b9ffa0fe4727ae45a68abba84e7e50ad7"
313
+ "sha256": "77b77ccbea2ec201294eb13763f90ca7bb2fc8f1fbdb4456e455d02bbcc78309"
276
314
  },
277
315
  {
278
316
  "path": "scripts/harness_change.py",
@@ -308,7 +346,7 @@
308
346
  },
309
347
  {
310
348
  "path": "scripts/harness_ledger.py",
311
- "sha256": "85b96dbc3d750443f989bff994d894d0a7b9dccd2e53401b54481782e1ea6ae5"
349
+ "sha256": "ffb7aa2f63b86edf74730dcf44cb530266bda2a8064bada11cd8240651b634e5"
312
350
  },
313
351
  {
314
352
  "path": "scripts/harness_migration_head.py",
@@ -332,11 +370,11 @@
332
370
  },
333
371
  {
334
372
  "path": "scripts/harness_preflight.py",
335
- "sha256": "ce1d3ddb0f81e33172f8dddbeb66c7d8407ac3f6742b56f139d5fc406f9973bb"
373
+ "sha256": "f4df5ebb1e0dc811076d801a037f84f04210bfe60cd058eea93fd4a84eefd95c"
336
374
  },
337
375
  {
338
376
  "path": "scripts/harness_profile.py",
339
- "sha256": "6d52450b57d0a6eb21ab8f6116e5e3d14bd5cd6c668f518c895bf0f723e62826"
377
+ "sha256": "cad15c1143a3fe42aa76e45ccf821dc212c2df281cbea21d0dcfde44f4ca26c7"
340
378
  },
341
379
  {
342
380
  "path": "scripts/harness_report_model.py",