govkit 0.5.0__tar.gz

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 (320) hide show
  1. govkit-0.5.0/.claude/settings.local.json +25 -0
  2. govkit-0.5.0/.github/CODEOWNDERS +7 -0
  3. govkit-0.5.0/.github/ISSUE_TEMPLATE/bug_report.yml +89 -0
  4. govkit-0.5.0/.github/ISSUE_TEMPLATE/config.yml +5 -0
  5. govkit-0.5.0/.github/ISSUE_TEMPLATE/feature_request.yml +73 -0
  6. govkit-0.5.0/.github/dependabot.yml +11 -0
  7. govkit-0.5.0/.github/pull_request_template.md +46 -0
  8. govkit-0.5.0/.github/workflows/publish.yml +32 -0
  9. govkit-0.5.0/.gitignore +102 -0
  10. govkit-0.5.0/.pre-commit-config.yaml +6 -0
  11. govkit-0.5.0/CHANGELOG.md +104 -0
  12. govkit-0.5.0/CODE_OF_CONDUCT.md +90 -0
  13. govkit-0.5.0/CONTRIBUTING.md +191 -0
  14. govkit-0.5.0/COPILOT_SKILLS_MIGRATION.md +71 -0
  15. govkit-0.5.0/CROSS_REPO_GOVERNANCE_PLAN.md +228 -0
  16. govkit-0.5.0/IMPROVEMENT_PLAN.md +177 -0
  17. govkit-0.5.0/L5_IMPLEMENTATION_PLAN.md +341 -0
  18. govkit-0.5.0/LICENSE +178 -0
  19. govkit-0.5.0/NOTICE.md +4 -0
  20. govkit-0.5.0/PARITY_TEST.md +329 -0
  21. govkit-0.5.0/PKG-INFO +731 -0
  22. govkit-0.5.0/README.md +703 -0
  23. govkit-0.5.0/SECURITY.md +56 -0
  24. govkit-0.5.0/agents/claude-code/claude-md/backend-api.md +206 -0
  25. govkit-0.5.0/agents/claude-code/claude-md/backend-cli.md +206 -0
  26. govkit-0.5.0/agents/claude-code/claude-md/l3-backend-api.md +141 -0
  27. govkit-0.5.0/agents/claude-code/claude-md/l3-backend-cli.md +142 -0
  28. govkit-0.5.0/agents/claude-code/claude-md/l3-ui-angular.md +105 -0
  29. govkit-0.5.0/agents/claude-code/claude-md/l3-ui-react.md +105 -0
  30. govkit-0.5.0/agents/claude-code/claude-md/l5-backend-api.md +184 -0
  31. govkit-0.5.0/agents/claude-code/claude-md/l5-backend-cli.md +114 -0
  32. govkit-0.5.0/agents/claude-code/claude-md/ui-angular.md +120 -0
  33. govkit-0.5.0/agents/claude-code/claude-md/ui-react.md +118 -0
  34. govkit-0.5.0/agents/claude-code/manifest.json +270 -0
  35. govkit-0.5.0/agents/claude-code/rules/backend/adapters.md +32 -0
  36. govkit-0.5.0/agents/claude-code/rules/backend/api.md +21 -0
  37. govkit-0.5.0/agents/claude-code/rules/backend/guardrails.md +26 -0
  38. govkit-0.5.0/agents/claude-code/rules/backend/llm-evaluation.md +30 -0
  39. govkit-0.5.0/agents/claude-code/rules/backend/llm-gateway.md +25 -0
  40. govkit-0.5.0/agents/claude-code/rules/backend/llm-observability.md +24 -0
  41. govkit-0.5.0/agents/claude-code/rules/backend/ports.md +26 -0
  42. govkit-0.5.0/agents/claude-code/rules/backend/security.md +28 -0
  43. govkit-0.5.0/agents/claude-code/rules/backend/services.md +27 -0
  44. govkit-0.5.0/agents/claude-code/rules/cli/cli.md +24 -0
  45. govkit-0.5.0/agents/claude-code/rules/generic/repo-scope.md +82 -0
  46. govkit-0.5.0/agents/claude-code/rules/generic/spec-compliance.md +40 -0
  47. govkit-0.5.0/agents/claude-code/rules/generic/test-first.md +44 -0
  48. govkit-0.5.0/agents/claude-code/rules/ui-angular/accessibility.md +42 -0
  49. govkit-0.5.0/agents/claude-code/rules/ui-angular/api.md +44 -0
  50. govkit-0.5.0/agents/claude-code/rules/ui-angular/components.md +33 -0
  51. govkit-0.5.0/agents/claude-code/rules/ui-angular/viewmodel.md +13 -0
  52. govkit-0.5.0/agents/claude-code/rules/ui-react/accessibility.md +36 -0
  53. govkit-0.5.0/agents/claude-code/rules/ui-react/api.md +39 -0
  54. govkit-0.5.0/agents/claude-code/rules/ui-react/components.md +31 -0
  55. govkit-0.5.0/agents/claude-code/rules/ui-react/viewmodel.md +13 -0
  56. govkit-0.5.0/agents/claude-code/skills/backend/adr-author/SKILL.md +55 -0
  57. govkit-0.5.0/agents/claude-code/skills/backend/architecture-preflight/SKILL.md +76 -0
  58. govkit-0.5.0/agents/claude-code/skills/backend/eval-suite-planning/SKILL.md +74 -0
  59. govkit-0.5.0/agents/claude-code/skills/backend/genai-preflight/SKILL.md +67 -0
  60. govkit-0.5.0/agents/claude-code/skills/backend/implementation-plan/SKILL.md +82 -0
  61. govkit-0.5.0/agents/claude-code/skills/backend/l3-implementation-plan/SKILL.md +62 -0
  62. govkit-0.5.0/agents/claude-code/skills/backend/l3-spec-planning/SKILL.md +45 -0
  63. govkit-0.5.0/agents/claude-code/skills/backend/spec-planning/SKILL.md +60 -0
  64. govkit-0.5.0/agents/claude-code/skills/ui/adr-author/SKILL.md +27 -0
  65. govkit-0.5.0/agents/claude-code/skills/ui/architecture-preflight/SKILL.md +87 -0
  66. govkit-0.5.0/agents/claude-code/skills/ui/implementation-plan/SKILL.md +58 -0
  67. govkit-0.5.0/agents/claude-code/skills/ui/l3-implementation-plan/SKILL.md +58 -0
  68. govkit-0.5.0/agents/claude-code/skills/ui/l3-spec-planning/SKILL.md +35 -0
  69. govkit-0.5.0/agents/claude-code/skills/ui/spec-planning/SKILL.md +71 -0
  70. govkit-0.5.0/agents/codex/agents-md/backend-api.md +206 -0
  71. govkit-0.5.0/agents/codex/agents-md/backend-cli.md +206 -0
  72. govkit-0.5.0/agents/codex/agents-md/l3-backend-api.md +197 -0
  73. govkit-0.5.0/agents/codex/agents-md/l3-backend-cli.md +198 -0
  74. govkit-0.5.0/agents/codex/agents-md/l3-ui-angular.md +135 -0
  75. govkit-0.5.0/agents/codex/agents-md/l3-ui-react.md +135 -0
  76. govkit-0.5.0/agents/codex/agents-md/l5-backend-api.md +184 -0
  77. govkit-0.5.0/agents/codex/agents-md/l5-backend-cli.md +114 -0
  78. govkit-0.5.0/agents/codex/agents-md/ui-angular.md +123 -0
  79. govkit-0.5.0/agents/codex/agents-md/ui-react.md +121 -0
  80. govkit-0.5.0/agents/codex/manifest.json +262 -0
  81. govkit-0.5.0/agents/codex/rules/backend/adapters.md +27 -0
  82. govkit-0.5.0/agents/codex/rules/backend/api.md +16 -0
  83. govkit-0.5.0/agents/codex/rules/backend/guardrails.md +26 -0
  84. govkit-0.5.0/agents/codex/rules/backend/llm-evaluation.md +30 -0
  85. govkit-0.5.0/agents/codex/rules/backend/llm-gateway.md +25 -0
  86. govkit-0.5.0/agents/codex/rules/backend/llm-observability.md +24 -0
  87. govkit-0.5.0/agents/codex/rules/backend/ports.md +21 -0
  88. govkit-0.5.0/agents/codex/rules/backend/security.md +22 -0
  89. govkit-0.5.0/agents/codex/rules/backend/services.md +22 -0
  90. govkit-0.5.0/agents/codex/rules/cli/cli.md +18 -0
  91. govkit-0.5.0/agents/codex/rules/generic/repo-scope.md +82 -0
  92. govkit-0.5.0/agents/codex/rules/generic/spec-compliance.md +41 -0
  93. govkit-0.5.0/agents/codex/rules/generic/test-first.md +44 -0
  94. govkit-0.5.0/agents/codex/rules/ui-angular/accessibility.md +42 -0
  95. govkit-0.5.0/agents/codex/rules/ui-angular/api.md +44 -0
  96. govkit-0.5.0/agents/codex/rules/ui-angular/components.md +33 -0
  97. govkit-0.5.0/agents/codex/rules/ui-angular/viewmodel.md +13 -0
  98. govkit-0.5.0/agents/codex/rules/ui-react/accessibility.md +36 -0
  99. govkit-0.5.0/agents/codex/rules/ui-react/api.md +39 -0
  100. govkit-0.5.0/agents/codex/rules/ui-react/components.md +31 -0
  101. govkit-0.5.0/agents/codex/rules/ui-react/viewmodel.md +13 -0
  102. govkit-0.5.0/agents/codex/skills/backend/adr-author/SKILL.md +55 -0
  103. govkit-0.5.0/agents/codex/skills/backend/architecture-preflight/SKILL.md +76 -0
  104. govkit-0.5.0/agents/codex/skills/backend/eval-suite-planning/SKILL.md +74 -0
  105. govkit-0.5.0/agents/codex/skills/backend/genai-preflight/SKILL.md +67 -0
  106. govkit-0.5.0/agents/codex/skills/backend/implementation-plan/SKILL.md +82 -0
  107. govkit-0.5.0/agents/codex/skills/backend/l3-implementation-plan/SKILL.md +62 -0
  108. govkit-0.5.0/agents/codex/skills/backend/l3-spec-planning/SKILL.md +45 -0
  109. govkit-0.5.0/agents/codex/skills/backend/spec-planning/SKILL.md +60 -0
  110. govkit-0.5.0/agents/codex/skills/ui/adr-author/SKILL.md +25 -0
  111. govkit-0.5.0/agents/codex/skills/ui/architecture-preflight/SKILL.md +87 -0
  112. govkit-0.5.0/agents/codex/skills/ui/implementation-plan/SKILL.md +60 -0
  113. govkit-0.5.0/agents/codex/skills/ui/l3-implementation-plan/SKILL.md +58 -0
  114. govkit-0.5.0/agents/codex/skills/ui/l3-spec-planning/SKILL.md +35 -0
  115. govkit-0.5.0/agents/codex/skills/ui/spec-planning/SKILL.md +73 -0
  116. govkit-0.5.0/agents/copilot/copilot-instructions/backend-api.md +382 -0
  117. govkit-0.5.0/agents/copilot/copilot-instructions/backend-cli.md +384 -0
  118. govkit-0.5.0/agents/copilot/copilot-instructions/l3-backend-api.md +178 -0
  119. govkit-0.5.0/agents/copilot/copilot-instructions/l3-backend-cli.md +179 -0
  120. govkit-0.5.0/agents/copilot/copilot-instructions/l3-ui-angular.md +114 -0
  121. govkit-0.5.0/agents/copilot/copilot-instructions/l3-ui-react.md +114 -0
  122. govkit-0.5.0/agents/copilot/copilot-instructions/l5-backend-api.md +134 -0
  123. govkit-0.5.0/agents/copilot/copilot-instructions/l5-backend-cli.md +88 -0
  124. govkit-0.5.0/agents/copilot/copilot-instructions/ui-angular.md +161 -0
  125. govkit-0.5.0/agents/copilot/copilot-instructions/ui-react.md +209 -0
  126. govkit-0.5.0/agents/copilot/instructions/backend/adapters.instructions.md +29 -0
  127. govkit-0.5.0/agents/copilot/instructions/backend/api.instructions.md +18 -0
  128. govkit-0.5.0/agents/copilot/instructions/backend/guardrails.instructions.md +16 -0
  129. govkit-0.5.0/agents/copilot/instructions/backend/llm-evaluation.instructions.md +18 -0
  130. govkit-0.5.0/agents/copilot/instructions/backend/llm-gateway.instructions.md +17 -0
  131. govkit-0.5.0/agents/copilot/instructions/backend/llm-observability.instructions.md +17 -0
  132. govkit-0.5.0/agents/copilot/instructions/backend/ports.instructions.md +23 -0
  133. govkit-0.5.0/agents/copilot/instructions/backend/security.instructions.md +26 -0
  134. govkit-0.5.0/agents/copilot/instructions/backend/services.instructions.md +24 -0
  135. govkit-0.5.0/agents/copilot/instructions/cli/cli.instructions.md +22 -0
  136. govkit-0.5.0/agents/copilot/instructions/generic/repo-scope.instructions.md +86 -0
  137. govkit-0.5.0/agents/copilot/instructions/generic/spec-compliance.instructions.md +45 -0
  138. govkit-0.5.0/agents/copilot/instructions/generic/test-first.instructions.md +48 -0
  139. govkit-0.5.0/agents/copilot/instructions/ui-angular/accessibility.instructions.md +37 -0
  140. govkit-0.5.0/agents/copilot/instructions/ui-angular/api.instructions.md +16 -0
  141. govkit-0.5.0/agents/copilot/instructions/ui-angular/components.instructions.md +21 -0
  142. govkit-0.5.0/agents/copilot/instructions/ui-angular/viewmodel.instructions.md +17 -0
  143. govkit-0.5.0/agents/copilot/instructions/ui-react/accessibility.instructions.md +34 -0
  144. govkit-0.5.0/agents/copilot/instructions/ui-react/api.instructions.md +18 -0
  145. govkit-0.5.0/agents/copilot/instructions/ui-react/components.instructions.md +19 -0
  146. govkit-0.5.0/agents/copilot/instructions/ui-react/viewmodel.instructions.md +17 -0
  147. govkit-0.5.0/agents/copilot/manifest.json +228 -0
  148. govkit-0.5.0/agents/copilot/skills/backend/adr-author/SKILL.md +62 -0
  149. govkit-0.5.0/agents/copilot/skills/backend/architecture-preflight/SKILL.md +78 -0
  150. govkit-0.5.0/agents/copilot/skills/backend/eval-suite-planning/SKILL.md +35 -0
  151. govkit-0.5.0/agents/copilot/skills/backend/genai-preflight/SKILL.md +35 -0
  152. govkit-0.5.0/agents/copilot/skills/backend/implementation-plan/SKILL.md +157 -0
  153. govkit-0.5.0/agents/copilot/skills/backend/l3-implementation-plan/SKILL.md +98 -0
  154. govkit-0.5.0/agents/copilot/skills/backend/l3-spec-planning/SKILL.md +46 -0
  155. govkit-0.5.0/agents/copilot/skills/backend/spec-planning/SKILL.md +79 -0
  156. govkit-0.5.0/agents/copilot/skills/ui/adr-author/SKILL.md +39 -0
  157. govkit-0.5.0/agents/copilot/skills/ui/architecture-preflight/SKILL.md +92 -0
  158. govkit-0.5.0/agents/copilot/skills/ui/implementation-plan/SKILL.md +56 -0
  159. govkit-0.5.0/agents/copilot/skills/ui/l3-implementation-plan/SKILL.md +60 -0
  160. govkit-0.5.0/agents/copilot/skills/ui/l3-spec-planning/SKILL.md +37 -0
  161. govkit-0.5.0/agents/copilot/skills/ui/spec-planning/SKILL.md +68 -0
  162. govkit-0.5.0/ci/README.md +178 -0
  163. govkit-0.5.0/ci/azure/deepeval-gate.yml +64 -0
  164. govkit-0.5.0/ci/azure/eval-gate.yml +139 -0
  165. govkit-0.5.0/ci/azure/guardrails-check.yml +73 -0
  166. govkit-0.5.0/ci/azure/l3-quality-gate.yml +117 -0
  167. govkit-0.5.0/ci/azure/promptfoo-gate.yml +62 -0
  168. govkit-0.5.0/ci/azure/quality-gate.yml +180 -0
  169. govkit-0.5.0/ci/azure/repo-scope-check.yml +110 -0
  170. govkit-0.5.0/ci/azure/ui-eval-gate.yml +174 -0
  171. govkit-0.5.0/ci/azure/ui-quality-gate.yml +153 -0
  172. govkit-0.5.0/ci/github/deepeval-gate.yml +75 -0
  173. govkit-0.5.0/ci/github/eval-gate.yml +141 -0
  174. govkit-0.5.0/ci/github/guardrails-check.yml +88 -0
  175. govkit-0.5.0/ci/github/l3-quality-gate.yml +121 -0
  176. govkit-0.5.0/ci/github/promptfoo-gate.yml +73 -0
  177. govkit-0.5.0/ci/github/quality-gate.yml +181 -0
  178. govkit-0.5.0/ci/github/repo-scope-check.yml +113 -0
  179. govkit-0.5.0/ci/github/ui-eval-gate.yml +170 -0
  180. govkit-0.5.0/ci/github/ui-quality-gate.yml +146 -0
  181. govkit-0.5.0/cli/__init__.py +0 -0
  182. govkit-0.5.0/cli/govkit.py +391 -0
  183. govkit-0.5.0/cli/validate.py +441 -0
  184. govkit-0.5.0/docs/CROSS_REPO_FEATURES.md +416 -0
  185. govkit-0.5.0/docs/REPO_SCOPE_ANALYSIS_GUIDANCE.md +75 -0
  186. govkit-0.5.0/docs/backend/architecture/ADR/TEMPLATE.md +151 -0
  187. govkit-0.5.0/docs/backend/architecture/AGENT_ARCHITECTURE.md +336 -0
  188. govkit-0.5.0/docs/backend/architecture/API_CONVENTIONS.md +129 -0
  189. govkit-0.5.0/docs/backend/architecture/ARCH_CONTRACT.md +103 -0
  190. govkit-0.5.0/docs/backend/architecture/BOUNDARIES.md +71 -0
  191. govkit-0.5.0/docs/backend/architecture/CLI_CONVENTIONS.md +189 -0
  192. govkit-0.5.0/docs/backend/architecture/CROSS_CUTTING_CONCERNS.md +184 -0
  193. govkit-0.5.0/docs/backend/architecture/DESIGN_PRINCIPLES.md +61 -0
  194. govkit-0.5.0/docs/backend/architecture/ERROR_MAPPING.md +128 -0
  195. govkit-0.5.0/docs/backend/architecture/EVALUATION_LLM_CONTRACT.md +207 -0
  196. govkit-0.5.0/docs/backend/architecture/GHERKIN_CONVENTIONS.md +133 -0
  197. govkit-0.5.0/docs/backend/architecture/GHERKIN_TAGS.md +82 -0
  198. govkit-0.5.0/docs/backend/architecture/GUARDRAILS_CONTRACT.md +168 -0
  199. govkit-0.5.0/docs/backend/architecture/LAYER_IMPLEMENTATION.md +445 -0
  200. govkit-0.5.0/docs/backend/architecture/LLM_GATEWAY_CONTRACT.md +145 -0
  201. govkit-0.5.0/docs/backend/architecture/OBSERVABILITY_LLM_CONTRACT.md +159 -0
  202. govkit-0.5.0/docs/backend/architecture/OBSERVABILITY_PORT_CONTRACT.md +167 -0
  203. govkit-0.5.0/docs/backend/architecture/REPO_STRUCTURE_README.md +382 -0
  204. govkit-0.5.0/docs/backend/architecture/SECURITY_AUTH_PATTERNS.md +130 -0
  205. govkit-0.5.0/docs/backend/architecture/TECH_STACK.md +504 -0
  206. govkit-0.5.0/docs/backend/architecture/TESTING.md +392 -0
  207. govkit-0.5.0/docs/backend/evaluation/EVAL_STACK.md +198 -0
  208. govkit-0.5.0/docs/backend/evaluation/FIRST_SCORING_RUBRIC.md +87 -0
  209. govkit-0.5.0/docs/backend/evaluation/VIRTUE_SCORING_RUBRIC.md +131 -0
  210. govkit-0.5.0/docs/backend/evaluation/eval_criteria.md +246 -0
  211. govkit-0.5.0/docs/backend/guides/deepeval-usage.md +132 -0
  212. govkit-0.5.0/docs/backend/guides/guardrails-ai-setup.md +134 -0
  213. govkit-0.5.0/docs/backend/guides/langfuse-integration.md +103 -0
  214. govkit-0.5.0/docs/backend/guides/litellm-setup.md +118 -0
  215. govkit-0.5.0/docs/backend/guides/nemo-guardrails-setup.md +135 -0
  216. govkit-0.5.0/docs/backend/guides/openllmetry-setup.md +98 -0
  217. govkit-0.5.0/docs/backend/guides/promptfoo-usage.md +146 -0
  218. govkit-0.5.0/docs/backend/guides/ragas-evaluation.md +139 -0
  219. govkit-0.5.0/docs/stacks/README.md +56 -0
  220. govkit-0.5.0/docs/stacks/dotnet-aspnet/API_CONVENTIONS.md +180 -0
  221. govkit-0.5.0/docs/stacks/dotnet-aspnet/LAYER_IMPLEMENTATION.md +388 -0
  222. govkit-0.5.0/docs/stacks/dotnet-aspnet/OBSERVABILITY_PORT_CONTRACT.md +209 -0
  223. govkit-0.5.0/docs/stacks/dotnet-aspnet/SECURITY_AUTH_PATTERNS.md +175 -0
  224. govkit-0.5.0/docs/stacks/dotnet-aspnet/TECH_STACK.md +455 -0
  225. govkit-0.5.0/docs/stacks/dotnet-aspnet/TESTING.md +384 -0
  226. govkit-0.5.0/docs/stacks/go-gin/API_CONVENTIONS.md +230 -0
  227. govkit-0.5.0/docs/stacks/go-gin/LAYER_IMPLEMENTATION.md +342 -0
  228. govkit-0.5.0/docs/stacks/go-gin/OBSERVABILITY_PORT_CONTRACT.md +220 -0
  229. govkit-0.5.0/docs/stacks/go-gin/SECURITY_AUTH_PATTERNS.md +223 -0
  230. govkit-0.5.0/docs/stacks/go-gin/TECH_STACK.md +408 -0
  231. govkit-0.5.0/docs/stacks/go-gin/TESTING.md +298 -0
  232. govkit-0.5.0/docs/stacks/java-spring-boot/API_CONVENTIONS.md +228 -0
  233. govkit-0.5.0/docs/stacks/java-spring-boot/LAYER_IMPLEMENTATION.md +323 -0
  234. govkit-0.5.0/docs/stacks/java-spring-boot/OBSERVABILITY_PORT_CONTRACT.md +199 -0
  235. govkit-0.5.0/docs/stacks/java-spring-boot/SECURITY_AUTH_PATTERNS.md +188 -0
  236. govkit-0.5.0/docs/stacks/java-spring-boot/TECH_STACK.md +451 -0
  237. govkit-0.5.0/docs/stacks/java-spring-boot/TESTING.md +286 -0
  238. govkit-0.5.0/docs/stacks/nodejs-fastify/API_CONVENTIONS.md +228 -0
  239. govkit-0.5.0/docs/stacks/nodejs-fastify/LAYER_IMPLEMENTATION.md +325 -0
  240. govkit-0.5.0/docs/stacks/nodejs-fastify/OBSERVABILITY_PORT_CONTRACT.md +183 -0
  241. govkit-0.5.0/docs/stacks/nodejs-fastify/SECURITY_AUTH_PATTERNS.md +199 -0
  242. govkit-0.5.0/docs/stacks/nodejs-fastify/TECH_STACK.md +432 -0
  243. govkit-0.5.0/docs/stacks/nodejs-fastify/TESTING.md +279 -0
  244. govkit-0.5.0/docs/ui/architecture/ACCESSIBILITY_STANDARDS.md +482 -0
  245. govkit-0.5.0/docs/ui/architecture/ADR/TEMPLATE.md +159 -0
  246. govkit-0.5.0/docs/ui/architecture/MVVM_CONTRACT.md +90 -0
  247. govkit-0.5.0/docs/ui/architecture/angular/COMPONENT_CONVENTIONS.md +291 -0
  248. govkit-0.5.0/docs/ui/architecture/angular/STATE_MANAGEMENT.md +131 -0
  249. govkit-0.5.0/docs/ui/architecture/angular/TECH_STACK.md +84 -0
  250. govkit-0.5.0/docs/ui/architecture/react/COMPONENT_CONVENTIONS.md +236 -0
  251. govkit-0.5.0/docs/ui/architecture/react/STATE_MANAGEMENT.md +106 -0
  252. govkit-0.5.0/docs/ui/architecture/react/TECH_STACK.md +96 -0
  253. govkit-0.5.0/docs/ui/evaluation/FIRST_SCORING_RUBRIC.md +89 -0
  254. govkit-0.5.0/docs/ui/evaluation/VIRTUE_SCORING_RUBRIC.md +134 -0
  255. govkit-0.5.0/docs/ui/evaluation/eval_criteria.md +111 -0
  256. govkit-0.5.0/features/README.md +42 -0
  257. govkit-0.5.0/features/example-jwt-unification/acceptance.feature +73 -0
  258. govkit-0.5.0/features/example-jwt-unification/nfrs.md +102 -0
  259. govkit-0.5.0/features/schema_contract_example/acceptance.feature +91 -0
  260. govkit-0.5.0/features/schema_contract_example/architecture_preflight.md +125 -0
  261. govkit-0.5.0/features/schema_contract_example/eval_criteria.yaml +12 -0
  262. govkit-0.5.0/features/schema_contract_example/nfrs.md +47 -0
  263. govkit-0.5.0/features/schema_contract_example/plan.md +252 -0
  264. govkit-0.5.0/features/starter_backend/acceptance.feature +56 -0
  265. govkit-0.5.0/features/starter_backend/architecture_preflight.md +153 -0
  266. govkit-0.5.0/features/starter_backend/eval_criteria.yaml +42 -0
  267. govkit-0.5.0/features/starter_backend/nfrs.md +47 -0
  268. govkit-0.5.0/features/starter_backend/plan.md +172 -0
  269. govkit-0.5.0/features/starter_backend_l3/acceptance.feature +56 -0
  270. govkit-0.5.0/features/starter_backend_l3/nfrs.md +47 -0
  271. govkit-0.5.0/features/starter_backend_l3/plan.md +91 -0
  272. govkit-0.5.0/features/starter_backend_l5/acceptance.feature +81 -0
  273. govkit-0.5.0/features/starter_backend_l5/architecture_preflight.md +212 -0
  274. govkit-0.5.0/features/starter_backend_l5/eval_criteria.yaml +82 -0
  275. govkit-0.5.0/features/starter_backend_l5/nfrs.md +63 -0
  276. govkit-0.5.0/features/starter_backend_l5/plan.md +207 -0
  277. govkit-0.5.0/features/starter_cli/acceptance.feature +55 -0
  278. govkit-0.5.0/features/starter_cli/architecture_preflight.md +153 -0
  279. govkit-0.5.0/features/starter_cli/eval_criteria.yaml +25 -0
  280. govkit-0.5.0/features/starter_cli/nfrs.md +44 -0
  281. govkit-0.5.0/features/starter_cli/plan.md +172 -0
  282. govkit-0.5.0/features/starter_cli_l3/acceptance.feature +55 -0
  283. govkit-0.5.0/features/starter_cli_l3/nfrs.md +44 -0
  284. govkit-0.5.0/features/starter_cli_l3/plan.md +91 -0
  285. govkit-0.5.0/features/starter_cli_l5/acceptance.feature +81 -0
  286. govkit-0.5.0/features/starter_cli_l5/architecture_preflight.md +212 -0
  287. govkit-0.5.0/features/starter_cli_l5/eval_criteria.yaml +40 -0
  288. govkit-0.5.0/features/starter_cli_l5/nfrs.md +63 -0
  289. govkit-0.5.0/features/starter_cli_l5/plan.md +207 -0
  290. govkit-0.5.0/features/starter_ui/acceptance.feature +72 -0
  291. govkit-0.5.0/features/starter_ui/architecture_preflight.md +111 -0
  292. govkit-0.5.0/features/starter_ui/eval_criteria.yaml +25 -0
  293. govkit-0.5.0/features/starter_ui/nfrs.md +55 -0
  294. govkit-0.5.0/features/starter_ui/plan.md +166 -0
  295. govkit-0.5.0/features/starter_ui_l3/acceptance.feature +72 -0
  296. govkit-0.5.0/features/starter_ui_l3/nfrs.md +55 -0
  297. govkit-0.5.0/features/starter_ui_l3/plan.md +89 -0
  298. govkit-0.5.0/features/ui_task_dashboard/acceptance.feature +112 -0
  299. govkit-0.5.0/features/ui_task_dashboard/architecture_preflight.md +145 -0
  300. govkit-0.5.0/features/ui_task_dashboard/eval_criteria.yaml +17 -0
  301. govkit-0.5.0/features/ui_task_dashboard/nfrs.md +60 -0
  302. govkit-0.5.0/features/ui_task_dashboard/plan.md +258 -0
  303. govkit-0.5.0/governance/backend/importlinter-reference.toml +39 -0
  304. govkit-0.5.0/governance/backend/schemas/eval_criteria.schema.json +170 -0
  305. govkit-0.5.0/governance/backend/schemas/guardrails_config.schema.json +47 -0
  306. govkit-0.5.0/governance/backend/templates/architecture_preflight.md +146 -0
  307. govkit-0.5.0/governance/backend/templates/l3-plan.md +92 -0
  308. govkit-0.5.0/governance/backend/templates/l5-architecture-preflight.md +212 -0
  309. govkit-0.5.0/governance/backend/templates/l5-plan.md +207 -0
  310. govkit-0.5.0/governance/backend/templates/plan.md +171 -0
  311. govkit-0.5.0/governance/schemas/agent-manifest.schema.json +114 -0
  312. govkit-0.5.0/governance/schemas/evaluation_prediction.schema.json +95 -0
  313. govkit-0.5.0/governance/ui/schemas/eval_criteria.schema.json +42 -0
  314. govkit-0.5.0/governance/ui/templates/architecture_preflight.md +69 -0
  315. govkit-0.5.0/governance/ui/templates/l3-plan.md +90 -0
  316. govkit-0.5.0/governance/ui/templates/plan.md +90 -0
  317. govkit-0.5.0/pyproject.toml +113 -0
  318. govkit-0.5.0/tests/__init__.py +0 -0
  319. govkit-0.5.0/tests/test_govkit.py +655 -0
  320. govkit-0.5.0/tests/test_validate.py +892 -0
