aiwg 2026.9.0 → 2026.9.2

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 (387) hide show
  1. package/README.md +13 -8
  2. package/agentic/code/addons/aiwg-utils/docs/overview.md +2 -2
  3. package/agentic/code/addons/aiwg-utils/skills/aiwg-language-map/SKILL.md +44 -0
  4. package/agentic/code/addons/aiwg-utils/skills/hook-status/SKILL.md +1 -1
  5. package/agentic/code/addons/aiwg-utils/skills/soul-status/SKILL.md +1 -1
  6. package/agentic/code/addons/aiwg-utils/skills/steward/SKILL.md +1 -1
  7. package/agentic/code/addons/aiwg-utils/skills/steward-quickref/SKILL.md +1 -0
  8. package/agentic/code/addons/civic-action/README.md +30 -20
  9. package/agentic/code/addons/civic-action/commands/civic-action.mjs +11 -2
  10. package/agentic/code/addons/civic-action/docs/issue-traceability.md +5 -0
  11. package/agentic/code/addons/civic-action/docs/overview.md +25 -1
  12. package/agentic/code/addons/civic-action/docs/quickstart.md +92 -25
  13. package/agentic/code/addons/civic-action/docs/research/aiwg-design-patterns.md +6 -0
  14. package/agentic/code/addons/civic-action/docs/research/civic-workflow-standards.md +5 -0
  15. package/agentic/code/addons/civic-action/docs/research/control-source-matrix.md +11 -6
  16. package/agentic/code/addons/civic-action/docs/research/legal-ethics-guardrails.md +5 -0
  17. package/agentic/code/addons/civic-action/docs/research/synthesis-and-readiness.md +5 -0
  18. package/agentic/code/addons/civic-action/examples/invalid/publication-uncited.json +5 -4
  19. package/agentic/code/addons/civic-action/examples/valid/publication-packet.json +5 -4
  20. package/agentic/code/addons/civic-action/lib/gate-engine.mjs +39 -5
  21. package/agentic/code/addons/civic-action/lib/schema-validator.mjs +4 -1
  22. package/agentic/code/addons/civic-action/schemas/correction-record.schema.json +2 -2
  23. package/agentic/code/addons/civic-action/schemas/local-resource-index.schema.json +28 -3
  24. package/agentic/code/addons/civic-action/schemas/meeting-reconciliation.schema.json +1 -1
  25. package/agentic/code/addons/civic-action/schemas/public-records-plan.schema.json +23 -1
  26. package/agentic/code/addons/civic-action/schemas/public-technology-review.schema.json +2 -2
  27. package/agentic/code/addons/civic-action/schemas/publication-packet.schema.json +7 -6
  28. package/agentic/code/addons/civic-action/schemas/vote-ledger.schema.json +1 -1
  29. package/agentic/code/addons/civic-action/templates/publication-review.md +8 -3
  30. package/agentic/code/addons/compound-memory/docs/operator-guide.md +5 -0
  31. package/agentic/code/addons/dataset-intelligence/README.md +16 -0
  32. package/agentic/code/addons/dataset-intelligence/agents/dataset-policy-reviewer.md +20 -0
  33. package/agentic/code/addons/dataset-intelligence/agents/dataset-provenance-reviewer.md +20 -0
  34. package/agentic/code/addons/dataset-intelligence/agents/dataset-source-architect.md +22 -0
  35. package/agentic/code/addons/dataset-intelligence/agents/dataset-steward.md +21 -0
  36. package/agentic/code/addons/dataset-intelligence/commands/dataset.md +14 -0
  37. package/agentic/code/addons/dataset-intelligence/deprecations/dataset-deprecations.v1.json +6 -0
  38. package/agentic/code/addons/dataset-intelligence/docs/adapter-authoring.md +17 -0
  39. package/agentic/code/addons/dataset-intelligence/docs/fortemi-boundaries.md +20 -0
  40. package/agentic/code/addons/dataset-intelligence/docs/migration-guide.md +31 -0
  41. package/agentic/code/addons/dataset-intelligence/docs/offline-troubleshooting.md +32 -0
  42. package/agentic/code/addons/dataset-intelligence/docs/overview.md +59 -0
  43. package/agentic/code/addons/dataset-intelligence/docs/quickstart.md +96 -0
  44. package/agentic/code/addons/dataset-intelligence/docs/task-guide.md +94 -0
  45. package/agentic/code/addons/dataset-intelligence/docs/worked-examples.md +48 -0
  46. package/agentic/code/addons/dataset-intelligence/examples/invalid/dataset-intake.v1.json +10 -0
  47. package/agentic/code/addons/dataset-intelligence/examples/invalid/dataset-workflow-handoff.v1.json +13 -0
  48. package/agentic/code/addons/dataset-intelligence/examples/valid/dataset-intake.v1.json +20 -0
  49. package/agentic/code/addons/dataset-intelligence/examples/valid/dataset-workflow-cancelled.v1.json +18 -0
  50. package/agentic/code/addons/dataset-intelligence/examples/valid/dataset-workflow-degraded.v1.json +17 -0
  51. package/agentic/code/addons/dataset-intelligence/examples/valid/dataset-workflow-handoff.v1.json +19 -0
  52. package/agentic/code/addons/dataset-intelligence/examples/valid/dataset-workflow-retired.v1.json +17 -0
  53. package/agentic/code/addons/dataset-intelligence/flows/capabilities/dataset-capability-recommend.yaml +16 -0
  54. package/agentic/code/addons/dataset-intelligence/flows/capabilities/dataset-export.yaml +19 -0
  55. package/agentic/code/addons/dataset-intelligence/flows/capabilities/dataset-ingest.yaml +20 -0
  56. package/agentic/code/addons/dataset-intelligence/flows/capabilities/dataset-intake.yaml +14 -0
  57. package/agentic/code/addons/dataset-intelligence/flows/capabilities/dataset-plan-review.yaml +14 -0
  58. package/agentic/code/addons/dataset-intelligence/flows/capabilities/dataset-retire.yaml +18 -0
  59. package/agentic/code/addons/dataset-intelligence/flows/capabilities/dataset-source-assess.yaml +14 -0
  60. package/agentic/code/addons/dataset-intelligence/flows/capabilities/dataset-trace.yaml +14 -0
  61. package/agentic/code/addons/dataset-intelligence/flows/capabilities/dataset-verify.yaml +16 -0
  62. package/agentic/code/addons/dataset-intelligence/flows/dataset-incremental-sync.yaml +43 -0
  63. package/agentic/code/addons/dataset-intelligence/flows/dataset-one-shot.yaml +47 -0
  64. package/agentic/code/addons/dataset-intelligence/flows/dataset-retirement.yaml +35 -0
  65. package/agentic/code/addons/dataset-intelligence/manifest.json +46 -0
  66. package/agentic/code/addons/dataset-intelligence/rules/RULES-INDEX.md +5 -0
  67. package/agentic/code/addons/dataset-intelligence/rules/dataset-safety.md +32 -0
  68. package/agentic/code/addons/dataset-intelligence/schemas/dataset-intake.v1.schema.json +55 -0
  69. package/agentic/code/addons/dataset-intelligence/schemas/dataset-workflow-handoff.v1.schema.json +87 -0
  70. package/agentic/code/addons/dataset-intelligence/skills/dataset-capability-recommend/SKILL.md +22 -0
  71. package/agentic/code/addons/dataset-intelligence/skills/dataset-export/SKILL.md +20 -0
  72. package/agentic/code/addons/dataset-intelligence/skills/dataset-ingest/SKILL.md +22 -0
  73. package/agentic/code/addons/dataset-intelligence/skills/dataset-intake/SKILL.md +22 -0
  74. package/agentic/code/addons/dataset-intelligence/skills/dataset-intelligence/SKILL.md +36 -0
  75. package/agentic/code/addons/dataset-intelligence/skills/dataset-plan-review/SKILL.md +21 -0
  76. package/agentic/code/addons/dataset-intelligence/skills/dataset-retire/SKILL.md +24 -0
  77. package/agentic/code/addons/dataset-intelligence/skills/dataset-source-assess/SKILL.md +21 -0
  78. package/agentic/code/addons/dataset-intelligence/skills/dataset-trace/SKILL.md +22 -0
  79. package/agentic/code/addons/dataset-intelligence/skills/dataset-verify/SKILL.md +21 -0
  80. package/agentic/code/addons/rlm/docs/deployment-guide.md +2 -2
  81. package/agentic/code/addons/rlm/docs/multi-provider-guide.md +1 -1
  82. package/agentic/code/addons/schema-governance/README.md +29 -0
  83. package/agentic/code/addons/schema-governance/agents/schema-architect.md +20 -0
  84. package/agentic/code/addons/schema-governance/agents/schema-reviewer.md +18 -0
  85. package/agentic/code/addons/schema-governance/agents/schema-steward.md +21 -0
  86. package/agentic/code/addons/schema-governance/commands/schema.md +10 -0
  87. package/agentic/code/addons/schema-governance/flows/capabilities/schema-author.yaml +10 -0
  88. package/agentic/code/addons/schema-governance/flows/capabilities/schema-evolve.yaml +10 -0
  89. package/agentic/code/addons/schema-governance/flows/capabilities/schema-intake.yaml +10 -0
  90. package/agentic/code/addons/schema-governance/flows/capabilities/schema-review.yaml +10 -0
  91. package/agentic/code/addons/schema-governance/flows/schema-change.yaml +9 -0
  92. package/agentic/code/addons/schema-governance/flows/schema-lifecycle.yaml +10 -0
  93. package/agentic/code/addons/schema-governance/manifest.json +20 -0
  94. package/agentic/code/addons/schema-governance/rules/schema-first.md +16 -0
  95. package/agentic/code/addons/schema-governance/skills/schema-author/SKILL.md +17 -0
  96. package/agentic/code/addons/schema-governance/skills/schema-evolve/SKILL.md +16 -0
  97. package/agentic/code/addons/schema-governance/skills/schema-intake/SKILL.md +20 -0
  98. package/agentic/code/addons/schema-governance/skills/schema-onboard/SKILL.md +16 -0
  99. package/agentic/code/addons/schema-governance/skills/schema-review/SKILL.md +16 -0
  100. package/agentic/code/addons/schema-governance/templates/schema-brief.md +16 -0
  101. package/agentic/code/addons/semantic-memory/skills/memory-ingest/SKILL.md +5 -0
  102. package/agentic/code/addons/voice-framework/README.md +15 -2
  103. package/agentic/code/addons/voice-framework/docs/custom-output-modes.md +156 -0
  104. package/agentic/code/addons/voice-framework/docs/output-mode-integration.md +113 -0
  105. package/agentic/code/addons/voice-framework/docs/output-mode-troubleshooting.md +94 -0
  106. package/agentic/code/addons/voice-framework/docs/output-modes.md +81 -14
  107. package/agentic/code/addons/voice-framework/docs/overview.md +12 -1
  108. package/agentic/code/addons/voice-framework/docs/quickstart.md +2 -0
  109. package/agentic/code/addons/voice-framework/manifest.json +2 -1
  110. package/agentic/code/addons/voice-framework/schemas/output-mode-profile.schema.json +25 -8
  111. package/agentic/code/addons/voice-framework/skills/manifest.json +5 -0
  112. package/agentic/code/addons/voice-framework/skills/output-mode-guide/SKILL.md +43 -0
  113. package/agentic/code/frameworks/research-complete/skills/research-provenance/SKILL.md +5 -0
  114. package/agentic/code/frameworks/sdlc-complete/agents/api-designer.md +2 -1
  115. package/agentic/code/frameworks/sdlc-complete/flows/capabilities/discovery-design-contracts.yaml +5 -2
  116. package/agentic/code/frameworks/sdlc-complete/flows/capabilities/handoff-review-design.yaml +2 -2
  117. package/agentic/code/frameworks/sdlc-complete/flows/handoff-checklist-template.md +2 -1
  118. package/agentic/code/frameworks/sdlc-complete/skills/check-traceability/SKILL.md +5 -0
  119. package/agentic/code/frameworks/sdlc-complete/skills/flow-discovery-track/SKILL.md +17 -4
  120. package/agentic/code/frameworks/sdlc-complete/skills/sdlc-quickref/SKILL.md +2 -0
  121. package/agentic/code/frameworks/sdlc-complete/templates/pi/AGENTS.md.aiwg-template +20 -0
  122. package/agentic/code/frameworks/sdlc-complete/templates/requirements/data-contract-template.md +20 -2
  123. package/agentic/code/plugins/agent-loop/.claude-plugin/plugin.json +1 -1
  124. package/agentic/code/plugins/agent-persistence/.claude-plugin/plugin.json +1 -1
  125. package/agentic/code/plugins/agentic-installer/.claude-plugin/plugin.json +1 -1
  126. package/agentic/code/plugins/aiwg-dev/.claude-plugin/plugin.json +1 -1
  127. package/agentic/code/plugins/aiwg-evals/.claude-plugin/plugin.json +1 -1
  128. package/agentic/code/plugins/auto-memory/.claude-plugin/plugin.json +1 -1
  129. package/agentic/code/plugins/browser-control/.claude-plugin/plugin.json +1 -1
  130. package/agentic/code/plugins/color-palette/.claude-plugin/plugin.json +1 -1
  131. package/agentic/code/plugins/compound-memory/.claude-plugin/plugin.json +1 -1
  132. package/agentic/code/plugins/context-curator/.claude-plugin/plugin.json +1 -1
  133. package/agentic/code/plugins/daemon/.claude-plugin/plugin.json +1 -1
  134. package/agentic/code/plugins/doc-intelligence/.claude-plugin/plugin.json +1 -1
  135. package/agentic/code/plugins/droid-bridge/.claude-plugin/plugin.json +1 -1
  136. package/agentic/code/plugins/forensics/.claude-plugin/plugin.json +1 -1
  137. package/agentic/code/plugins/guided-implementation/.claude-plugin/plugin.json +1 -1
  138. package/agentic/code/plugins/hooks/.claude-plugin/plugin.json +1 -1
  139. package/agentic/code/plugins/knowledge-base/.claude-plugin/plugin.json +1 -1
  140. package/agentic/code/plugins/line-memory/.claude-plugin/plugin.json +1 -1
  141. package/agentic/code/plugins/llm-wiki/.claude-plugin/plugin.json +1 -1
  142. package/agentic/code/plugins/marketing/.claude-plugin/plugin.json +1 -1
  143. package/agentic/code/plugins/media-curator/.claude-plugin/plugin.json +1 -1
  144. package/agentic/code/plugins/nlp-prod/.claude-plugin/plugin.json +1 -1
  145. package/agentic/code/plugins/ops/.claude-plugin/plugin.json +1 -1
  146. package/agentic/code/plugins/prose-integration/.claude-plugin/plugin.json +1 -1
  147. package/agentic/code/plugins/research/.claude-plugin/plugin.json +1 -1
  148. package/agentic/code/plugins/rlm/.claude-plugin/plugin.json +1 -1
  149. package/agentic/code/plugins/rlm/docs/deployment-guide.md +2 -2
  150. package/agentic/code/plugins/rlm/docs/multi-provider-guide.md +1 -1
  151. package/agentic/code/plugins/sdlc/.claude-plugin/plugin.json +1 -1
  152. package/agentic/code/plugins/security-engineering/.claude-plugin/plugin.json +1 -1
  153. package/agentic/code/plugins/semantic-memory/.claude-plugin/plugin.json +1 -1
  154. package/agentic/code/plugins/skill-factory/.claude-plugin/plugin.json +1 -1
  155. package/agentic/code/plugins/star-prompt/.claude-plugin/plugin.json +1 -1
  156. package/agentic/code/plugins/testing-quality/.claude-plugin/plugin.json +1 -1
  157. package/agentic/code/plugins/twelve-factor/.claude-plugin/plugin.json +1 -1
  158. package/agentic/code/plugins/uat-mcp/.claude-plugin/plugin.json +1 -1
  159. package/agentic/code/plugins/utils/.claude-plugin/plugin.json +1 -1
  160. package/agentic/code/plugins/utils/skills/hook-status/SKILL.md +1 -1
  161. package/agentic/code/plugins/utils/skills/soul-status/SKILL.md +1 -1
  162. package/agentic/code/plugins/utils/skills/steward/SKILL.md +1 -1
  163. package/agentic/code/plugins/validation-complete/.claude-plugin/plugin.json +1 -1
  164. package/agentic/code/plugins/verbalized-sampling/.claude-plugin/plugin.json +1 -1
  165. package/agentic/code/plugins/voice/.claude-plugin/plugin.json +1 -1
  166. package/agentic/code/plugins/writing/.claude-plugin/plugin.json +1 -1
  167. package/agentic/code/providers/capability-matrix.yaml +41 -0
  168. package/agentic/code/providers/model-capabilities.v1.json +11 -0
  169. package/agentic/code/providers/model-catalog.v1.json +8 -0
  170. package/agentic/code/providers/pi/aiwg-bridge.ts +26 -0
  171. package/bin/aiwg.mjs +15 -3
  172. package/dist/src/api/index.d.ts +3 -0
  173. package/dist/src/api/index.js +3 -0
  174. package/dist/src/auth/credential-store.js +6 -0
  175. package/dist/src/channel/manager.mjs +2 -2
  176. package/dist/src/cli/handlers/dataset.js +186 -0
  177. package/dist/src/cli/handlers/help.js +2 -1
  178. package/dist/src/cli/handlers/index.js +5 -1
  179. package/dist/src/cli/handlers/init.js +1 -0
  180. package/dist/src/cli/handlers/output-mode.js +18 -1
  181. package/dist/src/cli/handlers/run.js +11 -3
  182. package/dist/src/cli/handlers/schema.js +221 -0
  183. package/dist/src/cli/handlers/sessions.js +30 -12
  184. package/dist/src/cli/handlers/steward.js +11 -1
  185. package/dist/src/cli/handlers/use.js +6 -2
  186. package/dist/src/cli/hooks/builtin/activity-log-hook.js +6 -0
  187. package/dist/src/cli/router.js +1 -1
  188. package/dist/src/cli/scope-resolver.js +22 -0
  189. package/dist/src/dataset/adapter-sdk.d.ts +41 -0
  190. package/dist/src/dataset/adapter-sdk.js +147 -0
  191. package/dist/src/dataset/adapter-types.d.ts +179 -0
  192. package/dist/src/dataset/adapter-types.js +2 -0
  193. package/dist/src/dataset/adapters.d.ts +104 -0
  194. package/dist/src/dataset/adapters.js +518 -0
  195. package/dist/src/dataset/conformance-types.d.ts +84 -0
  196. package/dist/src/dataset/conformance-types.js +3 -0
  197. package/dist/src/dataset/conformance.d.ts +13 -0
  198. package/dist/src/dataset/conformance.js +90 -0
  199. package/dist/src/dataset/contracts.d.ts +17 -0
  200. package/dist/src/dataset/contracts.js +236 -0
  201. package/dist/src/dataset/file-orchestration-repository.d.ts +19 -0
  202. package/dist/src/dataset/file-orchestration-repository.js +68 -0
  203. package/dist/src/dataset/fortemi-execution-bridge.d.ts +33 -0
  204. package/dist/src/dataset/fortemi-execution-bridge.js +35 -0
  205. package/dist/src/dataset/index.d.ts +21 -0
  206. package/dist/src/dataset/index.js +21 -0
  207. package/dist/src/dataset/ledger-types.d.ts +141 -0
  208. package/dist/src/dataset/ledger-types.js +2 -0
  209. package/dist/src/dataset/ledger.d.ts +27 -0
  210. package/dist/src/dataset/ledger.js +100 -0
  211. package/dist/src/dataset/local-execution-backend.d.ts +10 -0
  212. package/dist/src/dataset/local-execution-backend.js +32 -0
  213. package/dist/src/dataset/orchestration-repository.d.ts +29 -0
  214. package/dist/src/dataset/orchestration-repository.js +34 -0
  215. package/dist/src/dataset/orchestration-service.d.ts +56 -0
  216. package/dist/src/dataset/orchestration-service.js +466 -0
  217. package/dist/src/dataset/orchestration-types.d.ts +83 -0
  218. package/dist/src/dataset/orchestration-types.js +2 -0
  219. package/dist/src/dataset/presentation.d.ts +3 -0
  220. package/dist/src/dataset/presentation.js +8 -0
  221. package/dist/src/dataset/projections.d.ts +42 -0
  222. package/dist/src/dataset/projections.js +192 -0
  223. package/dist/src/dataset/schema-governance.d.ts +71 -0
  224. package/dist/src/dataset/schema-governance.js +135 -0
  225. package/dist/src/dataset/standards-types.d.ts +66 -0
  226. package/dist/src/dataset/standards-types.js +10 -0
  227. package/dist/src/dataset/standards.d.ts +13 -0
  228. package/dist/src/dataset/standards.js +291 -0
  229. package/dist/src/dataset/types.d.ts +258 -0
  230. package/dist/src/dataset/types.js +2 -0
  231. package/dist/src/extensions/commands/definitions.js +27 -1
  232. package/dist/src/installation/manager.mjs +5 -1
  233. package/dist/src/models/model-discovery.js +32 -0
  234. package/dist/src/models/provider-policy.js +3 -2
  235. package/dist/src/output-modes/index.js +4 -0
  236. package/dist/src/output-modes/registry.js +68 -24
  237. package/dist/src/output-modes/runtime.js +10 -8
  238. package/dist/src/plugin/skill-command-translator.js +1 -0
  239. package/dist/src/providers/provider-definitions.js +72 -0
  240. package/dist/src/providers/provider-inventory.js +1 -0
  241. package/dist/src/schema/catalog.js +234 -0
  242. package/dist/src/schema/compatibility.js +42 -0
  243. package/dist/src/schema/diagnostics.js +36 -0
  244. package/dist/src/schema/index.js +8 -0
  245. package/dist/src/schema/policy.js +58 -0
  246. package/dist/src/schema/resolver.js +76 -0
  247. package/dist/src/schema/types.js +2 -0
  248. package/dist/src/schema/validator.js +82 -0
  249. package/dist/src/sessions/adapters/pi.js +141 -0
  250. package/dist/src/sessions/contracts.js +1 -1
  251. package/dist/src/sessions/index.js +1 -0
  252. package/dist/src/sessions/workspace-discovery.js +10 -0
  253. package/dist/src/storage/backends/fortemi.js +6 -0
  254. package/dist/src/storage/config.js +18 -4
  255. package/dist/src/storage/fortemi-qualification.js +106 -0
  256. package/dist/src/storage/index.js +1 -0
  257. package/dist/src/storage/types.js +1 -1
  258. package/docs/_manifest.json +121 -1
  259. package/docs/addons/aiwg-utils/overview.md +2 -2
  260. package/docs/addons/civic-action/issue-traceability.md +5 -0
  261. package/docs/addons/civic-action/overview.md +25 -1
  262. package/docs/addons/civic-action/quickstart.md +92 -25
  263. package/docs/addons/civic-action/research/aiwg-design-patterns.md +6 -0
  264. package/docs/addons/civic-action/research/civic-workflow-standards.md +5 -0
  265. package/docs/addons/civic-action/research/control-source-matrix.md +11 -6
  266. package/docs/addons/civic-action/research/legal-ethics-guardrails.md +5 -0
  267. package/docs/addons/civic-action/research/synthesis-and-readiness.md +5 -0
  268. package/docs/addons/compound-memory/operator-guide.md +5 -0
  269. package/docs/addons/dataset-intelligence/adapter-authoring.md +17 -0
  270. package/docs/addons/dataset-intelligence/fortemi-boundaries.md +20 -0
  271. package/docs/addons/dataset-intelligence/migration-guide.md +31 -0
  272. package/docs/addons/dataset-intelligence/offline-troubleshooting.md +32 -0
  273. package/docs/addons/dataset-intelligence/overview.md +59 -0
  274. package/docs/addons/dataset-intelligence/quickstart.md +96 -0
  275. package/docs/addons/dataset-intelligence/task-guide.md +94 -0
  276. package/docs/addons/dataset-intelligence/worked-examples.md +48 -0
  277. package/docs/addons/rlm/deployment-guide.md +2 -2
  278. package/docs/addons/rlm/multi-provider-guide.md +1 -1
  279. package/docs/addons/voice-framework/custom-output-modes.md +156 -0
  280. package/docs/addons/voice-framework/output-mode-integration.md +113 -0
  281. package/docs/addons/voice-framework/output-mode-troubleshooting.md +94 -0
  282. package/docs/addons/voice-framework/output-modes.md +81 -14
  283. package/docs/addons/voice-framework/overview.md +12 -1
  284. package/docs/addons/voice-framework/quickstart.md +2 -0
  285. package/docs/agent-loop/manual-provider-testing.md +6 -0
  286. package/docs/agents/providers/README.md +1 -0
  287. package/docs/agents/providers/pi.md +202 -0
  288. package/docs/architecture/adr-dataset-intelligence-control-plane.md +68 -0
  289. package/docs/architecture/documentation-information-architecture.md +30 -31
  290. package/docs/architecture/schema-control-plane.md +58 -0
  291. package/docs/architecture/schema-inventory.md +31 -0
  292. package/docs/architecture-overview.md +2 -2
  293. package/docs/cli/README.md +1 -1
  294. package/docs/cli/_manifest.json +2 -2
  295. package/docs/cli/capability-routing.md +5 -3
  296. package/docs/cli/install-and-repair.md +3 -2
  297. package/docs/cli/reference.md +50 -9
  298. package/docs/cli/schema.md +22 -0
  299. package/docs/config.json +1 -1
  300. package/docs/contracts/dataset-intelligence-v1.md +86 -0
  301. package/docs/dataset/schema-governance.md +26 -0
  302. package/docs/dataset/source-adapters.md +45 -0
  303. package/docs/dataset/standards-profiles.md +63 -0
  304. package/docs/dataset-orchestration.md +11 -0
  305. package/docs/development/documentation-audience-guide.md +11 -6
  306. package/docs/development/documentation-migration-map.md +10 -11
  307. package/docs/development/schema-authoring.md +26 -0
  308. package/docs/docs-sources.json +19 -0
  309. package/docs/getting-started/README.md +6 -2
  310. package/docs/getting-started/install-connect-verify.md +90 -107
  311. package/docs/getting-started/just-try-it.md +33 -66
  312. package/docs/getting-started/onboarding-validation.md +2 -2
  313. package/docs/getting-started/provider-handoff.md +48 -47
  314. package/docs/getting-started/start-here.md +60 -108
  315. package/docs/how-it-works.md +1 -1
  316. package/docs/integrations/_manifest.json +4 -0
  317. package/docs/integrations/cross-platform-overview.md +21 -6
  318. package/docs/integrations/fortemi-index-export.md +4 -0
  319. package/docs/integrations/pi-quickstart.md +99 -0
  320. package/docs/mcp/README.md +5 -0
  321. package/docs/overview/executive-brief.md +2 -1
  322. package/docs/overview/what-is-aiwg.md +7 -3
  323. package/docs/planning/pi-coding-agent/README.md +58 -0
  324. package/docs/planning/pi-coding-agent/adr-001-native-resources-first.md +61 -0
  325. package/docs/planning/pi-coding-agent/architecture.md +148 -0
  326. package/docs/planning/pi-coding-agent/implementation-plan.md +201 -0
  327. package/docs/planning/session-intelligence/provider-conformance-matrix.json +11 -1
  328. package/docs/providers/git-native-marketplace.md +5 -0
  329. package/docs/providers/marketplace-consumer.md +2 -2
  330. package/docs/providers/pi-sessions.md +7 -0
  331. package/docs/providers/provider-inventory.md +29 -0
  332. package/docs/public-docs.json +3 -14
  333. package/docs/quickstart-mmk.md +1 -1
  334. package/docs/quickstart-sdlc.md +1 -1
  335. package/docs/quickstart.md +28 -45
  336. package/docs/releases/v2026.9.1-announcement.md +85 -0
  337. package/docs/releases/v2026.9.2-announcement.md +91 -0
  338. package/docs/security/schema-execution-threat-model.md +38 -0
  339. package/docs/skills/agent-skills.md +1 -0
  340. package/docs/storage/backends/fortemi.md +17 -0
  341. package/docs/testing/dataset-intelligence-conformance.md +64 -0
  342. package/docs/testing/model-provider-conformance.md +34 -2
  343. package/docs/user-level-indices.md +5 -0
  344. package/docs/yaml-metalanguage.md +1 -1
  345. package/package.json +15 -2
  346. package/prebuilt/fortemi-core/framework/aiwg-fortemi-index-v2.json +1 -1
  347. package/prebuilt/fortemi-core/framework/manifest.json +2 -2
  348. package/schemas/catalog/catalog.json +16 -0
  349. package/schemas/catalog/catalog.v1.schema.json +23 -0
  350. package/schemas/catalog/domain-manifest.v1.schema.json +16 -0
  351. package/schemas/catalog/domains/control-plane.json +53 -0
  352. package/schemas/catalog/domains/dataset.json +289 -0
  353. package/schemas/catalog/domains/repository-json-schemas.json +1771 -0
  354. package/schemas/catalog/schema-artifact.v1.schema.json +98 -0
  355. package/schemas/dataset/conformance-manifest.v1.schema.json +35 -0
  356. package/schemas/dataset/conformance-receipt.v1.schema.json +22 -0
  357. package/schemas/dataset/dataset-contracts.v1.schema.json +117 -0
  358. package/schemas/dataset/dataset-deprecations.v1.schema.json +37 -0
  359. package/schemas/dataset/dataset-schema-governance.v1.schema.json +92 -0
  360. package/schemas/dataset/dataset-standards-exchange.v1.schema.json +59 -0
  361. package/schemas/dataset/profiles/openlineage-1.0.0.schema.json +15 -0
  362. package/schemas/dataset/profiles/prov-json-20130430.schema.json +12 -0
  363. package/schemas/dataset/run-ledger.v1.schema.json +39 -0
  364. package/schemas/dataset/source-adapter.v1.schema.json +112 -0
  365. package/schemas/mission-protocol/inventory-v1.json +12 -10
  366. package/schemas/policy/dependency-lock.json +5 -0
  367. package/schemas/policy/strict-exceptions.json +117 -0
  368. package/schemas/storage/storage.config.v1.schema.json +50 -0
  369. package/tools/agents/deploy-agents.mjs +9 -3
  370. package/tools/agents/providers/pi.mjs +176 -0
  371. package/tools/cli/doctor.mjs +1 -1
  372. package/tools/cli/wizard.mjs +2 -1
  373. package/tools/docs/audit-audiences.mjs +12 -0
  374. package/tools/docs/build-public-source.mjs +3 -4
  375. package/tools/docs/public-command-policy.mjs +62 -15
  376. package/tools/manifest/check-discovery-coverage.mjs +1 -1
  377. package/tools/providers/pi-live-smoke.mjs +222 -0
  378. package/tools/qualification/dataset-conformance.ts +128 -0
  379. package/tools/qualification/dataset-local-cells.ts +105 -0
  380. package/tools/qualification/dataset-source-adapters.ts +42 -0
  381. package/tools/ralph-external/index.mjs +13 -3
  382. package/tools/ralph-external/lib/pi-adapter.mjs +56 -0
  383. package/tools/ralph-external/lib/provider-adapter.mjs +6 -0
  384. package/tools/ralph-external/orchestrator.mjs +2 -0
  385. package/tools/ralph-external/session-launcher.mjs +9 -4
  386. package/tools/scripts/build-schema-catalog.mjs +122 -0
  387. package/tools/scripts/lint-schemas.mjs +242 -26
