Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/dogfood-gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@ jobs:

- name: Validate A2ML manifests
if: steps.detect.outputs.count > 0
uses: hyperpolymath/a2ml-validate-action@6bff6ec134fc977e86d25166a5c522ddea5c1e78 # main
# Pin was 6bff6ec (#26, s-expression identity). That predates #41,
# which taught the validator the colon/brace-block identity form
# (`id: "..."`), so docs/governance/TSDM.a2ml failed against the old
# pin despite being valid. Bumped to current main.
uses: hyperpolymath/a2ml-validate-action@5468b7ff0f5129a74d25af5f2468df11a706dc70 # main
with:
path: '.'
strict: 'false'
Expand Down
13 changes: 13 additions & 0 deletions .machine_readable/self-validating/methodology-guard.k9.ncl
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
K9!
# SPDX-License-Identifier: MPL-2.0
# Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <j.d.a.jewell@open.ac.uk>
#
Expand All @@ -12,6 +13,18 @@ let methodology_guard = {
version = "1.0.0",
description = "Validates that agent work respects declared methodology constraints",

# Component pedigree (K9 self-description).
pedigree = {
name = "methodology-guard",
version = "1.0.0",
schema_version = "1.0.0",
component_type = "config-validator",
author = "Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>",
description = "Validates that agent work respects declared methodology constraints",
leash = "kennel",
k9_spec_version = "1.0.0",
},

checks = {
divergent_invariant_language = {
description = "No files in languages violating the divergent language invariant",
Expand Down
3 changes: 2 additions & 1 deletion container/deploy.k9.ncl
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
K9!
# SPDX-License-Identifier: MPL-2.0
# deploy.k9.ncl — KRL deployment component (Hunt level)
#
Expand Down Expand Up @@ -143,7 +144,7 @@ echo "K9: Rollback complete."

# Export the component
{
pedigree = component_pedigree,
pedigree = component_pedigree & { name = "krl-deploy" },
deployment = deployment,
scripts = scripts,

Expand Down
1 change: 1 addition & 0 deletions docs/governance/MAINTENANCE-CHECKLIST.a2ml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# Cross-repo maintenance baseline (machine-readable canonical)

[metadata]
name = "maintenance-checklist"
version = "1.1.0"
last-updated = "2026-02-24"
scope = "cross-repo"
Expand Down
Loading