* feat(packs): ethics ×3, anchor-lens ×3, relations-v3, register ×2
Group 1 — Ethics domain packs (ADR-0044 sibling)
legal_ethics_v1: 6 commitments covering no-legal-advice, no-outcome-prediction,
jurisdiction-disclosure, privilege-disclosure, conflict-disclosure, refer-to-counsel
engineering_ethics_v1: 6 commitments covering safety-primacy, standard-disclosure,
no-sign-off, uncertainty-surface, public-welfare-priority, refer-to-pe
research_ethics_v1: 6 commitments covering no-fabrication, no-plagiarism,
irb-disclosure, conflict-of-interest-disclosure, data-integrity, reproducibility-hedge
ratify_ethics_pack.py: PACK_IDS extended with all three new ids
Group 2 — Anchor lens packs (grc cognition atoms, ADR-0073c)
grc_sophia_v1: atom logos.sophia.wisdom via grc-core-cog-008 (cross_lang.logos.sophia
edge weight 0.88); cognitive mode wisdom-practical
grc_epignosis_v1: atom logos.epignosis.experiential via grc-core-cog-007 (weight 0.78,
en_collapse edge documented); cognitive mode experiential-knowledge
grc_episteme_v1: atom logos.episteme.systematic via grc-core-cog-021 (weight 0.72,
en_collapse edge documented); cognitive mode systematic-knowledge
ratify_anchor_lens_packs.py: LENS_IDS extended with all three new ids
Group 3 — en_core_relations_v3 (social + part-whole extension of v2 kinship)
7 new lemmas: colleague, mentor, neighbor, component, member, instance, peer
manifest.json: new pack with checksum placeholder (operator must recompute after
ratify run — same pattern as other packs)
Group 4 — Register packs formal_v1 + socratic_v1
formal_v1: standard depth, drop_provenance_tag=true + drop_articles=true;
no markers; ratifies under known_key_overrides_invariant_grounding
socratic_v1: pedagogical depth, append_semantic_domain_clause=true; markers scaffold
question-and-response rhythm (openings×4, transitions×3, closings×4)
ratify_register_packs.py: REGISTER_IDS extended with formal_v1, socratic_v1
* fix(anchor_lens): loader v1/v2 dual-schema compat — resolves blocker 1 of #48
Refactor AnchorLens to use v2 schema fields and normalize legacy fields. Update validation and loading functions for improved clarity and functionality.
* fix(ratify): restore default_unanchored_v1 + full LENS_IDS (17) — resolves blocker 2 of #48
Added new lens IDs for the he substrate and updated the order of lens IDs.
* chore(packs): migrate 8 legacy anchor-lens packs to v2 schema [1/8 default_unanchored_v1]
Updated the default unanchored lens JSON structure with new fields and modified descriptions.
* chore(packs): migrate grc_logos_v1 to v2 schema [2/8]
Updated the description and added new fields for cognitive mode, atom, and source entry ID.
* chore(packs): migrate grc_aletheia_v1 to v2 schema [3/8]
Updated the description and added new fields related to cognitive mode and atom.
* chore(packs): migrate grc_zoe_v1 to v2 schema [4/8]
Updated the description and added new fields for cognitive mode, atom, and source entry ID.
* chore(packs): migrate grc_arche_v1 to v2 schema [5/8]
Updated the description and added new fields for cognitive mode, atom, and source entry ID.
* chore(packs): migrate he_logos_v1 to v2 schema [6/8]
Updated the Hebrew-substrate anchor lens JSON structure with new fields and modified descriptions.
* chore(packs): migrate he_dabar_v1 to v2 schema [7/8]
Updated the description and added new fields for cognitive mode and source entry.
* chore(packs): migrate he_chayyim_v1 to v2 schema [8/8] — resolves blocker 3 of #48
Updated the description and added new fields for cognitive mode and source entry ID.
* fix(anchor-lens): complete v1→v2 migration + back-compat shims
Resolves blockers B4/B5/B6/B7 left by the initial round-2 schema rewrite:
B4: restore UNANCHORED module constant, is_null_lens() alias,
and verify_anchor_lens_seal() (all were dropped from loader.py;
chat/pack_grounding.py and several tests still imported them).
AnchorLens.unanchored() returns the in-memory sentinel with
lens_id='__unanchored__' as before (distinct from disk pack).
B5: add v1 attribute properties on AnchorLens (primary_substrate,
semantic_domain_preferences, cognitive_mode_label) so consumers
not yet on v2 (chat/pack_grounding.py engagement reads, several
tests) continue to work via read-only views over the canonical
v2 fields. Zero changes needed to chat/pack_grounding.py.
B6: re-derive source_entry_id by atom-in-lexicon lookup for 6 of 8
legacy packs that were positionally mis-mapped during migration.
B7: fix two new-pack atoms that didn't exist in the lexicon
(logos.episteme.systematic -> logos.episteme.systematic_knowledge,
logos.epignosis.experiential -> logos.epignosis.knowledge).
Loader hardening (recovered from v1 rewrite):
- _validate_lens_id_for_fs: reject path-traversal / slash / empty
- companion-SHA mismatch check in load_anchor_lens when require_ratified
- atom must be non-empty when substrate != 'none'
- available_anchor_lens_packs returns summary dicts (was list[str])
Ratify script special-cases substrate='none' so the null sentinel
default_unanchored_v1 keeps its self-seal (ADR-0073b invariant).
Test suite migrated to v2 schema: dropped obsolete list-shape gates
(duplicates, too-many-preferences — v2 has scalar atom), updated error
match strings, added a v1->v2 normalisation back-compat test.
All 11 round-2 packs ratified. 102/102 anchor-lens tests pass.
Cognition eval byte-identical (100/100/91.7/100).
anchor-lens-tour + register-tour both green.
309 lines
11 KiB
Python
309 lines
11 KiB
Python
"""Ratify register packs (ADR-0068, Plan Phase R1).
|
|
|
|
For each pack in ``packs/register/<register_id>.json``:
|
|
|
|
1. Verify schema fields are present and well-shaped (delegated to the
|
|
loader, run with ``require_ratified=False``).
|
|
2. Compute the canonical ``pack_source_sha`` (SHA-256 of the pack with
|
|
``mastery_report_sha256`` blanked) — self-referential provenance.
|
|
3. Apply the R1 gate: only **null registers** (empty
|
|
``realizer_overrides`` + empty ``discourse_markers``) are ratifiable
|
|
through this script. R3 will widen this gate to cover non-null
|
|
registers with their own ratification method.
|
|
4. Build a self-sealed ``MasteryReport``-shaped dict capturing the
|
|
evidence claim (``byte_identity_null_lift``).
|
|
5. Write ``<register_id>.mastery_report.json``.
|
|
6. Update the pack's ``mastery_report_sha256`` field to match.
|
|
|
|
Idempotent: re-running on an already-ratified pack produces
|
|
byte-identical files. Run whenever a register pack changes.
|
|
|
|
Trust boundary
|
|
--------------
|
|
This script writes to ``packs/register/`` on disk. It is operator-only
|
|
(no runtime entrypoint). Pack-id sanitisation, schema validation, and
|
|
seal verification all flow through ``packs/register/loader.py`` — see
|
|
``ADR-0051`` doctrine.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import hashlib
|
|
import json
|
|
import sys
|
|
from pathlib import Path
|
|
from typing import Any, Callable
|
|
|
|
from formation.hashing import self_seal
|
|
from packs.register.loader import (
|
|
RegisterPackError,
|
|
load_register_pack,
|
|
)
|
|
|
|
PACKS_DIR = Path(__file__).resolve().parents[1] / "packs" / "register"
|
|
ISSUED_AT = "2026-05-20T00:00:00Z"
|
|
REGISTER_IDS: tuple[str, ...] = (
|
|
"default_neutral_v1",
|
|
"terse_v1",
|
|
"convivial_v1",
|
|
"pedagogical_v1",
|
|
"precise_v1",
|
|
"formal_v1",
|
|
"socratic_v1",
|
|
)
|
|
|
|
#: Valid IntentTag names for ``per_intent`` keys (ADR-0071, R4). This
|
|
#: is the trust-boundary whitelist — operators cannot ship unknown
|
|
#: intent names. Sourced from ``generate.intent.IntentTag``.
|
|
def _valid_intent_names() -> frozenset[str]:
|
|
from generate.intent import IntentTag
|
|
return frozenset(t.name for t in IntentTag)
|
|
|
|
# Known realizer_overrides keys (ADR-0070, Phase R3 + R6). The allow-list
|
|
# is the trust boundary against arbitrary operator-authored data driving
|
|
# realizer dispatch. Each entry maps a key name to a validator that
|
|
# returns True iff the value is in-bounds.
|
|
#
|
|
# R6 boolean knobs (drop_provenance_tag, compress_gloss, drop_articles,
|
|
# append_semantic_domain_clause): validated as strict bool only. The
|
|
# realizer dispatch code that *reads* these keys lands with R6; the gate
|
|
# must accept them before that merge so packs can ratify cleanly.
|
|
_KNOWN_OVERRIDE_KEYS: dict[str, Callable[[Any], bool]] = {
|
|
"disclosure_domain_count": lambda v: isinstance(v, int)
|
|
and not isinstance(v, bool)
|
|
and v in (1, 2, 3),
|
|
# R6 boolean knobs — strict bool, no int coercion
|
|
"drop_provenance_tag": lambda v: isinstance(v, bool),
|
|
"compress_gloss": lambda v: isinstance(v, bool),
|
|
"drop_articles": lambda v: isinstance(v, bool),
|
|
"append_semantic_domain_clause": lambda v: isinstance(v, bool),
|
|
}
|
|
|
|
|
|
def _canonical_pack_bytes_for_hashing(pack: dict) -> bytes:
|
|
"""Serialize the pack with ``mastery_report_sha256`` blanked."""
|
|
cleaned = dict(pack)
|
|
cleaned["mastery_report_sha256"] = ""
|
|
return json.dumps(
|
|
cleaned, sort_keys=True, separators=(",", ":")
|
|
).encode("utf-8")
|
|
|
|
|
|
def _pack_source_sha(pack: dict) -> str:
|
|
return hashlib.sha256(_canonical_pack_bytes_for_hashing(pack)).hexdigest()
|
|
|
|
|
|
def _is_null_register(pack: dict) -> bool:
|
|
overrides = pack.get("realizer_overrides", {})
|
|
markers = pack.get("discourse_markers", {})
|
|
if not isinstance(overrides, dict) or overrides:
|
|
return False
|
|
if not isinstance(markers, dict):
|
|
return False
|
|
for bucket in ("openings", "transitions", "closings"):
|
|
if markers.get(bucket):
|
|
return False
|
|
return True
|
|
|
|
|
|
def _validate_overrides_known_keys(pack: dict, register_id: str) -> None:
|
|
"""R4 gate — allow-list known realizer_overrides keys + per_intent
|
|
nested block. Unknown keys are refused.
|
|
"""
|
|
overrides = pack.get("realizer_overrides", {})
|
|
if not isinstance(overrides, dict):
|
|
raise SystemExit(
|
|
f"R4 gate refuses {register_id!r}: realizer_overrides is not a dict"
|
|
)
|
|
valid_intents = _valid_intent_names()
|
|
for k, v in overrides.items():
|
|
if k == "per_intent":
|
|
_validate_per_intent_block(v, register_id, valid_intents)
|
|
continue
|
|
validator = _KNOWN_OVERRIDE_KEYS.get(k)
|
|
if validator is None:
|
|
raise SystemExit(
|
|
f"R4 gate refuses {register_id!r}: unknown realizer_overrides "
|
|
f"key {k!r}. Known keys: "
|
|
f"{sorted(list(_KNOWN_OVERRIDE_KEYS) + ['per_intent'])}"
|
|
)
|
|
if not validator(v):
|
|
raise SystemExit(
|
|
f"R4 gate refuses {register_id!r}: realizer_overrides[{k!r}]"
|
|
f"={v!r} out of bounds"
|
|
)
|
|
|
|
|
|
def _validate_per_intent_block(
|
|
block: object, register_id: str, valid_intents: frozenset[str],
|
|
) -> None:
|
|
"""R4 gate — per_intent intents must be valid IntentTag names; each
|
|
sub-dict's keys must be in the same allow-list as flat keys.
|
|
"""
|
|
if not isinstance(block, dict):
|
|
raise SystemExit(
|
|
f"R4 gate refuses {register_id!r}: realizer_overrides.per_intent "
|
|
"must be a dict"
|
|
)
|
|
for intent_name, sub in block.items():
|
|
if intent_name not in valid_intents:
|
|
raise SystemExit(
|
|
f"R4 gate refuses {register_id!r}: realizer_overrides"
|
|
f".per_intent[{intent_name!r}] is not a valid IntentTag. "
|
|
f"Valid intents: {sorted(valid_intents)}"
|
|
)
|
|
if not isinstance(sub, dict):
|
|
raise SystemExit(
|
|
f"R4 gate refuses {register_id!r}: realizer_overrides"
|
|
f".per_intent[{intent_name!r}] must be a dict"
|
|
)
|
|
for sub_k, sub_v in sub.items():
|
|
validator = _KNOWN_OVERRIDE_KEYS.get(sub_k)
|
|
if validator is None:
|
|
raise SystemExit(
|
|
f"R4 gate refuses {register_id!r}: realizer_overrides"
|
|
f".per_intent[{intent_name!r}] unknown key {sub_k!r}. "
|
|
f"Known keys: {sorted(_KNOWN_OVERRIDE_KEYS)}"
|
|
)
|
|
if not validator(sub_v):
|
|
raise SystemExit(
|
|
f"R4 gate refuses {register_id!r}: realizer_overrides"
|
|
f".per_intent[{intent_name!r}][{sub_k!r}]={sub_v!r} "
|
|
"out of bounds"
|
|
)
|
|
|
|
|
|
def _markers_have_content(pack: dict) -> bool:
|
|
"""True iff openings or closings has at least one entry (R4 needs
|
|
one of these populated for a marker-using ratification).
|
|
|
|
Empty-string entries count as content — the seed may legitimately
|
|
pick "no marker this turn" from a bucket like ``["", "So,"]``.
|
|
"""
|
|
markers = pack.get("discourse_markers", {})
|
|
if not isinstance(markers, dict):
|
|
return False
|
|
for bucket in ("openings", "closings"):
|
|
items = markers.get(bucket, [])
|
|
if isinstance(items, list) and len(items) >= 1:
|
|
return True
|
|
return False
|
|
|
|
|
|
def _ratify_one(pack_path: Path, register_id: str) -> tuple[dict, dict[str, Any]]:
|
|
"""Returns (updated_pack_dict, mastery_report_dict). Does not write."""
|
|
pack = json.loads(pack_path.read_text(encoding="utf-8"))
|
|
|
|
load_register_pack(
|
|
register_id,
|
|
search_paths=(pack_path.parent,),
|
|
require_ratified=False,
|
|
)
|
|
|
|
pack_source_sha = _pack_source_sha(pack)
|
|
|
|
# R4 gate: realizer_overrides must contain only known keys
|
|
# (including the per_intent nested block); discourse markers may
|
|
# be populated, but a register claiming non-null marker status
|
|
# must have at least one of openings/closings populated. Null
|
|
# registers pass trivially.
|
|
_validate_overrides_known_keys(pack, register_id)
|
|
|
|
null_register = _is_null_register(pack)
|
|
overrides = pack.get("realizer_overrides", {}) or {}
|
|
markers = pack.get("discourse_markers", {}) or {}
|
|
markers_used = _markers_have_content(pack)
|
|
transitions_reserved = bool(
|
|
isinstance(markers, dict) and markers.get("transitions")
|
|
)
|
|
|
|
if markers_used:
|
|
ratification_method = "seeded_variation_replay_equivalence"
|
|
elif null_register:
|
|
ratification_method = "byte_identity_null_lift"
|
|
else:
|
|
ratification_method = "known_key_overrides_invariant_grounding"
|
|
|
|
bucket_sizes = {
|
|
b: (
|
|
len(markers.get(b, []))
|
|
if isinstance(markers, dict)
|
|
and isinstance(markers.get(b, []), list)
|
|
else 0
|
|
)
|
|
for b in ("openings", "transitions", "closings")
|
|
}
|
|
|
|
report: dict[str, Any] = {
|
|
"register_id": register_id,
|
|
"schema_version": "1.0.0",
|
|
"issued_at": ISSUED_AT,
|
|
"pack_source_sha256": pack_source_sha,
|
|
"ratification_method": ratification_method,
|
|
"ratified": True,
|
|
"evidence": {
|
|
"realizer_overrides_empty": not bool(overrides),
|
|
"realizer_overrides_keys": sorted(overrides.keys()),
|
|
"discourse_markers_empty": not markers_used
|
|
and not transitions_reserved,
|
|
"marker_bucket_sizes": bucket_sizes,
|
|
"transitions_reserved": transitions_reserved,
|
|
"depth_preference": str(pack.get("depth_preference", "")),
|
|
},
|
|
"failure_reasons": [],
|
|
"report_sha256": "",
|
|
}
|
|
sealed = self_seal(report, sha_field="report_sha256")
|
|
|
|
pack["mastery_report_sha256"] = sealed["report_sha256"]
|
|
return pack, sealed
|
|
|
|
|
|
def main() -> int:
|
|
updated = 0
|
|
skipped = 0
|
|
for register_id in REGISTER_IDS:
|
|
pack_path = PACKS_DIR / f"{register_id}.json"
|
|
if not pack_path.is_file():
|
|
print(f"skip: {pack_path} not found", file=sys.stderr)
|
|
continue
|
|
try:
|
|
pack_after, report_dict = _ratify_one(pack_path, register_id)
|
|
except RegisterPackError as exc:
|
|
print(f"refused: {register_id} — {exc}", file=sys.stderr)
|
|
return 1
|
|
|
|
report_path = PACKS_DIR / f"{register_id}.mastery_report.json"
|
|
report_text = json.dumps(report_dict, indent=2, sort_keys=True) + "\n"
|
|
prior_report = (
|
|
report_path.read_text(encoding="utf-8")
|
|
if report_path.is_file()
|
|
else ""
|
|
)
|
|
prior_pack = json.loads(pack_path.read_text(encoding="utf-8"))
|
|
if (
|
|
prior_pack.get("mastery_report_sha256")
|
|
== pack_after["mastery_report_sha256"]
|
|
and prior_report == report_text
|
|
):
|
|
print(
|
|
f"idempotent: {register_id} already ratified at "
|
|
f"{pack_after['mastery_report_sha256'][:12]}\u2026"
|
|
)
|
|
skipped += 1
|
|
continue
|
|
pack_path.write_text(
|
|
json.dumps(pack_after, indent=2) + "\n", encoding="utf-8",
|
|
)
|
|
report_path.write_text(report_text, encoding="utf-8")
|
|
print(
|
|
f"ratified: {register_id} \u2192 "
|
|
f"{pack_after['mastery_report_sha256'][:12]}\u2026"
|
|
)
|
|
updated += 1
|
|
print(f"\nratified {updated} pack(s); {skipped} already current")
|
|
return 0
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|