@@ -0,0 +1,25 @@
1
+ {
2
+ "permissions": {
3
+ "allow": [
4
+ "WebFetch(domain:openai.com)",
5
+ "WebFetch(domain:github.com)",
6
+ "WebFetch(domain:raw.githubusercontent.com)",
7
+ "WebFetch(domain:developers.openai.com)",
8
+ "WebFetch(domain:platform.openai.com)",
9
+ "WebFetch(domain:docs.qodo.ai)",
10
+ "WebFetch(domain:www.qodo.ai)",
11
+ "WebFetch(domain:qodo-merge-docs.qodo.ai)",
12
+ "WebFetch(domain:marketplace.visualstudio.com)",
13
+ "Bash(for agent:*)",
14
+ "Bash(do)",
15
+ "Bash(sed -i 's|\"\"features/\"\"|\"\"features/starter_backend/\"\", \"\"features/schema_contract_example/\"\"|g' agents/$agent/manifest.json)",
16
+ "Bash(sed -i 's|\"\"ci/\"\"|\"\"ci/quality-gate-example.yml\"\", \"\"ci/eval-gate-example.yml\"\"|g' agents/$agent/manifest.json)",
17
+ "Bash(done)",
18
+ "Bash(echo \"=== $agent ===\")",
19
+ "Read(//c/Users/marty/source/repos/governed-ai-delivery/agents/$agent/**)",
20
+ "Bash(grep -r docs/architecture /c/Users/marty/source/repos/governed-ai-delivery --include=*.md --include=*.json --include=*.yaml --include=*.yml)",
21
+ "Bash(grep -r governance/schemas /c/Users/marty/source/repos/governed-ai-delivery --include=*.md)",
22
+ "Bash(grep -rn docs/architecture/ /c/Users/marty/source/repos/governed-ai-delivery --include=*.md)"
23
+ ]
24
+ }
25
+ }
@@ -0,0 +1,7 @@
1
+ * @marty916
2
+
3
+ /docs/ @marty916
4
+ /agents/ @marty916
5
+ /governance/ @marty916
6
+ /ci/ @marty916
7
+ /tests/ @marty916
@@ -0,0 +1,89 @@
1
+ name: Bug report
2
+ description: Report a defect or unexpected behavior in GovKit
3
+ title: "[Bug]: "
4
+ labels:
5
+ - bug
6
+ body:
7
+ - type: markdown
8
+ attributes:
9
+ value: |
10
+ Thank you for reporting a bug. Please provide enough detail for us to reproduce and triage the issue.
11
+
12
+ - type: input
13
+ id: summary
14
+ attributes:
15
+ label: Summary
16
+ description: Briefly describe the issue
17
+ placeholder: govkit validate fails when eval_criteria.yaml uses mode none
18
+ validations:
19
+ required: true
20
+
21
+ - type: textarea
22
+ id: steps
23
+ attributes:
24
+ label: Steps to reproduce
25
+ description: List the exact steps needed to reproduce the problem
26
+ placeholder: |
27
+ 1. Run ...
28
+ 2. Apply ...
29
+ 3. Observe ...
30
+ validations:
31
+ required: true
32
+
33
+ - type: textarea
34
+ id: expected
35
+ attributes:
36
+ label: Expected behavior
37
+ description: What should have happened?
38
+ validations:
39
+ required: true
40
+
41
+ - type: textarea
42
+ id: actual
43
+ attributes:
44
+ label: Actual behavior
45
+ description: What happened instead?
46
+ validations:
47
+ required: true
48
+
49
+ - type: dropdown
50
+ id: area
51
+ attributes:
52
+ label: Affected area
53
+ options:
54
+ - CLI
55
+ - Agents
56
+ - Docs
57
+ - Governance Schemas
58
+ - CI Templates
59
+ - Worked Examples
60
+ - Other
61
+ validations:
62
+ required: true
63
+
64
+ - type: input
65
+ id: version
66
+ attributes:
67
+ label: Version
68
+ description: GovKit version, tag, or commit SHA
69
+ placeholder: v0.1.0 or commit SHA
70
+
71
+ - type: input
72
+ id: environment
73
+ attributes:
74
+ label: Environment
75
+ description: OS, Python version, shell, and any other relevant environment details
76
+ placeholder: Windows 11, Python 3.11, PowerShell
77
+
78
+ - type: textarea
79
+ id: logs
80
+ attributes:
81
+ label: Relevant output or logs
82
+ description: Paste error output, tracebacks, or validation messages
83
+ render: shell
84
+
85
+ - type: textarea
86
+ id: additional
87
+ attributes:
88
+ label: Additional context
89
+ description: Add any other context, screenshots, or related links
@@ -0,0 +1,5 @@
1
+ blank_issues_enabled: false
2
+ contact_links:
3
+ - name: Security vulnerability report
4
+ url: https://github.com/Accelerated-Innovation/governed-ai-delivery/security/advisories/new
5
+ about: Report security issues privately. Do not open a public issue.
@@ -0,0 +1,73 @@
1
+ name: Feature request
2
+ description: Suggest an improvement or new capability for GovKit
3
+ title: "[Feature]: "
4
+ labels:
5
+ - enhancement
6
+ body:
7
+ - type: markdown
8
+ attributes:
9
+ value: |
10
+ Thank you for suggesting an improvement. Please describe the problem, the proposed change, and why it matters.
11
+
12
+ - type: input
13
+ id: summary
14
+ attributes:
15
+ label: Summary
16
+ description: Briefly describe the requested feature or improvement
17
+ placeholder: Add stack reference docs for Node.js projects
18
+ validations:
19
+ required: true
20
+
21
+ - type: textarea
22
+ id: problem
23
+ attributes:
24
+ label: Problem or opportunity
25
+ description: What problem does this solve, or what opportunity does it address?
26
+ placeholder: Contributors need a clear way to apply GovKit outside Python-specific projects.
27
+ validations:
28
+ required: true
29
+
30
+ - type: textarea
31
+ id: proposal
32
+ attributes:
33
+ label: Proposed solution
34
+ description: Describe the change you would like to see
35
+ placeholder: Add stack-specific reference docs and update generic agent guidance to point to them.
36
+ validations:
37
+ required: true
38
+
39
+ - type: textarea
40
+ id: alternatives
41
+ attributes:
42
+ label: Alternatives considered
43
+ description: Describe any alternatives you considered
44
+
45
+ - type: dropdown
46
+ id: area
47
+ attributes:
48
+ label: Affected area
49
+ options:
50
+ - CLI
51
+ - Agents
52
+ - Docs
53
+ - Governance Schemas
54
+ - CI Templates
55
+ - Worked Examples
56
+ - Other
57
+ validations:
58
+ required: true
59
+
60
+ - type: textarea
61
+ id: impact
62
+ attributes:
63
+ label: Expected impact
64
+ description: Who benefits and how?
65
+ placeholder: Makes GovKit easier to use across multiple stacks and reduces stack-specific assumptions in the core kit.
66
+ validations:
67
+ required: true
68
+
69
+ - type: textarea
70
+ id: additional
71
+ attributes:
72
+ label: Additional context
73
+ description: Add any related links, examples, mockups, or notes
@@ -0,0 +1,11 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: "pip"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "weekly"
7
+
8
+ - package-ecosystem: "github-actions"
9
+ directory: "/"
10
+ schedule:
11
+ interval: "weekly"
@@ -0,0 +1,46 @@
1
+ ## Summary
2
+
3
+ Describe what changed and why.
4
+
5
+ ## Type of Change
6
+
7
+ - [ ] Feature
8
+ - [ ] Fix
9
+ - [ ] Documentation
10
+ - [ ] Refactor
11
+ - [ ] Test
12
+ - [ ] CI / Build
13
+ - [ ] Chore
14
+
15
+ ## Related Issues
16
+
17
+ Link any related issues here.
18
+
19
+ ## What Changed
20
+
21
+ List the main changes in this pull request.
22
+
23
+ -
24
+ -
25
+ -
26
+
27
+ ## Validation
28
+
29
+ Describe what you ran to validate the change.
30
+
31
+ - [ ] Relevant tests passed
32
+ - [ ] `govkit validate` was run where applicable
33
+ - [ ] Worked examples were checked where applicable
34
+ - [ ] Docs were updated where behavior or structure changed
35
+ - [ ] Templates, schemas, and examples were updated together where required
36
+
37
+ ## Breaking Changes
38
+
39
+ - [ ] No breaking changes
40
+ - [ ] This PR includes breaking changes
41
+
42
+ If there are breaking changes, describe them here.
43
+
44
+ ## Additional Notes
45
+
46
+ Add any context reviewers should know.
@@ -0,0 +1,32 @@
1
+ name: Publish to PyPI
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+
7
+ jobs:
8
+ build-and-publish:
9
+ runs-on: ubuntu-latest
10
+ environment: pypi
11
+ permissions:
12
+ contents: read
13
+ id-token: write
14
+
15
+ steps:
16
+ - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
17
+
18
+ - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
19
+ with:
20
+ python-version: "3.11"
21
+
22
+ - name: Install build tools
23
+ run: pip install build twine
24
+
25
+ - name: Build
26
+ run: python -m build
27
+
28
+ - name: Check
29
+ run: twine check dist/*
30
+
31
+ - name: Publish
32
+ uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # release/v1
@@ -0,0 +1,102 @@
1
+ # ----------------------------
2
+ # OS
3
+ # ----------------------------
4
+ .DS_Store
5
+ Thumbs.db
6
+ desktop.ini
7
+
8
+ # ----------------------------
9
+ # Python
10
+ # ----------------------------
11
+ __pycache__/
12
+ *.py[cod]
13
+ *.pyo
14
+ *.pyd
15
+ *.so
16
+ *.egg-info/
17
+ .eggs/
18
+ dist/
19
+ build/
20
+ *.egg
21
+ .env
22
+ .venv/
23
+ venv/
24
+ env/
25
+ pip-wheel-metadata/
26
+ .coverage
27
+ coverage.xml
28
+ htmlcov/
29
+ .pytest_cache/
30
+ .mypy_cache/
31
+ .ruff_cache/
32
+
33
+ # ----------------------------
34
+ # Node / Frontend
35
+ # ----------------------------
36
+ node_modules/
37
+ npm-debug.log*
38
+ yarn-debug.log*
39
+ yarn-error.log*
40
+ pnpm-lock.yaml
41
+ dist/
42
+ build/
43
+ .next/
44
+ out/
45
+
46
+ # ----------------------------
47
+ # IDE
48
+ # ----------------------------
49
+ .vscode/*
50
+ !.vscode/settings.json
51
+ !.vscode/extensions.json
52
+ !.vscode/launch.json
53
+ .idea/
54
+
55
+ .qodo
56
+
57
+ # ----------------------------
58
+ # Logs
59
+ # ----------------------------
60
+ *.log
61
+ logs/
62
+
63
+ # ----------------------------
64
+ # CI / Artifacts
65
+ # ----------------------------
66
+ *.zip
67
+ *.tar.gz
68
+ *.tgz
69
+ artifacts/
70
+ reports/
71
+
72
+ # ----------------------------
73
+ # Security / Secrets
74
+ # ----------------------------
75
+ .env.*
76
+ secrets/
77
+ *.pem
78
+ *.key
79
+ *.crt
80
+ *.p12
81
+
82
+ # ----------------------------
83
+ # Evaluation / Data
84
+ # ----------------------------
85
+ data/
86
+ datasets/
87
+ *.sqlite3
88
+ *.db
89
+ *.csv
90
+ *.parquet
91
+
92
+ # ----------------------------
93
+ # Docker
94
+ # ----------------------------
95
+ docker-compose.override.yml
96
+
97
+ # ----------------------------
98
+ # Mac / Windows noise
99
+ # ----------------------------
100
+ *.swp
101
+ *.swo
102
+ *.stackdump
@@ -0,0 +1,6 @@
1
+ repos:
2
+ - repo: https://github.com/astral-sh/ruff-pre-commit
3
+ rev: v0.4.5
4
+ hooks:
5
+ - id: ruff
6
+ - id: ruff-format
@@ -0,0 +1,104 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
+
7
+ ---
8
+
9
+ ## [0.4.0] — 2026-04-09
10
+
11
+ ### Added
12
+ - **Level 5: GenAI Operations** — governed tooling for LLM-powered features
13
+ - **Architecture contracts** — LLM_GATEWAY_CONTRACT.md (LiteLLM), OBSERVABILITY_LLM_CONTRACT.md (OpenLLMetry + Langfuse), GUARDRAILS_CONTRACT.md (NeMo + Guardrails AI), EVALUATION_LLM_CONTRACT.md (DeepEval + Promptfoo + RAGAS)
14
+ - **Practical guides** — 8 usage guides in `docs/backend/guides/` (one per tool)
15
+ - **Guardrails config schema** — `governance/backend/schemas/guardrails_config.schema.json`
16
+ - **L5 feature starters** — `starter_backend_l5/`, `starter_cli_l5/` with LLM NFRs, deepeval criteria, L5 preflight sections
17
+ - **L5 plan and preflight templates** — extended with LLM gateway, guardrails, and evaluation sections
18
+ - **L5 agent rules** — `llm-gateway.md`, `guardrails.md`, `llm-evaluation.md`, `llm-observability.md` (Claude Code + Copilot)
19
+ - **L5 agent skills** — `/genai-preflight` (validates L5 architecture decisions), `/eval-suite-planning` (plans DeepEval/Promptfoo/RAGAS suites)
20
+ - **L5 CI templates** — `deepeval-gate.yml`, `promptfoo-gate.yml`, `guardrails-check.yml` (GitHub Actions + Azure DevOps)
21
+ - **L5 CLAUDE.md variants** — `l5-backend-api.md`, `l5-backend-cli.md`
22
+ - **L5 Copilot instruction variants** — `l5-backend-api.md`, `l5-backend-cli.md`
23
+ - **L5 validation checks** — `check_llm_nfrs()`, `check_l5_eval_criteria()`, `check_l5_preflight_sections()` (9 total checks at L5)
24
+
25
+ ### Changed
26
+ - **eval_criteria.schema.json** — added 11 new eval_class values (deepeval_*, promptfoo_*, ragas_*) and optional `tool` field
27
+ - **evaluation_prediction.schema.json** — added optional `llm_evaluation` object for L5 predictions
28
+ - **agent-manifest.schema.json** — added `level_5` to variant_config properties
29
+ - **TECH_STACK.md** — added sections for LLM Gateway, LLM Evaluation, LLM Observability, Runtime Guardrails
30
+ - **AGENT_ARCHITECTURE.md** — updated tool integration, observability, evaluation, added guardrails section
31
+ - **EVAL_STACK.md** — replaced LangSmith/Arize with Langfuse, added DeepEval/Promptfoo/RAGAS
32
+ - **check_gherkin_nfr_coverage()** — now skips non-standard NFR categories (e.g., LLM-specific)
33
+ - **CLI** — `--level` accepts "5", `cmd_init` selects L5 starters, marker version bumped to 0.4.0
34
+
35
+ ---
36
+
37
+ ## [0.3.0] — 2026-04-08
38
+
39
+ ### Added
40
+ - **Maturity model** — govkit now supports Level 3 (Spec-Driven Development) and Level 4 (Governed AI Delivery)
41
+ - **`--level` flag** — `govkit apply`, `govkit init`, and `govkit validate` accept `--level 3` or `--level 4`
42
+ - **`.govkit` marker file** — written after `govkit apply`, tracks level and options for auto-detection by `init` and `validate`
43
+ - **Level 3 feature starters** — `starter_backend_l3/`, `starter_cli_l3/`, `starter_ui_l3/` with 3 artifacts (no eval_criteria.yaml, no architecture_preflight.md)
44
+ - **Level 3 plan templates** — simplified plan.md without evaluation_prediction blocks
45
+ - **Level 3 generic agent rules** — `test-first.md` and `spec-compliance.md` (no path-scoped rules)
46
+ - **Level 3 CLAUDE.md variants** — `l3-backend-api.md`, `l3-backend-cli.md`, `l3-ui-react.md`, `l3-ui-angular.md`
47
+ - **Level 3 agent skills** — simplified `/spec-planning` and `/implementation-plan` without evaluation scoring
48
+ - **Level 3 Copilot equivalents** — L3 copilot-instructions and prompts for all project types
49
+ - **Level 3 CI templates** — `l3-quality-gate.yml` for GitHub Actions and Azure DevOps (no eval gates, no boundary checks)
50
+ - **Level-aware validation** — `govkit validate` checks 3 artifacts for L3, 5 for L4; skips eval checks at L3
51
+ - **Manifest `level_3` sub-key** — variant overrides co-located with parent variants; schema updated
52
+
53
+ ### Changed
54
+ - **Manifest schema** — `variant_config` now accepts optional `level_3` override with same shape
55
+ - **`resolve_variant_files()`** — respects level selection, uses `level_3` override when level is "3"
56
+ - **`run_validation()`** — accepts `level` parameter; auto-detects from `.govkit` marker
57
+ - **`check_completeness()`** — parameterized to accept custom artifact list
58
+ - **Starter skip list** — includes L3 starters (`starter_backend_l3`, etc.)
59
+
60
+ ---
61
+
62
+ ## [0.2.0] — 2026-04-02
63
+
64
+ ### Added
65
+ - **FIRST Scoring Rubric** — concrete 1–5 scoring definitions for each FIRST principle (backend and UI)
66
+ - **7 Virtues Scoring Rubric** — concrete 1–5 scoring definitions for each code virtue (backend and UI)
67
+ - **Observability Port Contract** — port interface, adapter example, and testing guidance
68
+ - **Error Mapping Contract** — domain exception hierarchy and HTTP status mapping
69
+ - **Cross-Cutting Concerns** — DTOs, validation boundaries, pagination, timestamps, soft deletes, audit trails, configuration
70
+ - **LangGraph vs LangChain decision matrix** in TECH_STACK.md
71
+ - **Evaluation prediction schema** — JSON Schema for plan.md prediction blocks
72
+ - **Import-linter reference config** — ready-to-merge config for hexagonal architecture enforcement
73
+ - **CI governance artifact checks** — jobs to verify architecture preflight exists and commit message format
74
+ - **CI README** — documents what's enforced vs predicted vs stubbed vs agent-only
75
+ - **README expansion** — prerequisites, concepts, interactive prompt example, post-install verification, troubleshooting, FAQ, glossary, governance structure explanation
76
+ - **CONTRIBUTING.md** and **CHANGELOG.md**
77
+
78
+ ### Changed
79
+ - **Evaluation prediction format standardized** — UI now uses same `first`/`virtues`/`accessibility` structure as backend
80
+ - **UI eval-gate** now checks Virtue scores in addition to FIRST scores (GitHub Actions + Azure DevOps)
81
+ - **Copilot prompts enhanced** — added template locations, output paths, scoring rubric references, increment sizing
82
+ - **Starter templates** — added mode selection instructions to backend and CLI starters
83
+ - **Skill invocation syntax** — corrected `/project:` prefix to `/` in README and all CLAUDE.md variants
84
+
85
+ ### Fixed
86
+ - **CLI error handling** — source path validation, UTF-8 encoding, JSON parse error handling, manifest structure validation
87
+ - **`cmd_list`** — now skips non-directory entries and handles malformed manifests gracefully
88
+
89
+ ---
90
+
91
+ ## [0.1.0] — 2026-04-01
92
+
93
+ ### Added
94
+ - Initial release
95
+ - Two agents: `claude-code` and `copilot` with variant-based manifests
96
+ - Variant options: `--type` (api/cli), `--ui` (none/react/angular), `--ci` (github/azure)
97
+ - CLI: `govkit apply`, `govkit list`, `govkit validate`
98
+ - Backend architecture docs: ARCH_CONTRACT, BOUNDARIES, API_CONVENTIONS, CLI_CONVENTIONS, SECURITY_AUTH_PATTERNS, TECH_STACK, TESTING, DESIGN_PRINCIPLES, GHERKIN_CONVENTIONS
99
+ - UI architecture docs: MVVM_CONTRACT, COMPONENT_CONVENTIONS, STATE_MANAGEMENT (React + Angular)
100
+ - Evaluation standards: eval_criteria.md (backend + UI), EVAL_STACK.md
101
+ - Feature starters: starter_backend, starter_cli, starter_ui
102
+ - Worked examples: schema_contract_example, ui_task_dashboard
103
+ - CI templates: quality-gate, eval-gate, ui-quality-gate, ui-eval-gate (GitHub Actions + Azure DevOps)
104
+ - Governance schemas: eval_criteria.schema.json (backend + UI)
@@ -0,0 +1,90 @@
1
+ # Code of Conduct
2
+
3
+ ## Our Commitment
4
+
5
+ We are committed to making participation in the Governed AI Delivery community a respectful, professional, and harassment-free experience for everyone.
6
+
7
+ We want this project to be a place where contributors, maintainers, and users can collaborate productively across different backgrounds, experience levels, and perspectives.
8
+
9
+ ## Expected Behavior
10
+
11
+ Examples of behavior that contribute to a positive environment include:
12
+
13
+ - Being respectful in comments, reviews, discussions, and other community interactions
14
+ - Giving and receiving constructive feedback
15
+ - Focusing on what is best for the project and community
16
+ - Showing empathy toward other community members
17
+ - Being professional in disagreement
18
+ - Respecting different viewpoints and experiences
19
+
20
+ ## Unacceptable Behavior
21
+
22
+ Examples of unacceptable behavior include:
23
+
24
+ - Harassment, intimidation, or discrimination of any kind
25
+ - Trolling, insulting, or derogatory comments
26
+ - Personal or political attacks
27
+ - Public or private harassment
28
+ - Publishing someone else's private information without explicit permission
29
+ - Sexualized language or imagery
30
+ - Threatening language
31
+ - Sustained disruptive behavior in issues, pull requests, discussions, or other project spaces
32
+ - Any conduct that would be inappropriate in a professional setting
33
+
34
+ ## Scope
35
+
36
+ This Code of Conduct applies within all project spaces, including:
37
+
38
+ - GitHub issues
39
+ - pull requests
40
+ - discussions
41
+ - code reviews
42
+ - project documentation
43
+ - any other official community channels related to this project
44
+
45
+ It also applies when an individual is officially representing the project in public spaces.
46
+
47
+ ## Reporting
48
+
49
+ If you experience or witness unacceptable behavior, please report it privately.
50
+
51
+ Please do not open public GitHub issues for Code of Conduct reports.
52
+
53
+ Report concerns to: marty@acceleratedinnovation.com
54
+
55
+ If a report relates to a security issue, follow the process described in `SECURITY.md`.
56
+
57
+ When making a report, please include:
58
+
59
+ - a description of the incident
60
+ - where it occurred
61
+ - when it occurred
62
+ - any relevant screenshots, links, or supporting details
63
+
64
+ All reports will be reviewed and handled as promptly and confidentially as possible.
65
+
66
+ ## Enforcement
67
+
68
+ Project maintainers are responsible for clarifying and enforcing this Code of Conduct.
69
+
70
+ Maintainers have the right to remove, edit, or reject comments, commits, code, issues, and other contributions that do not align with this Code of Conduct.
71
+
72
+ Maintainers may take any action they deem appropriate in response to unacceptable behavior, including:
73
+
74
+ - warning the contributor
75
+ - removing content
76
+ - temporarily restricting participation
77
+ - permanently banning an individual from project spaces
78
+
79
+ ## Enforcement Guidelines
80
+
81
+ In deciding on an appropriate response, maintainers will consider:
82
+
83
+ - the severity of the behavior
84
+ - whether the behavior was repeated
85
+ - the impact on the affected person or community
86
+ - whether the contributor responds in good faith
87
+
88
+ ## Attribution
89
+
90
+ This Code of Conduct is informed by the Contributor Covenant, a widely used open source code of conduct framework.