package/README.md CHANGED
@@ -1,10 +1,10 @@
1
1
  <div align="center">
2
2
 
3
- <a href="https://aiwg.io"><img src="https://aiwg.io/assets/badges/aiwg-hero-dark.png" alt="AIWG — multi-agent AI framework · one source of truth · 10 platforms" width="680"></a>
3
+ <a href="https://aiwg.io"><img src="https://aiwg.io/assets/badges/aiwg-hero-dark.png" alt="AIWG — multi-agent AI framework · one source of truth · 12 provider integrations" width="680"></a>
4
4
 
5
5
  # AIWG
6
6
 
7
- **Multi-agent AI framework for Claude Code, Copilot, Cursor, Warp, and 6 more platforms**
7
+ **Multi-agent AI framework for 12 provider integrations, including Claude Code, Codex, Copilot, Cursor, Pi, and Warp**
8
8
 
9
9
  200+ agents, 109+ CLI commands, 400+ deployable agent/skill/command/rule artifacts, 8 core frameworks, 32 addons, and a 40-plugin Claude Code marketplace. SDLC workflows, digital forensics, research management, marketing operations, media curation, ops infrastructure, knowledge base, and fine-tuning dataset curation — all deployable with one command.
10
10
 
@@ -85,7 +85,8 @@ Agents and stewards setting up AIWG end-to-end should use the
85
85
  [![GitHub Stars](https://img.shields.io/github/stars/jmagly/aiwg?style=flat-square)](https://github.com/jmagly/aiwg/stargazers)
86
86
  [![Node Version](https://img.shields.io/badge/node-%E2%89%A520.0.0-brightgreen?style=flat-square&logo=node.js)](https://nodejs.org)
87
87
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.x-blue?style=flat-square&logo=typescript)](https://www.typescriptlang.org)
88
- [![10 Platforms](https://img.shields.io/badge/Platforms-10-purple?style=flat-square)](#-platform-support)
88
+ [![12 Providers](https://img.shields.io/badge/Providers-12-purple?style=flat-square)](#-platform-support)
89
+ [![Listed on mcpservers.org](https://mcpservers.org/badge.svg)](https://mcpservers.org/servers/docs-aiwg-io)
89
90
 
90
91
  [![Built With AIWG](https://aiwg.io/assets/badges/built-with-aiwg-dark.png)](https://aiwg.io/badges)
91
92
 
@@ -163,7 +164,7 @@ You can also invoke AIWG without adjusting `PATH` by using `npx aiwg <command>`.
163
164
 
164
165
  ## What AIWG Is
165
166
 
166
- AIWG is a deployment tool and support utility for AI context. At its core, `aiwg use` copies markdown and YAML source files into the specific paths each AI platform looks in `.claude/agents/`, `.agents/skills/`, `.cursor/rules/`, `.github/prompts/`, and six more so one source of truth works across 10 platforms.
167
+ AIWG is a deployment tool and support utility for AI context. At its core, `aiwg use` copies markdown and YAML source files into the paths each provider reads, so one source of truth works across 12 named provider integrations. A thirteenth `generic` adapter emits portable files for unrecognized or custom harnesses and is not counted as a named integration.
167
168
 
168
169
  Around that core, AIWG ships agent-facing utilities for things the base platforms do not handle on their own: persistent artifact memory (`.aiwg/`), background orchestration, autonomous loops, artifact indexing, cost telemetry, health diagnostics, and more. These are tools the agent calls when you ask for something AIWG-shaped — you stay in chat. Most are opt-in. The deployment layer works standalone as plain text files the platform reads natively.
169
170
 
@@ -542,7 +543,7 @@ The orchestration pattern: **Primary Author → Parallel Reviewers → Synthesiz
542
543
  - **128 workflow skills** — natural language triggers for regression testing, forensics, voice profiles, quality gates, and CI/CD integration
543
544
  - **35 enforcement rules** — anti-laziness detection, token security, citation integrity, executable feedback, failure mitigation across 6 LLM archetypes
544
545
  - **334 artifact templates** — progressive disclosure templates for requirements, architecture, testing, security, deployment, and more
545
- - **Multi-platform support** — deploy to Claude Code, Copilot, Cursor, Warp, Factory AI, OpenCode, Codex, Devin Desktop, OpenClaw, Hermes, and OpenHuman
546
+ - **Multi-provider support** — deploy to Claude Code, OpenAI Codex, GitHub Copilot, Cursor, Factory AI, Hermes, OpenCode, OpenClaw, OpenHuman, Pi Coding Agent, Warp Terminal, and Devin Desktop
546
547
  - **8 core frameworks + training marketplace package** — SDLC, Digital Forensics, Marketing Operations, Research Management, Media Curation, Ops Infrastructure, Knowledge Base, Security Engineering, plus [`aiwg-training`](https://github.com/jmagly/aiwg-training) for fine-tuning dataset curation (corpus-to-dataset pipeline with DPO/KTO/ORPO/SimPO export)
547
548
  - **32 addons** — compound memory, line memory, llm-wiki (Obsidian-native knowledge base), RLM recursive decomposition, fleet operations, browser control, testing quality, and more
548
549
  - **40 Claude Code plugins** — the complete framework and addon catalog is installable independently from the AIWG marketplace
@@ -1383,7 +1384,7 @@ See [Messaging Guide](docs/messaging-guide.md) for setup and configuration.
1383
1384
 
1384
1385
  ## Platform Support
1385
1386
 
1386
- All 8 platforms receive agents, commands, skills, and rules. Deployment adapts to each platform's conventions automatically.
1387
+ AIWG supports 12 named provider integrations. Artifact support varies by provider and is adapted to each provider's native or compatibility surfaces.
1387
1388
 
1388
1389
  | Platform | Status | Agents | Commands | Skills | Rules | Deploy Command |
1389
1390
  |----------|--------|--------|----------|--------|-------|---------------|
@@ -1395,6 +1396,10 @@ All 8 platforms receive agents, commands, skills, and rules. Deployment adapts t
1395
1396
  | **OpenCode** | Tested | `.opencode/agent/` | `.opencode/commands/` | `.opencode/skill/` | `.opencode/rule/` | `--provider opencode` |
1396
1397
  | **OpenAI/Codex** | Tested | `.codex/agents/` | `~/.codex/prompts/` | `.agents/skills/` | `.codex/rules/` | `--provider codex` |
1397
1398
  | **Devin Desktop** | Tested compatibility adapter | AGENTS.md | `.windsurf/workflows/` | `.windsurf/skills/` | `.windsurf/rules/` | `--provider devin` |
1399
+ | **Hermes** | Experimental | — | — | `~/.hermes/skills/.aiwg/` | — | `--provider hermes` |
1400
+ | **OpenClaw** | Tested | `~/.openclaw/agents/` | `~/.openclaw/commands/` | `~/.openclaw/.aiwg/skills/` | `~/.openclaw/rules/` | `--provider openclaw` |
1401
+ | **OpenHuman** | Experimental | — | — | `~/.openhuman/.aiwg/skills/` | `~/.openhuman/.aiwg/rules/` | `--provider openhuman` |
1402
+ | **Pi Coding Agent** | Experimental | `.agents/skills/` | `.pi/prompts/` | `.agents/skills/` | `AGENTS.md` | `--provider pi` |
1398
1403
 
1399
1404
  The legacy `--provider windsurf` selector remains supported and writes the
1400
1405
  same `.windsurf/` compatibility paths, but new commands should use `devin`.
@@ -1474,7 +1479,7 @@ aiwg sdlc-accelerate --from-codebase .
1474
1479
 
1475
1480
  ### Extension System
1476
1481
 
1477
- AIWG uses a unified extension system with 10 extension types, all deployable across 8 platforms:
1482
+ AIWG uses a unified extension system with 10 extension types, projected onto the supported artifact surfaces of 12 named provider integrations:
1478
1483
 
1479
1484
  | Type | Count | Description |
1480
1485
  |------|-------|-------------|
@@ -1852,7 +1857,7 @@ Full research background, citations, and methodology: [docs/research/](docs/rese
1852
1857
 
1853
1858
  ### For Engineering Teams
1854
1859
 
1855
- **Standardize how your team works with AI across 8 platforms.** Whether your team uses Claude Code, Copilot, Cursor, or Warp, everyone gets the same agents, rules, and workflows. The 35 enforcement rules prevent common AI mistakes: deleting tests to make them pass, fabricating citations, hard-coding tokens, or silently dropping features. Human-in-the-loop gates at phase transitions ensure no AI output reaches production without human review.
1860
+ **Standardize how your team works with AI across 12 provider integrations.** Whether your team uses Claude Code, Codex, Copilot, Cursor, Pi, or Warp, everyone can receive the same source workflows adapted to the provider's supported surfaces. The 35 enforcement rules prevent common AI mistakes: deleting tests to make them pass, fabricating citations, hard-coding tokens, or silently dropping features. Human-in-the-loop gates at phase transitions ensure no AI output reaches production without human review.
1856
1861
 
1857
1862
  ### For Platform Engineers
1858
1863
 
@@ -8,7 +8,7 @@ Beyond the rules, aiwg-utils also provides:
8
8
 
9
9
  - **5 agents**: `context-regenerator`, `aiwg-developer`, `consortium-coordinator`, `self-debug`, `aiwg-steward`
10
10
  - **9 skills**: `project-awareness`, `schedule`, `soul-create`, `soul-validate`, `soul-enhance`, `soul-apply`, `soul-blend`, `aiwg-sync`, `aiwg-guide`
11
- - **Platform regeneration commands**: `aiwg-regenerate-claude`, `aiwg-regenerate-warp`, `aiwg-regenerate-factory`, and equivalents for all 9 providers
11
+ - **Provider regeneration commands**: provider-native `aiwg-regenerate` prompts or skills across all 12 named integrations, adapted to each provider's command surface
12
12
  - **Workspace commands**: `workspace-realign`, `workspace-prune-working`, `workspace-reset`
13
13
  - **@-mention tooling**: `mention-wire`, `mention-validate`, `mention-report`, `mention-lint`
14
14
  - **Hook management**: `hook-enable`, `hook-disable`, `hook-status`, `hook-regenerate`
@@ -59,7 +59,7 @@ Apply when: Telegram/group-chat bots, multi-bot rooms, direct-message business b
59
59
 
60
60
  #### native-ux-tools
61
61
 
62
- Use platform-native interaction tools (e.g., Claude Code's AskUserQuestion) for interactive questions rather than plain text. One question per interaction turn. Includes a platform capability matrix for all 8 supported providers; falls back to formatted markdown if native tools are unavailable.
62
+ Use provider-native interaction tools (e.g., Claude Code's AskUserQuestion) for interactive questions rather than plain text. One question per interaction turn. The capability matrix covers all 12 named provider integrations and falls back to formatted markdown if native tools are unavailable.
63
63
 
64
64
  Apply when: interactive commands (`--interactive` flag), decision gates, intake wizards.
65
65
 
@@ -34,6 +34,50 @@ Each section opens with an explicit `aiwg discover "<phrase>"` example. Table ro
34
34
 
35
35
  ## Addon capability domains
36
36
 
37
+ ### Dataset intelligence, indexing & provenance
38
+
39
+ When a user points AIWG at files, an API, a corpus, or another dataset and asks
40
+ for search, indexing, traceability, provenance, lineage, synchronization, or
41
+ safe retirement—even when they do not know those terms.
42
+
43
+ Example: `aiwg discover "make this searchable"`. Phrases below pass straight to
44
+ `aiwg discover`.
45
+
46
+ | Need | Phrase | Bundle |
47
+ |---|---|---|
48
+ | Start from only a source and outcome | `use this data` | dataset-intelligence |
49
+ | Recommend custom indexing safely | `make this searchable` | dataset-intelligence |
50
+ | Add evidence-bearing traceability | `trace this dataset` | dataset-intelligence |
51
+ | Explain record or field lineage | `where did this record come from` | dataset-intelligence |
52
+ | Verify freshness and provenance | `verify this dataset` | dataset-intelligence |
53
+ | Resume an incremental source | `sync this source` | dataset-intelligence |
54
+ | Retire data and derived artifacts safely | `retire this dataset` | dataset-intelligence |
55
+
56
+ The same governed intake and handoff envelopes serve SDLC, research,
57
+ knowledge-base, media, marketing, ops, and project-local bundles. All execution
58
+ delegates to `aiwg dataset`; the addon does not create a shadow runtime.
59
+
60
+ ### Schemas & data contracts
61
+
62
+ When the user describes a record, configuration file, event, API payload,
63
+ message, import/export, or other structured data—even when they do not know to
64
+ ask for a schema.
65
+
66
+ Example: `aiwg discover "define data shape"`. Phrases below pass straight to
67
+ `aiwg discover`.
68
+
69
+ | Need | Phrase | Bundle |
70
+ |---|---|---|
71
+ | Decide whether structured data needs a contract | `define data shape` | schema-governance |
72
+ | Explain schemas and continue examples-first | `why do I need a schema` | schema-governance |
73
+ | Author and register a canonical schema | `create a schema` | schema-governance |
74
+ | Evolve an existing contract safely | `change an existing schema` | schema-governance |
75
+ | Review correctness and readiness | `review a data contract` | schema-governance |
76
+
77
+ The SDLC discovery track invokes this addon automatically for persistent or
78
+ exchanged data. Users should describe the data need; they need not choose a
79
+ dialect, identifier, lifecycle, or compatibility policy themselves.
80
+
37
81
  ### Loops & iteration
38
82
 
39
83
  When the user needs an iterative coding loop, recursive context decomposition, eval gates, or guided autonomous implementation.
@@ -91,7 +91,7 @@ With `--verbose`, include hook file details:
91
91
 
92
92
  ## Workflow
93
93
 
94
- 1. For each of the 8 providers, check context file existence
94
+ 1. For each provider returned by the authoritative provider registry, check context file existence
95
95
  2. If context file exists, grep for hook directive
96
96
  3. If directive found, check hook file existence
97
97
  4. Format output with status symbols
@@ -138,7 +138,7 @@ With `--verbose`, include additional detail:
138
138
  ## Workflow
139
139
 
140
140
  1. Locate SOUL.md (check `./SOUL.md`, `./.aiwg/SOUL.md`)
141
- 2. For each of the 8 providers, check context file existence
141
+ 2. For each provider returned by the authoritative provider registry, check context file existence
142
142
  3. If context file exists, grep for `@SOUL.md` directive
143
143
  4. Check enforcement rule existence
144
144
  5. Scan for per-agent `.soul.md` files
@@ -319,7 +319,7 @@ exists in the production CLI.
319
319
  aiwg steward capabilities --all
320
320
  ```
321
321
 
322
- **Response**: Formatted table of all 9 providers x all 6 features, with native/emulated/unsupported indicators.
322
+ **Response**: Formatted table of all named providers and requested features, with native/emulated/unsupported indicators from the authoritative capability matrix.
323
323
 
324
324
  ## Clarification Prompts
325
325
 
@@ -10,6 +10,7 @@ triggers:
10
10
  - select a persona
11
11
  - scaffold a project
12
12
  - steward routing
13
+ - steward capabilities
13
14
  - steward model routing
14
15
  - model catalog routing
15
16
  - cheap first model policy
@@ -10,26 +10,36 @@ content, or makes legal conclusions. Those transitions require named human
10
10
  review. A machine pass covers only the declared, schema-valid fields inspected
11
11
  by that command; it is not factual verification, compliance, or authorization.
12
12
 
13
- ## Install and discover
14
-
15
- ```bash
16
- aiwg use civic-action
17
- aiwg discover "plan a public records request"
18
- aiwg discover "reconcile a public meeting transcript with minutes"
19
- aiwg discover "publish cited local public information"
13
+ ## Ask the steward to set it up
14
+
15
+ Start in your agent conversation. The steward can inspect the provider and
16
+ workspace, preview the opt-in installation, preserve existing configuration,
17
+ and verify the deployed agents, skills, flows, and gates:
18
+
19
+ ```text
20
+ Act as the AIWG steward and set up Civic Action for this project. Inspect the
21
+ current AIWG and provider configuration first. Explain whether you will enable
22
+ the canonical civic-action addon directly or through an available provider
23
+ plugin wrapper, preview every file or setting that will change, preserve local
24
+ customizations, and ask for approval before writing. After setup, verify that
25
+ the civic skills, agents, flows, templates, schemas, and validation gates are
26
+ discoverable. Report any unavailable optional integration and its degraded
27
+ mode. Do not submit, contact, record, identify, or publish anything.
20
28
  ```
21
29
 
22
- ## Executable gates
30
+ Then describe the civic outcome rather than selecting implementation commands:
23
31
 
24
- ```bash
25
- aiwg civic source-gate source-registry.json
26
- aiwg civic meeting-gate vote-ledger.json reconciliation.json
27
- aiwg civic publish-gate publication-packet.json
32
+ ```text
33
+ Plan a public records request for human review using authoritative sources and
34
+ the correct jurisdiction. Preserve uncertainty, identify every required human
35
+ decision, and stop before submission.
28
36
  ```
29
37
 
30
- All commands write a JSON report to stdout. Exit `0` means no blocking
31
- finding, exit `1` means one or more `block` findings, and exit `2` means invalid
32
- input or usage. Warnings remain in the report for human disposition.
38
+ Advanced operators and automation can use the direct addon installation and
39
+ gate commands documented in the
40
+ [Civic Action CLI reference](https://docs.aiwg.io/pages/cli--reference.html#civic-action).
41
+ Command results remain review evidence: they never authorize an external civic
42
+ action.
33
43
 
34
44
  ## Capability map
35
45
 
@@ -45,9 +55,9 @@ input or usage. Warnings remain in the report for human disposition.
45
55
  | Local public resources | `local-resource-index`, CAP/GTFS/HSDS profile contract |
46
56
 
47
57
  Optional frameworks add research, transcription, knowledge-base, editorial,
48
- operations, and security capabilities. If absent, skills emit an explicit
49
- `blocked-dependency-missing` or `manual-review-required` state; they do not
50
- claim those checks ran.
58
+ operations, and security capabilities. If absent, skills instruct the agent or
59
+ reviewer to report a blocked dependency or manual-review requirement; they do
60
+ not claim those checks ran.
51
61
 
52
- See `docs/overview.md`, `docs/quickstart.md`, and the cited research reports in
53
- `docs/research/` for the design basis and limitations.
62
+ See `docs/overview.md`, the prompt catalog in `docs/quickstart.md`, and the cited
63
+ research reports in `docs/research/` for the design basis and limitations.
@@ -3,8 +3,13 @@ import path from 'node:path';
3
3
  import { evaluateMeeting, evaluatePublication, evaluateSourceRegistry, exitCodeFor } from '../lib/gate-engine.mjs';
4
4
  import { assertCivicSchema, CivicSchemaValidationError } from '../lib/schema-validator.mjs';
5
5
 
6
+ const MAX_INPUT_BYTES = 2 * 1024 * 1024;
7
+
6
8
  async function readJson(cwd, file) {
7
- return JSON.parse(await fs.readFile(path.resolve(cwd, file), 'utf8'));
9
+ const absolute = path.resolve(cwd, file);
10
+ const metadata = await fs.stat(absolute);
11
+ if (metadata.size > MAX_INPUT_BYTES) throw new Error(`Civic input exceeds ${MAX_INPUT_BYTES} bytes: ${file}`);
12
+ return JSON.parse(await fs.readFile(absolute, 'utf8'));
8
13
  }
9
14
 
10
15
  export default async function civicAction(args, context = {}) {
@@ -38,7 +43,11 @@ export default async function civicAction(args, context = {}) {
38
43
  schema: 'aiwg.civic.gate-error.v1',
39
44
  code: error instanceof CivicSchemaValidationError ? error.code : 'CIVIC_INPUT_INVALID',
40
45
  error: error instanceof Error ? error.message : String(error),
41
- ...(error instanceof CivicSchemaValidationError ? { validation_errors: error.validationErrors } : {}),
46
+ ...(error instanceof CivicSchemaValidationError ? {
47
+ validation_error_count: error.validationErrorCount,
48
+ validation_errors_truncated: error.validationErrorsTruncated,
49
+ validation_errors: error.validationErrors,
50
+ } : {}),
42
51
  };
43
52
  return { exitCode: 2, message: JSON.stringify(payload, null, 2) };
44
53
  }
@@ -1,5 +1,10 @@
1
1
  # Civic-action issue traceability
2
2
 
3
+ > **Implementation reference.** Begin with the
4
+ > [prompt-based Civic Action quickstart](quickstart.md) for user interaction.
5
+ > Exact setup and validation syntax is maintained only in the
6
+ > [CLI reference](https://docs.aiwg.io/pages/cli--reference.html#civic-action).
7
+
3
8
  | Issue | Implemented proof | Verification |
4
9
  |---|---|---|
5
10
  | #2213 legal/ethics guardrails | `rules/civic-safety.md`, `rules/publication-human-review.md`, jurisdiction template, cited legal brief, non-overridable source/publish gate findings | Source bypass and missing-review negative tests |
@@ -6,13 +6,37 @@ resource indexes, corrections, and publication review. It is an opt-in addon,
6
6
  not a jurisdiction database, law practice, autonomous newsroom, recorder, CMS,
7
7
  or outreach system.
8
8
 
9
+ ## Interaction model
10
+
11
+ Users describe the civic outcome and evidence boundary in a prompt. The AIWG
12
+ steward handles opt-in setup, capability discovery, dependency checks, and
13
+ provider-safe deployment; the selected civic skill then creates reviewable
14
+ artifacts and stops at the appropriate human gate.
15
+
16
+ ```text
17
+ Act as the AIWG steward. Make Civic Action available for this project after
18
+ previewing the setup and obtaining approval. Then help me plan an evidence-bound
19
+ civic workflow for the material I provide. Establish jurisdiction and source
20
+ authority, preserve uncertainty and citations, explain every warning or blocked
21
+ condition, and stop before any submission, contact, recording, identification,
22
+ or publication.
23
+ ```
24
+
25
+ The [prompt-based quickstart](quickstart.md) provides focused asks for source
26
+ review, public records, meetings, procurement, local resources, corrections,
27
+ and publication. Direct setup and gate syntax is isolated in the
28
+ [Civic Action CLI reference](https://docs.aiwg.io/pages/cli--reference.html#civic-action)
29
+ for advanced operators and automation.
30
+
9
31
  ## Safety and evidence model
10
32
 
11
33
  The executable source, meeting, and publication commands validate their input
12
34
  schemas and block selected declared conditions, including access-control bypass,
13
35
  unresolved source authorization/rights, conflicted or unverified vote evidence,
14
36
  uncited declared material claims, incomplete named privacy/accessibility review,
15
- and missing named exact-hash publication approval. Broader jurisdiction,
37
+ and missing independent, dated exact-hash publication approval. Publication
38
+ claims use source/retrieval/selector citations, and empty claim or upstream-gate
39
+ inventories cannot pass. Broader jurisdiction,
16
40
  consent, private/public status, anti-targeting, retention, and independent-review
17
41
  requirements are mandatory human workflow rules; the commands do not infer
18
42
  those facts from content.
@@ -2,44 +2,111 @@
2
2
 
3
3
  > **First time using AIWG?** Begin with [Install, Connect, and Verify](https://docs.aiwg.io/pages/getting-started--install-connect-verify.html). This guide assumes AIWG is already installed and connected to the target project.
4
4
 
5
- Install the opt-in addon:
5
+ ## Ask the steward to set up Civic Action
6
6
 
7
- ```bash
8
- aiwg use civic-action
7
+ Use the AIWG steward for the safest setup path. This prompt asks it to distinguish
8
+ the canonical addon from any provider plugin wrapper, preview changes, and prove
9
+ that the deployment works before civic work begins:
10
+
11
+ ```text
12
+ Act as the AIWG steward and set up Civic Action for this project. Inspect the
13
+ current AIWG and provider configuration first. Explain whether you will enable
14
+ the canonical civic-action addon directly or through an available provider
15
+ plugin wrapper, preview every file or setting that will change, preserve local
16
+ customizations, and ask for approval before writing. After setup, verify that
17
+ the civic skills, agents, flows, templates, schemas, and validation gates are
18
+ discoverable. Report any unavailable optional integration and its degraded
19
+ mode. Do not submit, contact, record, identify, or publish anything.
9
20
  ```
10
21
 
11
- Start with a natural-language ask:
22
+ If you explicitly prefer terminal operation or automation, the
23
+ [Civic Action CLI reference](https://docs.aiwg.io/pages/cli--reference.html#civic-action)
24
+ shows the direct `use` setup and validation commands. The rest of this guide
25
+ uses prompts because the steward and civic skills carry the safety context that
26
+ bare commands do not.
27
+
28
+ ## Ask for an evidence-bound workflow
29
+
30
+ Choose the prompt closest to your outcome and attach or identify the available
31
+ source material. The agent should ask for missing jurisdiction and approval
32
+ details instead of guessing them.
33
+
34
+ ### Review a public source
12
35
 
13
36
  ```text
14
- Plan a public records request for human review.
15
- Reconcile this public meeting transcript with the approved minutes.
16
- Review this public technology procurement using source-linked evidence.
17
- Index local emergency, transit, and human-service resources with citations.
18
- Run civic publication quality gates on this evidence packet.
37
+ Review this public source before acquisition or reuse. Establish the publisher,
38
+ jurisdiction, access method, authorization, current terms and publication
39
+ rights, retrieval identity, freshness deadline, citation selector, fallback,
40
+ and named human review. Treat unknown, stale, expired, or bypassed conditions
41
+ as findings rather than assumptions. Return the source registry and gate report;
42
+ do not acquire restricted material.
19
43
  ```
20
44
 
21
- For source acquisition, copy `templates/source-registry.yaml`, replace every
22
- unknown state with observed evidence, obtain named review, then run:
45
+ ### Plan a public-records request
23
46
 
24
- ```bash
25
- aiwg civic source-gate source-registry.json
47
+ ```text
48
+ Plan a public records request for human review. Research the applicable
49
+ jurisdiction and existing public sources first, draft a narrow request, separate
50
+ estimated dates from observed events, identify privacy and fee risks, and show
51
+ the proposed tracking record. Stop before submission and ask a named person to
52
+ approve the exact request.
26
53
  ```
27
54
 
28
- For meetings, preserve separate source media, transcript, ledger, and minutes
29
- artifacts. Do not replace `SPEAKER_XX` with a name without evidence and human
30
- confirmation:
55
+ ### Reconcile a public meeting
31
56
 
32
- ```bash
33
- aiwg civic meeting-gate vote-ledger.json reconciliation.json
57
+ ```text
58
+ Reconcile this public meeting's official source media, transcript, vote ledger,
59
+ agenda, and approved minutes. Confirm recording and use are allowed for the
60
+ jurisdiction before processing. Preserve speaker uncertainty, never infer an
61
+ absent vote, distinguish draft from approved minutes, and cite every motion,
62
+ vote, and material mismatch. Return the ledger and reconciliation packet for
63
+ named human review; do not publish it.
34
64
  ```
35
65
 
36
- For publication, supply claim-level citations, privacy and accessibility
37
- reviews, correction state, upstream gates, and exact-hash human approval:
66
+ ### Review public technology
38
67
 
39
- ```bash
40
- aiwg civic publish-gate publication-packet.json
68
+ ```text
69
+ Review this public-technology procurement using primary public records and
70
+ source-linked evidence. Inventory the relevant request, bid, contract, policy,
71
+ meeting, payment, and oversight records; distinguish verified facts from claims;
72
+ and map privacy, accessibility, security, interoperability, resilience, fiscal,
73
+ and supplier risks to evidence. Do not rank vendors or recommend an award.
41
74
  ```
42
75
 
43
- Exit `0` means no machine block, not permission to publish. Exit `1` is a
44
- blocking result. Exit `2` is invalid input/usage. Human publication remains a
45
- separate external action.
76
+ ### Index local public resources
77
+
78
+ ```text
79
+ Create a cited local-resource index from the authoritative CAP, GTFS, or HSDS
80
+ source I provide. Preserve the original source and retrieval identities, bind
81
+ the record to the correct format profile, validate freshness and public scope,
82
+ and keep correction and takedown review visible. Report incomplete or unsafe
83
+ records as blocked; do not present this as full standards conformance.
84
+ ```
85
+
86
+ ### Prepare a correction
87
+
88
+ ```text
89
+ Review this proposed correction against the original and replacement artifacts.
90
+ Identify every changed claim, supporting citation, affected downstream target,
91
+ privacy or safety concern, and required revalidation. Preserve append-only
92
+ version history and distinguish requested reindexing from observed completion.
93
+ Return a correction record for independent human approval; do not publish it.
94
+ ```
95
+
96
+ ### Review a publication packet
97
+
98
+ ```text
99
+ Review this civic publication packet for release readiness. Verify every
100
+ material claim has a source, retrieval, and selector; inspect contrary evidence,
101
+ freshness, privacy, accessibility, structured data, corrections, upstream gates,
102
+ and deployment checks; and require independent, dated approval of the exact
103
+ artifact hash. Report every warning and blocker. Do not publish anything.
104
+ ```
105
+
106
+ ## Expected handoff
107
+
108
+ The agent should return the artifacts it created or updated, source-linked
109
+ findings, gate results, unresolved assumptions, unavailable optional
110
+ capabilities, and the named human decisions still required. A machine result
111
+ with no blocker is not permission to submit, contact, record, identify, or
112
+ publish. Those remain separate external actions.
@@ -1,5 +1,11 @@
1
1
  # AIWG design-pattern audit for the civic-action addon
2
2
 
3
+ > **Research and maintainer reference.** Begin with the
4
+ > [prompt-based Civic Action quickstart](../quickstart.md) for user interaction.
5
+ > Commands below are verification evidence for maintainers; supported operator
6
+ > syntax is maintained in the
7
+ > [CLI reference](https://docs.aiwg.io/pages/cli--reference.html#civic-action).
8
+
3
9
  Status: implementation design input for AIWG issues #2213–#2222
4
10
  Repository audit date: 2026-09-01
5
11
  Scope: repository-native packaging, component contracts, composition, discovery,
@@ -1,5 +1,10 @@
1
1
  # Civic workflow standards research brief
2
2
 
3
+ > **Research reference.** Begin with the
4
+ > [prompt-based Civic Action quickstart](../quickstart.md) for user interaction.
5
+ > This brief supports the prompts and controls; it is not an operating guide or
6
+ > a substitute for jurisdiction-specific human review.
7
+
3
8
  **Issues:** #2214, #2216, #2217, #2218, #2220, #2221
4
9
  **Retrieved:** 2026-09-01
5
10
  **Status:** implementation guidance; not legal advice
@@ -1,5 +1,10 @@
1
1
  # Civic Action control-to-source matrix
2
2
 
3
+ > **Control reference.** Begin with the
4
+ > [prompt-based Civic Action quickstart](../quickstart.md) for user interaction.
5
+ > This matrix explains the evidence behind each prompt and gate; it does not
6
+ > authorize an external civic action.
7
+
3
8
  **Reviewed:** 2026-09-01
4
9
 
5
10
  **Scope:** AIWG Civic Action addon
@@ -16,15 +21,15 @@ is executable or declarative.
16
21
  | Control | Primary source basis | Shipped implementation | Verification | Boundary |
17
22
  |---|---|---|---|---|
18
23
  | Provenance and revision identity | [W3C PROV-DM](https://www.w3.org/TR/prov-dm/), [PROV-O](https://www.w3.org/TR/prov-o/) | Source, request, meeting, correction, and publication schemas carry identifiers, hashes, derivation, or version fields | Civic schema compilation and fixture tests | Most hashes are asserted metadata; the local gate does not fetch or independently hash remote evidence |
19
- | Catalog authority and freshness metadata | [W3C DCAT 3](https://www.w3.org/TR/vocab-dcat-3/), [RFC 9110](https://www.rfc-editor.org/rfc/rfc9110.html), [RFC 9111](https://www.rfc-editor.org/rfc/rfc9111.html) | Source registry records publisher, distribution, retrieval, validator, cache, and freshness fields | Source schema plus `source-gate` policy tests | Freshness is not correctness; jurisdiction policy remains a dated human determination |
24
+ | Catalog authority and freshness metadata | [W3C DCAT 3](https://www.w3.org/TR/vocab-dcat-3/), [RFC 9110](https://www.rfc-editor.org/rfc/rfc9110.html), [RFC 9111](https://www.rfc-editor.org/rfc/rfc9111.html) | Source registry records publisher, distribution, retrieval, validator, cache, and freshness fields; the gate blocks unresolved jurisdiction sentinels and expired exceptions and reports overdue review | Source schema plus `source-gate` decision, deadline, exception, terms-snapshot, and next-review tests | Freshness is not correctness; jurisdiction policy remains a dated human determination |
20
25
  | Crawler and access review | [RFC 9309](https://www.rfc-editor.org/rfc/rfc9309.html) | Source gate checks declared robots, authorization, access, terms, publication-rights, and bypass states | Valid and hostile source fixtures; invalid schema inputs exit 2 | Robots permission is not legal authorization, copyright permission, or a security bypass license |
21
26
  | Public-records request planning | [U.S. DOJ request guidance](https://www.justice.gov/oip/make-foia-request-doj), [FOIA.gov FAQ](https://www.foia.gov/faq.html) | Request-plan schema/template separates estimated and observed dates, fixes automatic submission to false, and preserves original responses | Schema positives and consequential-action negatives | Federal FOIA is a reference pattern, not a substitute for state, local, tribal, territorial, or foreign law; no submission gate ships |
22
27
  | Meeting openness, recording, and official-record separation | [Massachusetts Open Meeting Law Guide](https://www.mass.gov/doc/open-meeting-law-guide-2025/download), [Florida Sunshine Manual](https://www.myfloridalegal.com/sites/default/files/government-in-the-sunshine-manual.pdf) | Meeting Flow requires a pre-recording human gate; ledger and reconciliation remain separate artifacts | Flow schema/human-gate tests; meeting packet gate | State examples are not universal law; recording posture is a declarative human gate, not determined by the CLI |
23
- | Transcript cues and selectors | [WebVTT](https://www.w3.org/TR/webvtt1/), [Media Fragments](https://www.w3.org/TR/media-frags/) | Vote ledger requires source cues, timestamps/citations, explicit verification, and conflict preservation | Inferred-vote, conflict, and missing-cue negative tests | The addon does not identify speakers or declare its reconciliation official minutes |
24
- | Accessibility review | [WCAG 2.2](https://www.w3.org/TR/WCAG22/), [WCAG-EM](https://www.w3.org/TR/WCAG-EM/) | Publication packet separates automated and manual status and requires a named manual reviewer | Publication gate negative tests | Automated checks and a packet status are evidence, not a WCAG conformance determination |
25
- | Public-technology evidence review | [FAR Part 10](https://www.acquisition.gov/far/part-10), [FAR Subpart 4.8](https://www.acquisition.gov/far/subpart-4.8), [FAR 9.104-1](https://www.acquisition.gov/far/9.104-1), [NIST SP 800-161r1](https://csrc.nist.gov/pubs/sp/800/161/r1/upd1/final) | Review schema inventories evidence, risk, release state, and human review; award recommendation is fixed to null | Schema positives and prohibited-award negative | Federal sources are design references unless adopted; the addon does not rank vendors, resolve conflicts of interest, or recommend an award |
26
- | Publication state and correction planning | [IPTC NewsML-G2 Guidelines](https://www.iptc.org/std/NewsML-G2/guidelines/), [Sitemaps protocol](https://www.sitemaps.org/protocol.html), [RFC 9111](https://www.rfc-editor.org/rfc/rfc9111.html) | Correction record/template and publication packet preserve version and downstream states; publish gate blocks non-usable versions and unresolved declared propagation | Publication and correction schema tests; publication policy negatives | Correction is a human workflow, not a cryptographically enforced history; third-party reindexing or deletion cannot be guaranteed |
27
- | Emergency, transit, and human-service profiles | [OASIS CAP 1.2](https://docs.oasis-open.org/emergency/cap/v1.2/CAP-v1.2.html), [FEMA IPAWS developers](https://www.fema.gov/emergency-managers/practitioners/integrated-public-alert-warning-system/technology-developers), [GTFS reference](https://gtfs.org/documentation/schedule/reference/), [Open Referral HSDS](https://docs.openreferral.org/en/latest/hsds/overview.html) | Local-resource schema has conditional CAP, GTFS, and HSDS profile fields plus provenance, citations, freshness, and declared validation state | Per-vertical schema positives and cross-profile negatives | These are AIWG profile contracts, not CAP/GTFS/HSDS conformance or public-safety validators |
28
+ | Transcript cues and selectors | [WebVTT](https://www.w3.org/TR/webvtt1/), [Media Fragments](https://www.w3.org/TR/media-frags/) | Vote ledger requires a nonempty motion inventory, source cues, timestamps/citations, explicit verification, and conflict preservation; reconciliation requires comparisons and blocks unresolved material/unknown differences | Empty-inventory, inferred-vote, conflict, pending-difference, and missing-cue negative tests | The addon does not identify speakers or declare its reconciliation official minutes |
29
+ | Accessibility review | [WCAG 2.2](https://www.w3.org/TR/WCAG22/), [WCAG-EM](https://www.w3.org/TR/WCAG-EM/) | Publication packet separates automated and manual status and requires a named, dated manual reviewer with a decision reason | Publication gate anonymous, undated, and incomplete-review negatives | Automated checks and a packet status are evidence, not a WCAG conformance determination |
30
+ | Public-technology evidence review | [FAR Part 10](https://www.acquisition.gov/far/part-10), [FAR Subpart 4.8](https://www.acquisition.gov/far/subpart-4.8), [FAR 9.104-1](https://www.acquisition.gov/far/9.104-1), [NIST SP 800-161r1](https://csrc.nist.gov/pubs/sp/800/161/r1/upd1/final) | Review schema requires nonempty evidence and risk inventories with evidence references; award recommendation is fixed to null | Schema positives, empty-inventory negatives, and prohibited-award negative | Federal sources are design references unless adopted; the addon does not rank vendors, resolve conflicts of interest, or recommend an award |
31
+ | Publication state and correction planning | [IPTC NewsML-G2 Guidelines](https://www.iptc.org/std/NewsML-G2/guidelines/), [Sitemaps protocol](https://www.sitemaps.org/protocol.html), [RFC 9111](https://www.rfc-editor.org/rfc/rfc9111.html) | Publication requires nonempty claim/upstream-gate inventories, structured source/retrieval selectors, and independent dated exact-hash approval; correction records require changed claims and downstream targets | Publication and correction schema tests; vacuous-pass, self-review, state, and propagation negatives | Correction is a human workflow, not a cryptographically enforced history; third-party reindexing or deletion cannot be guaranteed |
32
+ | Emergency, transit, and human-service profiles | [OASIS CAP 1.2](https://docs.oasis-open.org/emergency/cap/v1.2/CAP-v1.2.html), [FEMA IPAWS developers](https://www.fema.gov/emergency-managers/practitioners/integrated-public-alert-warning-system/technology-developers), [GTFS reference](https://gtfs.org/documentation/schedule/reference/), [Open Referral HSDS](https://docs.openreferral.org/en/latest/hsds/overview.html) | Local-resource schema binds CAP/GTFS/HSDS verticals to their formats and prevents a declared publication pass for unverified, stale, nonpublic, unreviewed, or failed-validation records | Per-vertical, cross-profile, and unsafe-publication-state negatives | These are AIWG profile contracts, not CAP/GTFS/HSDS conformance or public-safety validators |
28
33
  | Human oversight and residual-risk disclosure | [NIST AI RMF 1.0](https://www.nist.gov/publications/artificial-intelligence-risk-management-framework-ai-rmf-10) | Agents, rules, skills, and Flow gates reserve consequential decisions for named people and preserve warnings/blocks | Addon, Flow, CLI, discovery, and deployment tests | A machine pass is review evidence only; it is not legal advice, factual verification, compliance, or authorization to act |
29
34
 
30
35
  ## Citation maintenance gate
@@ -1,5 +1,10 @@
1
1
  # Legal and ethics guardrails for civic-action workflows
2
2
 
3
+ > **Research reference.** Begin with the
4
+ > [prompt-based Civic Action quickstart](../quickstart.md) for user interaction.
5
+ > These guardrails inform agent behavior and human review; they are not legal
6
+ > advice or a jurisdiction-independent operating procedure.
7
+
3
8
  - **Issues:** [AIWG #2213](https://git.integrolabs.net/roctinam/aiwg/issues/2213), jurisdiction-sensitive portions of [AIWG #2216](https://git.integrolabs.net/roctinam/aiwg/issues/2216) and [AIWG #2217](https://git.integrolabs.net/roctinam/aiwg/issues/2217)
4
9
  - **Retrieved:** 2026-09-01
5
10
  - **Geographic baseline:** United States federal law and selected state examples; no state, tribal, territorial, or local conclusion is encoded
@@ -1,5 +1,10 @@
1
1
  # Civic-action research synthesis and readiness decision
2
2
 
3
+ > **Decision record.** Begin with the
4
+ > [prompt-based Civic Action quickstart](../quickstart.md) for user interaction.
5
+ > This document records implementation readiness and boundaries; it is not a
6
+ > command-led user procedure.
7
+
3
8
  **Decision date:** 2026-09-01
4
9
  **Issues:** #2213–#2222
5
10
  **Decision:** proceed with an opt-in addon and fail-closed human gates; reject
@@ -2,15 +2,16 @@
2
2
  "schema": "aiwg.civic.publication-packet.v1",
3
3
  "artifact_id": "unsafe-story",
4
4
  "artifact_hash": "sha256:7777777777777777777777777777777777777777777777777777777777777777",
5
+ "prepared_by": "news-caster",
5
6
  "sections": [{"id": "body", "required": true, "content_length": 0, "record_count": 0, "minimum_count": 1, "freshness_state": "expired"}],
6
7
  "links": [{"url": "https://example.invalid/missing", "http_status": 404, "material": true}],
7
8
  "claims": [{"claim_id": "claim-1", "material": true, "status": "reported_allegation", "attributed": false, "freshness_state": "expired", "citations": []}],
8
- "upstream_gates": [],
9
+ "upstream_gates": [{"gate_id": "source-compliance/unsafe-source", "status": "pass"}],
9
10
  "structured_data": {"status": "fail", "format": "NewsArticle", "errors": ["missing dateModified"]},
10
- "privacy": {"status": "pending", "reviewer": null},
11
- "accessibility": {"automated_status": "pass", "manual_status": "pending", "reviewer": null},
11
+ "privacy": {"status": "pending", "reviewer": null, "reviewed_at": null, "decision_reason": ""},
12
+ "accessibility": {"automated_status": "pass", "manual_status": "pending", "reviewer": null, "reviewed_at": null, "decision_reason": ""},
12
13
  "publication_state": "usable",
13
14
  "correction": {"open_blocking": true, "pending_reindex_targets": 2},
14
15
  "deployment": {"last_good_copy_state": "missing", "verification_state": "pending", "live_page_state": "pending", "sitemap_state": "pending", "reindex_state": "pending", "cache_state": "pending", "adapter": "vendor-neutral-static"},
15
- "human_review": {"state": "pending", "reviewer": null, "artifact_hash": "sha256:7777777777777777777777777777777777777777777777777777777777777777"}
16
+ "human_review": {"state": "pending", "reviewer": null, "reviewer_role": null, "artifact_hash": "sha256:7777777777777777777777777777777777777777777777777777777777777777", "reviewed_at": null, "decision_reason": ""}
16
17
  }