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.
- govkit-0.5.0/.claude/settings.local.json +25 -0
- govkit-0.5.0/.github/CODEOWNDERS +7 -0
- govkit-0.5.0/.github/ISSUE_TEMPLATE/bug_report.yml +89 -0
- govkit-0.5.0/.github/ISSUE_TEMPLATE/config.yml +5 -0
- govkit-0.5.0/.github/ISSUE_TEMPLATE/feature_request.yml +73 -0
- govkit-0.5.0/.github/dependabot.yml +11 -0
- govkit-0.5.0/.github/pull_request_template.md +46 -0
- govkit-0.5.0/.github/workflows/publish.yml +32 -0
- govkit-0.5.0/.gitignore +102 -0
- govkit-0.5.0/.pre-commit-config.yaml +6 -0
- govkit-0.5.0/CHANGELOG.md +104 -0
- govkit-0.5.0/CODE_OF_CONDUCT.md +90 -0
- govkit-0.5.0/CONTRIBUTING.md +191 -0
- govkit-0.5.0/COPILOT_SKILLS_MIGRATION.md +71 -0
- govkit-0.5.0/CROSS_REPO_GOVERNANCE_PLAN.md +228 -0
- govkit-0.5.0/IMPROVEMENT_PLAN.md +177 -0
- govkit-0.5.0/L5_IMPLEMENTATION_PLAN.md +341 -0
- govkit-0.5.0/LICENSE +178 -0
- govkit-0.5.0/NOTICE.md +4 -0
- govkit-0.5.0/PARITY_TEST.md +329 -0
- govkit-0.5.0/PKG-INFO +731 -0
- govkit-0.5.0/README.md +703 -0
- govkit-0.5.0/SECURITY.md +56 -0
- govkit-0.5.0/agents/claude-code/claude-md/backend-api.md +206 -0
- govkit-0.5.0/agents/claude-code/claude-md/backend-cli.md +206 -0
- govkit-0.5.0/agents/claude-code/claude-md/l3-backend-api.md +141 -0
- govkit-0.5.0/agents/claude-code/claude-md/l3-backend-cli.md +142 -0
- govkit-0.5.0/agents/claude-code/claude-md/l3-ui-angular.md +105 -0
- govkit-0.5.0/agents/claude-code/claude-md/l3-ui-react.md +105 -0
- govkit-0.5.0/agents/claude-code/claude-md/l5-backend-api.md +184 -0
- govkit-0.5.0/agents/claude-code/claude-md/l5-backend-cli.md +114 -0
- govkit-0.5.0/agents/claude-code/claude-md/ui-angular.md +120 -0
- govkit-0.5.0/agents/claude-code/claude-md/ui-react.md +118 -0
- govkit-0.5.0/agents/claude-code/manifest.json +270 -0
- govkit-0.5.0/agents/claude-code/rules/backend/adapters.md +32 -0
- govkit-0.5.0/agents/claude-code/rules/backend/api.md +21 -0
- govkit-0.5.0/agents/claude-code/rules/backend/guardrails.md +26 -0
- govkit-0.5.0/agents/claude-code/rules/backend/llm-evaluation.md +30 -0
- govkit-0.5.0/agents/claude-code/rules/backend/llm-gateway.md +25 -0
- govkit-0.5.0/agents/claude-code/rules/backend/llm-observability.md +24 -0
- govkit-0.5.0/agents/claude-code/rules/backend/ports.md +26 -0
- govkit-0.5.0/agents/claude-code/rules/backend/security.md +28 -0
- govkit-0.5.0/agents/claude-code/rules/backend/services.md +27 -0
- govkit-0.5.0/agents/claude-code/rules/cli/cli.md +24 -0
- govkit-0.5.0/agents/claude-code/rules/generic/repo-scope.md +82 -0
- govkit-0.5.0/agents/claude-code/rules/generic/spec-compliance.md +40 -0
- govkit-0.5.0/agents/claude-code/rules/generic/test-first.md +44 -0
- govkit-0.5.0/agents/claude-code/rules/ui-angular/accessibility.md +42 -0
- govkit-0.5.0/agents/claude-code/rules/ui-angular/api.md +44 -0
- govkit-0.5.0/agents/claude-code/rules/ui-angular/components.md +33 -0
- govkit-0.5.0/agents/claude-code/rules/ui-angular/viewmodel.md +13 -0
- govkit-0.5.0/agents/claude-code/rules/ui-react/accessibility.md +36 -0
- govkit-0.5.0/agents/claude-code/rules/ui-react/api.md +39 -0
- govkit-0.5.0/agents/claude-code/rules/ui-react/components.md +31 -0
- govkit-0.5.0/agents/claude-code/rules/ui-react/viewmodel.md +13 -0
- govkit-0.5.0/agents/claude-code/skills/backend/adr-author/SKILL.md +55 -0
- govkit-0.5.0/agents/claude-code/skills/backend/architecture-preflight/SKILL.md +76 -0
- govkit-0.5.0/agents/claude-code/skills/backend/eval-suite-planning/SKILL.md +74 -0
- govkit-0.5.0/agents/claude-code/skills/backend/genai-preflight/SKILL.md +67 -0
- govkit-0.5.0/agents/claude-code/skills/backend/implementation-plan/SKILL.md +82 -0
- govkit-0.5.0/agents/claude-code/skills/backend/l3-implementation-plan/SKILL.md +62 -0
- govkit-0.5.0/agents/claude-code/skills/backend/l3-spec-planning/SKILL.md +45 -0
- govkit-0.5.0/agents/claude-code/skills/backend/spec-planning/SKILL.md +60 -0
- govkit-0.5.0/agents/claude-code/skills/ui/adr-author/SKILL.md +27 -0
- govkit-0.5.0/agents/claude-code/skills/ui/architecture-preflight/SKILL.md +87 -0
- govkit-0.5.0/agents/claude-code/skills/ui/implementation-plan/SKILL.md +58 -0
- govkit-0.5.0/agents/claude-code/skills/ui/l3-implementation-plan/SKILL.md +58 -0
- govkit-0.5.0/agents/claude-code/skills/ui/l3-spec-planning/SKILL.md +35 -0
- govkit-0.5.0/agents/claude-code/skills/ui/spec-planning/SKILL.md +71 -0
- govkit-0.5.0/agents/codex/agents-md/backend-api.md +206 -0
- govkit-0.5.0/agents/codex/agents-md/backend-cli.md +206 -0
- govkit-0.5.0/agents/codex/agents-md/l3-backend-api.md +197 -0
- govkit-0.5.0/agents/codex/agents-md/l3-backend-cli.md +198 -0
- govkit-0.5.0/agents/codex/agents-md/l3-ui-angular.md +135 -0
- govkit-0.5.0/agents/codex/agents-md/l3-ui-react.md +135 -0
- govkit-0.5.0/agents/codex/agents-md/l5-backend-api.md +184 -0
- govkit-0.5.0/agents/codex/agents-md/l5-backend-cli.md +114 -0
- govkit-0.5.0/agents/codex/agents-md/ui-angular.md +123 -0
- govkit-0.5.0/agents/codex/agents-md/ui-react.md +121 -0
- govkit-0.5.0/agents/codex/manifest.json +262 -0
- govkit-0.5.0/agents/codex/rules/backend/adapters.md +27 -0
- govkit-0.5.0/agents/codex/rules/backend/api.md +16 -0
- govkit-0.5.0/agents/codex/rules/backend/guardrails.md +26 -0
- govkit-0.5.0/agents/codex/rules/backend/llm-evaluation.md +30 -0
- govkit-0.5.0/agents/codex/rules/backend/llm-gateway.md +25 -0
- govkit-0.5.0/agents/codex/rules/backend/llm-observability.md +24 -0
- govkit-0.5.0/agents/codex/rules/backend/ports.md +21 -0
- govkit-0.5.0/agents/codex/rules/backend/security.md +22 -0
- govkit-0.5.0/agents/codex/rules/backend/services.md +22 -0
- govkit-0.5.0/agents/codex/rules/cli/cli.md +18 -0
- govkit-0.5.0/agents/codex/rules/generic/repo-scope.md +82 -0
- govkit-0.5.0/agents/codex/rules/generic/spec-compliance.md +41 -0
- govkit-0.5.0/agents/codex/rules/generic/test-first.md +44 -0
- govkit-0.5.0/agents/codex/rules/ui-angular/accessibility.md +42 -0
- govkit-0.5.0/agents/codex/rules/ui-angular/api.md +44 -0
- govkit-0.5.0/agents/codex/rules/ui-angular/components.md +33 -0
- govkit-0.5.0/agents/codex/rules/ui-angular/viewmodel.md +13 -0
- govkit-0.5.0/agents/codex/rules/ui-react/accessibility.md +36 -0
- govkit-0.5.0/agents/codex/rules/ui-react/api.md +39 -0
- govkit-0.5.0/agents/codex/rules/ui-react/components.md +31 -0
- govkit-0.5.0/agents/codex/rules/ui-react/viewmodel.md +13 -0
- govkit-0.5.0/agents/codex/skills/backend/adr-author/SKILL.md +55 -0
- govkit-0.5.0/agents/codex/skills/backend/architecture-preflight/SKILL.md +76 -0
- govkit-0.5.0/agents/codex/skills/backend/eval-suite-planning/SKILL.md +74 -0
- govkit-0.5.0/agents/codex/skills/backend/genai-preflight/SKILL.md +67 -0
- govkit-0.5.0/agents/codex/skills/backend/implementation-plan/SKILL.md +82 -0
- govkit-0.5.0/agents/codex/skills/backend/l3-implementation-plan/SKILL.md +62 -0
- govkit-0.5.0/agents/codex/skills/backend/l3-spec-planning/SKILL.md +45 -0
- govkit-0.5.0/agents/codex/skills/backend/spec-planning/SKILL.md +60 -0
- govkit-0.5.0/agents/codex/skills/ui/adr-author/SKILL.md +25 -0
- govkit-0.5.0/agents/codex/skills/ui/architecture-preflight/SKILL.md +87 -0
- govkit-0.5.0/agents/codex/skills/ui/implementation-plan/SKILL.md +60 -0
- govkit-0.5.0/agents/codex/skills/ui/l3-implementation-plan/SKILL.md +58 -0
- govkit-0.5.0/agents/codex/skills/ui/l3-spec-planning/SKILL.md +35 -0
- govkit-0.5.0/agents/codex/skills/ui/spec-planning/SKILL.md +73 -0
- govkit-0.5.0/agents/copilot/copilot-instructions/backend-api.md +382 -0
- govkit-0.5.0/agents/copilot/copilot-instructions/backend-cli.md +384 -0
- govkit-0.5.0/agents/copilot/copilot-instructions/l3-backend-api.md +178 -0
- govkit-0.5.0/agents/copilot/copilot-instructions/l3-backend-cli.md +179 -0
- govkit-0.5.0/agents/copilot/copilot-instructions/l3-ui-angular.md +114 -0
- govkit-0.5.0/agents/copilot/copilot-instructions/l3-ui-react.md +114 -0
- govkit-0.5.0/agents/copilot/copilot-instructions/l5-backend-api.md +134 -0
- govkit-0.5.0/agents/copilot/copilot-instructions/l5-backend-cli.md +88 -0
- govkit-0.5.0/agents/copilot/copilot-instructions/ui-angular.md +161 -0
- govkit-0.5.0/agents/copilot/copilot-instructions/ui-react.md +209 -0
- govkit-0.5.0/agents/copilot/instructions/backend/adapters.instructions.md +29 -0
- govkit-0.5.0/agents/copilot/instructions/backend/api.instructions.md +18 -0
- govkit-0.5.0/agents/copilot/instructions/backend/guardrails.instructions.md +16 -0
- govkit-0.5.0/agents/copilot/instructions/backend/llm-evaluation.instructions.md +18 -0
- govkit-0.5.0/agents/copilot/instructions/backend/llm-gateway.instructions.md +17 -0
- govkit-0.5.0/agents/copilot/instructions/backend/llm-observability.instructions.md +17 -0
- govkit-0.5.0/agents/copilot/instructions/backend/ports.instructions.md +23 -0
- govkit-0.5.0/agents/copilot/instructions/backend/security.instructions.md +26 -0
- govkit-0.5.0/agents/copilot/instructions/backend/services.instructions.md +24 -0
- govkit-0.5.0/agents/copilot/instructions/cli/cli.instructions.md +22 -0
- govkit-0.5.0/agents/copilot/instructions/generic/repo-scope.instructions.md +86 -0
- govkit-0.5.0/agents/copilot/instructions/generic/spec-compliance.instructions.md +45 -0
- govkit-0.5.0/agents/copilot/instructions/generic/test-first.instructions.md +48 -0
- govkit-0.5.0/agents/copilot/instructions/ui-angular/accessibility.instructions.md +37 -0
- govkit-0.5.0/agents/copilot/instructions/ui-angular/api.instructions.md +16 -0
- govkit-0.5.0/agents/copilot/instructions/ui-angular/components.instructions.md +21 -0
- govkit-0.5.0/agents/copilot/instructions/ui-angular/viewmodel.instructions.md +17 -0
- govkit-0.5.0/agents/copilot/instructions/ui-react/accessibility.instructions.md +34 -0
- govkit-0.5.0/agents/copilot/instructions/ui-react/api.instructions.md +18 -0
- govkit-0.5.0/agents/copilot/instructions/ui-react/components.instructions.md +19 -0
- govkit-0.5.0/agents/copilot/instructions/ui-react/viewmodel.instructions.md +17 -0
- govkit-0.5.0/agents/copilot/manifest.json +228 -0
- govkit-0.5.0/agents/copilot/skills/backend/adr-author/SKILL.md +62 -0
- govkit-0.5.0/agents/copilot/skills/backend/architecture-preflight/SKILL.md +78 -0
- govkit-0.5.0/agents/copilot/skills/backend/eval-suite-planning/SKILL.md +35 -0
- govkit-0.5.0/agents/copilot/skills/backend/genai-preflight/SKILL.md +35 -0
- govkit-0.5.0/agents/copilot/skills/backend/implementation-plan/SKILL.md +157 -0
- govkit-0.5.0/agents/copilot/skills/backend/l3-implementation-plan/SKILL.md +98 -0
- govkit-0.5.0/agents/copilot/skills/backend/l3-spec-planning/SKILL.md +46 -0
- govkit-0.5.0/agents/copilot/skills/backend/spec-planning/SKILL.md +79 -0
- govkit-0.5.0/agents/copilot/skills/ui/adr-author/SKILL.md +39 -0
- govkit-0.5.0/agents/copilot/skills/ui/architecture-preflight/SKILL.md +92 -0
- govkit-0.5.0/agents/copilot/skills/ui/implementation-plan/SKILL.md +56 -0
- govkit-0.5.0/agents/copilot/skills/ui/l3-implementation-plan/SKILL.md +60 -0
- govkit-0.5.0/agents/copilot/skills/ui/l3-spec-planning/SKILL.md +37 -0
- govkit-0.5.0/agents/copilot/skills/ui/spec-planning/SKILL.md +68 -0
- govkit-0.5.0/ci/README.md +178 -0
- govkit-0.5.0/ci/azure/deepeval-gate.yml +64 -0
- govkit-0.5.0/ci/azure/eval-gate.yml +139 -0
- govkit-0.5.0/ci/azure/guardrails-check.yml +73 -0
- govkit-0.5.0/ci/azure/l3-quality-gate.yml +117 -0
- govkit-0.5.0/ci/azure/promptfoo-gate.yml +62 -0
- govkit-0.5.0/ci/azure/quality-gate.yml +180 -0
- govkit-0.5.0/ci/azure/repo-scope-check.yml +110 -0
- govkit-0.5.0/ci/azure/ui-eval-gate.yml +174 -0
- govkit-0.5.0/ci/azure/ui-quality-gate.yml +153 -0
- govkit-0.5.0/ci/github/deepeval-gate.yml +75 -0
- govkit-0.5.0/ci/github/eval-gate.yml +141 -0
- govkit-0.5.0/ci/github/guardrails-check.yml +88 -0
- govkit-0.5.0/ci/github/l3-quality-gate.yml +121 -0
- govkit-0.5.0/ci/github/promptfoo-gate.yml +73 -0
- govkit-0.5.0/ci/github/quality-gate.yml +181 -0
- govkit-0.5.0/ci/github/repo-scope-check.yml +113 -0
- govkit-0.5.0/ci/github/ui-eval-gate.yml +170 -0
- govkit-0.5.0/ci/github/ui-quality-gate.yml +146 -0
- govkit-0.5.0/cli/__init__.py +0 -0
- govkit-0.5.0/cli/govkit.py +391 -0
- govkit-0.5.0/cli/validate.py +441 -0
- govkit-0.5.0/docs/CROSS_REPO_FEATURES.md +416 -0
- govkit-0.5.0/docs/REPO_SCOPE_ANALYSIS_GUIDANCE.md +75 -0
- govkit-0.5.0/docs/backend/architecture/ADR/TEMPLATE.md +151 -0
- govkit-0.5.0/docs/backend/architecture/AGENT_ARCHITECTURE.md +336 -0
- govkit-0.5.0/docs/backend/architecture/API_CONVENTIONS.md +129 -0
- govkit-0.5.0/docs/backend/architecture/ARCH_CONTRACT.md +103 -0
- govkit-0.5.0/docs/backend/architecture/BOUNDARIES.md +71 -0
- govkit-0.5.0/docs/backend/architecture/CLI_CONVENTIONS.md +189 -0
- govkit-0.5.0/docs/backend/architecture/CROSS_CUTTING_CONCERNS.md +184 -0
- govkit-0.5.0/docs/backend/architecture/DESIGN_PRINCIPLES.md +61 -0
- govkit-0.5.0/docs/backend/architecture/ERROR_MAPPING.md +128 -0
- govkit-0.5.0/docs/backend/architecture/EVALUATION_LLM_CONTRACT.md +207 -0
- govkit-0.5.0/docs/backend/architecture/GHERKIN_CONVENTIONS.md +133 -0
- govkit-0.5.0/docs/backend/architecture/GHERKIN_TAGS.md +82 -0
- govkit-0.5.0/docs/backend/architecture/GUARDRAILS_CONTRACT.md +168 -0
- govkit-0.5.0/docs/backend/architecture/LAYER_IMPLEMENTATION.md +445 -0
- govkit-0.5.0/docs/backend/architecture/LLM_GATEWAY_CONTRACT.md +145 -0
- govkit-0.5.0/docs/backend/architecture/OBSERVABILITY_LLM_CONTRACT.md +159 -0
- govkit-0.5.0/docs/backend/architecture/OBSERVABILITY_PORT_CONTRACT.md +167 -0
- govkit-0.5.0/docs/backend/architecture/REPO_STRUCTURE_README.md +382 -0
- govkit-0.5.0/docs/backend/architecture/SECURITY_AUTH_PATTERNS.md +130 -0
- govkit-0.5.0/docs/backend/architecture/TECH_STACK.md +504 -0
- govkit-0.5.0/docs/backend/architecture/TESTING.md +392 -0
- govkit-0.5.0/docs/backend/evaluation/EVAL_STACK.md +198 -0
- govkit-0.5.0/docs/backend/evaluation/FIRST_SCORING_RUBRIC.md +87 -0
- govkit-0.5.0/docs/backend/evaluation/VIRTUE_SCORING_RUBRIC.md +131 -0
- govkit-0.5.0/docs/backend/evaluation/eval_criteria.md +246 -0
- govkit-0.5.0/docs/backend/guides/deepeval-usage.md +132 -0
- govkit-0.5.0/docs/backend/guides/guardrails-ai-setup.md +134 -0
- govkit-0.5.0/docs/backend/guides/langfuse-integration.md +103 -0
- govkit-0.5.0/docs/backend/guides/litellm-setup.md +118 -0
- govkit-0.5.0/docs/backend/guides/nemo-guardrails-setup.md +135 -0
- govkit-0.5.0/docs/backend/guides/openllmetry-setup.md +98 -0
- govkit-0.5.0/docs/backend/guides/promptfoo-usage.md +146 -0
- govkit-0.5.0/docs/backend/guides/ragas-evaluation.md +139 -0
- govkit-0.5.0/docs/stacks/README.md +56 -0
- govkit-0.5.0/docs/stacks/dotnet-aspnet/API_CONVENTIONS.md +180 -0
- govkit-0.5.0/docs/stacks/dotnet-aspnet/LAYER_IMPLEMENTATION.md +388 -0
- govkit-0.5.0/docs/stacks/dotnet-aspnet/OBSERVABILITY_PORT_CONTRACT.md +209 -0
- govkit-0.5.0/docs/stacks/dotnet-aspnet/SECURITY_AUTH_PATTERNS.md +175 -0
- govkit-0.5.0/docs/stacks/dotnet-aspnet/TECH_STACK.md +455 -0
- govkit-0.5.0/docs/stacks/dotnet-aspnet/TESTING.md +384 -0
- govkit-0.5.0/docs/stacks/go-gin/API_CONVENTIONS.md +230 -0
- govkit-0.5.0/docs/stacks/go-gin/LAYER_IMPLEMENTATION.md +342 -0
- govkit-0.5.0/docs/stacks/go-gin/OBSERVABILITY_PORT_CONTRACT.md +220 -0
- govkit-0.5.0/docs/stacks/go-gin/SECURITY_AUTH_PATTERNS.md +223 -0
- govkit-0.5.0/docs/stacks/go-gin/TECH_STACK.md +408 -0
- govkit-0.5.0/docs/stacks/go-gin/TESTING.md +298 -0
- govkit-0.5.0/docs/stacks/java-spring-boot/API_CONVENTIONS.md +228 -0
- govkit-0.5.0/docs/stacks/java-spring-boot/LAYER_IMPLEMENTATION.md +323 -0
- govkit-0.5.0/docs/stacks/java-spring-boot/OBSERVABILITY_PORT_CONTRACT.md +199 -0
- govkit-0.5.0/docs/stacks/java-spring-boot/SECURITY_AUTH_PATTERNS.md +188 -0
- govkit-0.5.0/docs/stacks/java-spring-boot/TECH_STACK.md +451 -0
- govkit-0.5.0/docs/stacks/java-spring-boot/TESTING.md +286 -0
- govkit-0.5.0/docs/stacks/nodejs-fastify/API_CONVENTIONS.md +228 -0
- govkit-0.5.0/docs/stacks/nodejs-fastify/LAYER_IMPLEMENTATION.md +325 -0
- govkit-0.5.0/docs/stacks/nodejs-fastify/OBSERVABILITY_PORT_CONTRACT.md +183 -0
- govkit-0.5.0/docs/stacks/nodejs-fastify/SECURITY_AUTH_PATTERNS.md +199 -0
- govkit-0.5.0/docs/stacks/nodejs-fastify/TECH_STACK.md +432 -0
- govkit-0.5.0/docs/stacks/nodejs-fastify/TESTING.md +279 -0
- govkit-0.5.0/docs/ui/architecture/ACCESSIBILITY_STANDARDS.md +482 -0
- govkit-0.5.0/docs/ui/architecture/ADR/TEMPLATE.md +159 -0
- govkit-0.5.0/docs/ui/architecture/MVVM_CONTRACT.md +90 -0
- govkit-0.5.0/docs/ui/architecture/angular/COMPONENT_CONVENTIONS.md +291 -0
- govkit-0.5.0/docs/ui/architecture/angular/STATE_MANAGEMENT.md +131 -0
- govkit-0.5.0/docs/ui/architecture/angular/TECH_STACK.md +84 -0
- govkit-0.5.0/docs/ui/architecture/react/COMPONENT_CONVENTIONS.md +236 -0
- govkit-0.5.0/docs/ui/architecture/react/STATE_MANAGEMENT.md +106 -0
- govkit-0.5.0/docs/ui/architecture/react/TECH_STACK.md +96 -0
- govkit-0.5.0/docs/ui/evaluation/FIRST_SCORING_RUBRIC.md +89 -0
- govkit-0.5.0/docs/ui/evaluation/VIRTUE_SCORING_RUBRIC.md +134 -0
- govkit-0.5.0/docs/ui/evaluation/eval_criteria.md +111 -0
- govkit-0.5.0/features/README.md +42 -0
- govkit-0.5.0/features/example-jwt-unification/acceptance.feature +73 -0
- govkit-0.5.0/features/example-jwt-unification/nfrs.md +102 -0
- govkit-0.5.0/features/schema_contract_example/acceptance.feature +91 -0
- govkit-0.5.0/features/schema_contract_example/architecture_preflight.md +125 -0
- govkit-0.5.0/features/schema_contract_example/eval_criteria.yaml +12 -0
- govkit-0.5.0/features/schema_contract_example/nfrs.md +47 -0
- govkit-0.5.0/features/schema_contract_example/plan.md +252 -0
- govkit-0.5.0/features/starter_backend/acceptance.feature +56 -0
- govkit-0.5.0/features/starter_backend/architecture_preflight.md +153 -0
- govkit-0.5.0/features/starter_backend/eval_criteria.yaml +42 -0
- govkit-0.5.0/features/starter_backend/nfrs.md +47 -0
- govkit-0.5.0/features/starter_backend/plan.md +172 -0
- govkit-0.5.0/features/starter_backend_l3/acceptance.feature +56 -0
- govkit-0.5.0/features/starter_backend_l3/nfrs.md +47 -0
- govkit-0.5.0/features/starter_backend_l3/plan.md +91 -0
- govkit-0.5.0/features/starter_backend_l5/acceptance.feature +81 -0
- govkit-0.5.0/features/starter_backend_l5/architecture_preflight.md +212 -0
- govkit-0.5.0/features/starter_backend_l5/eval_criteria.yaml +82 -0
- govkit-0.5.0/features/starter_backend_l5/nfrs.md +63 -0
- govkit-0.5.0/features/starter_backend_l5/plan.md +207 -0
- govkit-0.5.0/features/starter_cli/acceptance.feature +55 -0
- govkit-0.5.0/features/starter_cli/architecture_preflight.md +153 -0
- govkit-0.5.0/features/starter_cli/eval_criteria.yaml +25 -0
- govkit-0.5.0/features/starter_cli/nfrs.md +44 -0
- govkit-0.5.0/features/starter_cli/plan.md +172 -0
- govkit-0.5.0/features/starter_cli_l3/acceptance.feature +55 -0
- govkit-0.5.0/features/starter_cli_l3/nfrs.md +44 -0
- govkit-0.5.0/features/starter_cli_l3/plan.md +91 -0
- govkit-0.5.0/features/starter_cli_l5/acceptance.feature +81 -0
- govkit-0.5.0/features/starter_cli_l5/architecture_preflight.md +212 -0
- govkit-0.5.0/features/starter_cli_l5/eval_criteria.yaml +40 -0
- govkit-0.5.0/features/starter_cli_l5/nfrs.md +63 -0
- govkit-0.5.0/features/starter_cli_l5/plan.md +207 -0
- govkit-0.5.0/features/starter_ui/acceptance.feature +72 -0
- govkit-0.5.0/features/starter_ui/architecture_preflight.md +111 -0
- govkit-0.5.0/features/starter_ui/eval_criteria.yaml +25 -0
- govkit-0.5.0/features/starter_ui/nfrs.md +55 -0
- govkit-0.5.0/features/starter_ui/plan.md +166 -0
- govkit-0.5.0/features/starter_ui_l3/acceptance.feature +72 -0
- govkit-0.5.0/features/starter_ui_l3/nfrs.md +55 -0
- govkit-0.5.0/features/starter_ui_l3/plan.md +89 -0
- govkit-0.5.0/features/ui_task_dashboard/acceptance.feature +112 -0
- govkit-0.5.0/features/ui_task_dashboard/architecture_preflight.md +145 -0
- govkit-0.5.0/features/ui_task_dashboard/eval_criteria.yaml +17 -0
- govkit-0.5.0/features/ui_task_dashboard/nfrs.md +60 -0
- govkit-0.5.0/features/ui_task_dashboard/plan.md +258 -0
- govkit-0.5.0/governance/backend/importlinter-reference.toml +39 -0
- govkit-0.5.0/governance/backend/schemas/eval_criteria.schema.json +170 -0
- govkit-0.5.0/governance/backend/schemas/guardrails_config.schema.json +47 -0
- govkit-0.5.0/governance/backend/templates/architecture_preflight.md +146 -0
- govkit-0.5.0/governance/backend/templates/l3-plan.md +92 -0
- govkit-0.5.0/governance/backend/templates/l5-architecture-preflight.md +212 -0
- govkit-0.5.0/governance/backend/templates/l5-plan.md +207 -0
- govkit-0.5.0/governance/backend/templates/plan.md +171 -0
- govkit-0.5.0/governance/schemas/agent-manifest.schema.json +114 -0
- govkit-0.5.0/governance/schemas/evaluation_prediction.schema.json +95 -0
- govkit-0.5.0/governance/ui/schemas/eval_criteria.schema.json +42 -0
- govkit-0.5.0/governance/ui/templates/architecture_preflight.md +69 -0
- govkit-0.5.0/governance/ui/templates/l3-plan.md +90 -0
- govkit-0.5.0/governance/ui/templates/plan.md +90 -0
- govkit-0.5.0/pyproject.toml +113 -0
- govkit-0.5.0/tests/__init__.py +0 -0
- govkit-0.5.0/tests/test_govkit.py +655 -0
- 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,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,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,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
|
govkit-0.5.0/.gitignore
ADDED
|
@@ -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,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.
|